12 lines
203 B
C
12 lines
203 B
C
|
#ifndef __TH_INFO_H__
|
||
|
#define __TH_INFO_H__
|
||
|
|
||
|
#include "cmsis_os2.h"
|
||
|
|
||
|
osThreadId_t InfoOutputTaskHandle;
|
||
|
|
||
|
const osThreadAttr_t InfoOutputTask_attributes;
|
||
|
|
||
|
void StartInfoOutputTask(void *argument);
|
||
|
#endif
|