25 lines
492 B
C
25 lines
492 B
C
/*
|
|
* @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 InfoOutputTask(void *argument){
|
|
log_d("Start Info Output Task");
|
|
for(;;){
|
|
osThreadExit();
|
|
}
|
|
}
|