ProjectConfig.h 249 B

123456789101112131415
  1. #ifndef APPCONFIG_H
  2. #define APPCONFIG_H
  3. #include "sys.h"
  4. #include "CommandsDefine.h"
  5. #ifndef RUNNING_WHERE_AT_BOOT
  6. #define RUNNING_AT_WHERE RUNNING_AT_APP
  7. #else
  8. #define RUNNING_AT_WHERE RUNNING_AT_BOOT
  9. #endif
  10. extern void MainInit(void);
  11. #endif