23 lines
390 B
C
23 lines
390 B
C
#ifndef __APPLICATION_H
|
|
#define __APPLICATION_H
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
// DEMO是项目编号,1.0.0是软件大版本,009是软件小版本
|
|
#define __VERSION__ "DEMO_1.0.0"
|
|
#define __DEVELOPER__ "WuChuYuan"
|
|
#define __EMAIL__ "1917507415@qq.com"
|
|
|
|
typedef enum
|
|
{
|
|
BOARD_POWER_OFF, // 关机状态
|
|
} board_state_t;
|
|
|
|
|
|
void app_Init(void);
|
|
void app_lication(void);
|
|
|
|
#endif
|