Motion_EC_Stm32_archived/App/Src/th_info.c

25 lines
497 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
};
void StartInfoOutputTask(void *argument){
log_d("Start Info Output Task");
for(;;){
osThreadExit();
}
}