main.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef _MAIN_H_
  2. #define _MAIN_H_
  3. //------------------------------------------------------------------------------
  4. #include <stdint.h>
  5. //------------------------------------------------------------------------------
  6. #define MODELNAME_FAIL 0
  7. #define BUFFER_SIZE 128
  8. #define BTN_RELEASE 0
  9. #define BTN_PRESS 1
  10. #define MAX_BUF 64
  11. #define MtdBlockSize 0x600000
  12. #define SYSFS_GPIO_DIR "/sys/class/gpio"
  13. #define UPGRADE_FAN 0x02
  14. #if defined DD360 ||defined DD360Audi || defined DD360ComBox
  15. #define UPGRADE_RB 0x09 //0x09 for DD360 dispenser
  16. #else
  17. #define UPGRADE_RB 0x03 //other module use
  18. #endif //defined DD360 || defined DD360Audi
  19. #define UPGRADE_PRI 0x04
  20. #define UPGRADE_AC 0x05
  21. #define UPGRADE_LED 0x06
  22. #define SYSTEM_MIN_VOL 80 //150
  23. #define MIN_OUTPUT_CUR 0
  24. #define AC_OUTPUT_VOL 220
  25. #define DEFAULT_AC_INDEX 2
  26. #define PSU_MIN_CUR 100
  27. #define DB_FILE "/Storage/ChargeLog/localCgargingRecord.db"
  28. #define uSEC_VAL 1000000
  29. #define SELFTEST_TIMEOUT 60//45
  30. #define AUTHORIZE_TIMEOUT 15//30
  31. #define AUTHORIZE_COMP_TIMEOUT 3
  32. #define AUTHORIZE_FAIL_TIMEOUT 3
  33. #define AUTHORIZE_STOP_TIMEOUT 30
  34. #define RETURN_TO_CHARGING_PAGE 30
  35. #define GUN_PREPARE_TIMEOUT 30
  36. #define GUN_EV_WAIT_TIMEOUT 120
  37. #define GUN_EVSE_WAIT_TIMEOUT 60
  38. #define GUN_COMP_WAIT_TIMEOUT 10
  39. #define GUN_PRECHARGING_TIMEOUT 60
  40. #define log_info(format, args...) StoreLogMsg_1("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  41. #define log_warn(format, args...) StoreLogMsg_1("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  42. #define log_error(format, args...) StoreLogMsg_1("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  43. //------------------------------------------------------------------------------
  44. typedef struct StLedConfig {
  45. //OutputDrvValue[0]
  46. uint8_t LeftButtonLed: 1; //bit 0, H: ON, L:OFF
  47. uint8_t RightButtonLed: 1; //bit 1, H: ON, L:OFF
  48. uint8_t GreenLED: 1; //bit 2, H: ON, L:OFF
  49. uint8_t YellowLED: 1; //bit 3, H: ON, L:OFF
  50. uint8_t RedLED: 1; //bit 4, H: ON, L:OFF
  51. uint8_t SystemLed4: 1; //bit 5, H: ON, L:OFF
  52. uint8_t AcContactor: 1; //bit 6, H: ON, L:OFF
  53. uint8_t Reserved: 1; //bit 7 reserved
  54. } LedConfig;
  55. #endif /* _MAIN_H_ */