Motion_EC_Stm32_archived/App/Src/th_info.c

25 lines
492 B
C
Raw Normal View History

2021-03-14 23:24:59 +08:00
/*
* @Description:
* @Date: 2021-03-09 18:19:26
* @LastEditors: CK.Zh
* @LastEditTime: 2021-03-10 15:07:01
* @FilePath: \NaviKit_EC_stm32\App\Src\th_demo.c
*/
#define LOG_TAG "TH-Info"
#include <th_info.h>
#include "main.h"
const osThreadAttr_t InfoOutputTask_attributes = {
.name = "InfoOutputTask",
.priority = (osPriority_t) osPriorityLow2,
.stack_size = 256 * 4
};
2021-03-15 19:26:10 +08:00
void InfoOutputTask(void *argument){
2021-03-14 23:24:59 +08:00
log_d("Start Info Output Task");
for(;;){
osThreadExit();
}
}