RT1050_FreeRTOS_Hello/source/user_tasks.h

10 lines
166 B
C
Raw Normal View History

2021-03-07 18:01:49 +00:00
#ifndef __USER_TASKS_H
#define __USER_TASKS_H
#include "FreeRTOS.h"
#include "task.h"
TaskHandle_t g_hello_task_handle;
void hello_task(void *pvParameters);
#endif