15 lines
150 B
C
15 lines
150 B
C
|
|
|
||
|
|
#ifndef __APPTASKS_H__
|
||
|
|
#define __APPTASKS_H__
|
||
|
|
|
||
|
|
#include "config.h"
|
||
|
|
|
||
|
|
#if (CUR_CORE_BOARD == CORE_BOARD_APP)
|
||
|
|
|
||
|
|
void AppMainTask(void);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|