d05345afb7
2、CatOneTask兼容新版4G模块 3、完善传感器类型SensorType_m结构
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 9//0为测试服务器
|
|
|
|
extern bool MainDispEn;
|
|
#define MAIN_DBG_LOG(...) { if(MainDispEn) Debug_Printf(__VA_ARGS__);}
|
|
|
|
void MainDBGOnOff(bool OnOff);
|
|
#endif
|