11 lines
216 B
C
11 lines
216 B
C
|
#ifndef __TH_ELOG_H__
|
||
|
#define __TH_ELOG_H__
|
||
|
|
||
|
#include "cmsis_os2.h"
|
||
|
osThreadId_t ElogInitTaskHandle;
|
||
|
const osThreadAttr_t ElogInitTask_attributes;
|
||
|
|
||
|
void StartElogInitTask(void *argument);
|
||
|
void my_elog_init();
|
||
|
#endif
|