16 lines
265 B
C
16 lines
265 B
C
|
#pragma once
|
||
|
#include <FreeRTOS.h>
|
||
|
#include <task.h>
|
||
|
|
||
|
namespace Pinetime {
|
||
|
namespace Applications {
|
||
|
class BlinkApp {
|
||
|
public:
|
||
|
void Start();
|
||
|
private:
|
||
|
TaskHandle_t taskHandle;
|
||
|
static void Process(void* instance);
|
||
|
};
|
||
|
}
|
||
|
}
|