STM32H750XB_Hello/Core/Inc/user_tasks.h

12 lines
244 B
C

#ifndef __USER_TASKS_H
#define __USER_TASKS_H
#include "cmsis_os2.h"
void user_tasks_init(void);
extern osThreadId_t g_user_hello_task_handle;
extern osThreadAttr_t g_user_hello_task_attributes;
void user_hello_task(void * argument);
#endif