9 lines
186 B
C
9 lines
186 B
C
#ifndef SAMPLE_TASKS_H
|
|
#define SAMPLE_TASKS_H
|
|
|
|
extern TaskHandle_t Sample_Task_Handle;
|
|
|
|
void Sample_Task_Init(void);
|
|
void Sample_Task(void * pvParameters);
|
|
|
|
#endif // SAMPLE_TASKS_H
|