17 lines
357 B
C
17 lines
357 B
C
#ifndef __MAIN__H
|
|
#define __MAIN__H
|
|
#include "bsp.h"
|
|
#include "Public.h"
|
|
#include "DebugCmd.h"
|
|
|
|
#define SOFTWARE_VERSION 12
|
|
#define HARDWARE_VERSION 12
|
|
|
|
#define MAC_ADDR_TYPE 1//0为测试服务器
|
|
|
|
extern bool MainDispEn;
|
|
#define MAIN_DBG_LOG(...) { if(MainDispEn) Debug_Printf(__VA_ARGS__);}
|
|
|
|
void MainDBGOnOff(bool OnOff);
|
|
#endif
|