main.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
  1. /*
  2. * Config.h
  3. *
  4. * Created on: 2020年01月15日
  5. * Author: Eason Yang
  6. */
  7. #ifndef CONFIG_MAIN_H_
  8. #define CONFIG_MAIN_H_
  9. #include <sys/types.h>
  10. #include <sys/stat.h>
  11. #include <sys/time.h>
  12. #include <sys/timeb.h>
  13. #include <sys/types.h>
  14. #include <sys/ioctl.h>
  15. #include <sys/socket.h>
  16. #include <sys/ipc.h>
  17. #include <sys/shm.h>
  18. #include <sys/mman.h>
  19. #include <linux/wireless.h>
  20. #include <arpa/inet.h>
  21. #include <netinet/in.h>
  22. #include <dirent.h>
  23. #include <unistd.h>
  24. #include <stdarg.h>
  25. #include <stdio.h> /*標準輸入輸出定義*/
  26. #include <stdlib.h> /*標準函數庫定義*/
  27. #include <unistd.h> /*Unix 標準函數定義*/
  28. #include <fcntl.h> /*檔控制定義*/
  29. #include <termios.h> /*PPSIX 終端控制定義*/
  30. #include <errno.h> /*錯誤號定義*/
  31. #include <errno.h>
  32. #include <string.h>
  33. #include <time.h>
  34. #include <ctype.h>
  35. #include <ifaddrs.h>
  36. #include <stdbool.h>
  37. #include <stddef.h>
  38. #include <stdint.h>
  39. #include <sqlite3.h>
  40. //===================================
  41. // Define CP State constant
  42. //===================================
  43. #define CP_STATE_UNKNOWN 0
  44. #define CP_STATE_A 1
  45. #define CP_STATE_B 2
  46. #define CP_STATE_C 3
  47. #define CP_STATE_D 4
  48. #define CP_STATE_E 5
  49. #define CP_STATE_F 6
  50. //===================================
  51. // Define CCS CP State constant
  52. //===================================
  53. #define CCS_CP_STATE_UNKNOWN 0
  54. #define CCS_CP_STATE_A 1 //A (12V, no PWM)
  55. #define CCS_CP_STATE_B1 2 //B1 (9V, no PWM)
  56. #define CCS_CP_STATE_B2 3 //B2 (9V, with PWM)
  57. #define CCS_CP_STATE_C 4 //C (6V, with PWM)
  58. #define CCS_CP_STATE_D 5 //D (3V, with PWM)
  59. #define CCS_CP_STATE_E 6 //E (0V, no PWM)
  60. #define CCS_CP_STATE_F 7 //F (-12V, no PWM)
  61. #define CCS_CP_STATE_G 8 //G (>12V)
  62. #define CCS_CP_STATE_H 9 //H (<12V)
  63. //===================================
  64. // Define start mode constant
  65. //===================================
  66. #define START_METHOD_FREE 0
  67. #define START_METHOD_RFID 1
  68. #define START_METHOD_BACKEND 2
  69. #define START_METHOD_BLE 3
  70. //===================================
  71. // Define Speaker type constant
  72. //===================================
  73. #define SPEAKER_STOP 0
  74. #define SPEAKER_ALWAYS_ON 1
  75. #define SPEAKER_SHORT 2
  76. #define SPEAKER_LONG 3
  77. #define SPEAKER_INTERVAL_SHORT 4
  78. #define SPEAKER_INTERVAL_LONG 5
  79. #define SPEAKER_INTERVAL_3COUNT 6
  80. //===================================
  81. // Define Alarm code constant
  82. //===================================
  83. #define ALARM_L1_OVER_VOLTAGE 0x00000001
  84. #define ALARM_L1_UNDER_VOLTAGE 0x00000002
  85. #define ALARM_L1_OVER_CURRENT 0x00000004
  86. #define ALARM_OVER_TEMPERATURE 0x00000008
  87. #define ALARM_GROUND_FAIL 0x00000010
  88. #define ALARM_CP_ERROR 0x00000020
  89. #define ALARM_CURRENT_LEAK_AC 0x00000040
  90. #define ALARM_CURRENT_LEAK_DC 0x00000080
  91. #define ALARM_MCU_TESTFAIL 0x00000100
  92. #define ALARM_HANDSHAKE_TIMEOUT 0x00000200
  93. #define ALARM_EMERGENCY_STOP 0x00000400
  94. #define ALARM_RELAY_WELDING 0x00000800
  95. #define ALARM_LEAK_MODULE_FAIL 0x00001000
  96. #define ALARM_SHUTTER_FAULT 0x00002000
  97. #define ALARM_LOCKER_FAULT 0x00004000
  98. #define ALARM_POWER_DROP 0x00008000
  99. #define ALARM_L1_CIRCUIT_SHORT 0x00010000
  100. #define ALARM_ROTATORY_SWITCH_FAULT 0x00020000
  101. #define ALARM_RELAY_DRIVE_FAULT 0x00040000
  102. #define ALARM_BLE_MODULE_BROKEN 0x00080000
  103. #define ALARM_L2_OVER_VOLTAGE 0x00100000
  104. #define ALARM_L3_OVER_VOLTAGE 0x00200000
  105. #define ALARM_L2_UNDER_VOLTAGE 0x00400000
  106. #define ALARM_L3_UNDER_VOLTAGE 0x00800000
  107. #define ALARM_L2_OVER_CURRENT 0x01000000
  108. #define ALARM_L3_OVER_CURRENT 0x02000000
  109. #define ALARM_L2_CIRCUIT_SHORT 0x04000000
  110. #define ALARM_L3_CIRCUIT_SHORT 0x08000000
  111. //===================================
  112. // Define Led constant
  113. //===================================
  114. #define LED_ACTION_INIT 0
  115. #define LED_ACTION_IDLE 1
  116. #define LED_ACTION_AUTHED 2
  117. #define LED_ACTION_CONNECTED 3
  118. #define LED_ACTION_CHARGING 4
  119. #define LED_ACTION_STOP 5
  120. #define LED_ACTION_ALARM 6
  121. #define LED_ACTION_MAINTAIN 7
  122. #define LED_ACTION_RFID_PASS 8
  123. #define LED_ACTION_RFID_FAIL 9
  124. #define LED_ACTION_BLE_CONNECT 10
  125. #define LED_ACTION_BLE_DISABLE 11
  126. #define LED_ACTION_DEBUG 12
  127. #define LED_ACTION_ALL_OFF 13
  128. #define LED_RELAY_ON 14
  129. #define LED_RELAY_OFF 15
  130. #define LED_ACTION_HANDSHAKE_FAIL 16
  131. #define LED_ACTION_INTERNET_DISCONNECT 17
  132. //=================================
  133. //CCS related define
  134. //=================================
  135. //#define CCS_SIMULATION_DATA
  136. #define CCS_PWM_DUTY_CP_STATE_F 0
  137. #define CCS_PWM_DUTY_CP_STATE_E 1
  138. #define CCS_PWM_DUTY_5 5
  139. #define CCS_PWM_DUTY_100 100
  140. enum HANDSHAKE_STATE
  141. {
  142. HANDSHAKE_IDLE=0,
  143. HANDSHAKE_DUTY_5,
  144. HANDSHAKE_DUTY_5_CHECK,
  145. HANDSHAKE_CCS,
  146. HANDSHAKE_CP_STATE_E,
  147. HANDSHAKE_SET_MAX_CURRENT,
  148. HANDSHAKE_BS_MODE,
  149. HANDSHAKE_HLC_MODE
  150. };
  151. enum EV_READY_STATE
  152. {
  153. EV_READY_STAT_E=1,
  154. EV_READY_STAT_C,
  155. EV_READY_SET_MAX_CURRENT
  156. };
  157. enum CHARGING_MODE
  158. {
  159. CHARGING_MODE_BS=0,
  160. CHARGING_MODE_HLC
  161. };
  162. enum HLC_MODE
  163. {
  164. HLC_STOP_MODE=0,
  165. HLC_START_MODE,
  166. HLC_RENEGOTIATE_MODE,
  167. HLC_STANDBY_MODE
  168. };
  169. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  170. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  171. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  172. extern int StoreLogMsg(const char *fmt, ...);
  173. //============================================================
  174. // Private shared memory key define
  175. //============================================================
  176. #define ShmChargerKey 2001
  177. typedef struct Verion
  178. {
  179. char Version_FW[32];
  180. char Version_HW[32];
  181. }Ver;
  182. typedef struct PRESENTINPUTVOLTAGE
  183. {
  184. unsigned char inputType; // 0x00: Line to Line 0x01: Line to Neutral
  185. double L1N_L12;
  186. double L2N_L23;
  187. double L3N_L31;
  188. }PresentInputVoltage;
  189. typedef struct PRESENTOUTPUTVOLTAGE
  190. {
  191. double behindFuse_Voltage_C1;
  192. double behindRelay_Voltage_C1;
  193. double behindFuse_Voltage_C2;
  194. double behindRelay_Voltage_C2;
  195. }PresentOutputVoltage;
  196. typedef struct FANSPEED
  197. {
  198. unsigned short int speed[4];
  199. }FanSpeed;
  200. typedef struct TEMPERATURE
  201. {
  202. unsigned char point[8];
  203. }Temperature;
  204. typedef struct AUXPOWER
  205. {
  206. unsigned char voltage[8];
  207. }AuxPower;
  208. typedef struct RELAY
  209. {
  210. unsigned char relay_status[2][8];
  211. }Relay;
  212. typedef struct GFD
  213. {
  214. unsigned short int adc_value_positive[2];
  215. unsigned short int adc_value_negative[2];
  216. }Gfd;
  217. typedef struct GPIO_IN
  218. {
  219. unsigned char AC_Connector;
  220. unsigned char AC_MainBreaker;
  221. unsigned char SPD;
  222. unsigned char Door_Open;
  223. unsigned char GFD[2];
  224. unsigned char Button[2];
  225. unsigned char Button_Emergency;
  226. }Gpio_in;
  227. typedef struct GPIO_OUT
  228. {
  229. unsigned char AC_Connector;
  230. unsigned char Button_LED[2];
  231. unsigned char System_LED[4];
  232. }Gpio_out;
  233. typedef struct ALARM_LOG
  234. {
  235. unsigned char logArea;
  236. unsigned int alarmIndex;
  237. unsigned char log[8];
  238. }Alarm_Log;
  239. typedef struct BLE_CONFIG_DATA
  240. {
  241. unsigned char isLogin:1;
  242. unsigned char isRequestStart:1;
  243. unsigned char isRequestStop:1;
  244. }Ble_Config_Data;
  245. typedef struct BLE_LONGIN_CENTRAL_ID
  246. {
  247. unsigned char id[32];
  248. }Ble_Login_Central_Id;
  249. typedef struct RTC
  250. {
  251. unsigned short int year;
  252. unsigned char month;
  253. unsigned char day;
  254. unsigned char hour;
  255. unsigned char min;
  256. unsigned char sec;
  257. }Rtc;
  258. typedef struct PRESENTOUTPUTCURRENT
  259. {
  260. double L1N_L12[2];
  261. double L2N_L23[2];
  262. double L3N_L31[2];
  263. }Presentoutputcurrent;
  264. typedef struct AC_PRIMARY_MCU
  265. {
  266. unsigned char cp_state;
  267. unsigned int current_limit;
  268. float cp_voltage_positive;
  269. float cp_voltage_negtive;
  270. unsigned char locker_state;
  271. unsigned char relay_state;
  272. unsigned char shutter_state;
  273. unsigned char meter_state;
  274. unsigned char pp_state;
  275. unsigned char rating_current;
  276. unsigned char rotatory_switch;
  277. Relay relayState;
  278. }Ac_Primary_Mcu;
  279. typedef struct AC_PRIMARY_MCU_ALARM
  280. {
  281. union
  282. {
  283. unsigned long InputAlarmCode;
  284. struct
  285. {
  286. unsigned long OVP_L1:1;
  287. unsigned long UVP_L1:1;
  288. unsigned long OCP_L1:1;
  289. unsigned long OTP:1;
  290. unsigned long gmi_fault:1;
  291. unsigned long cp_fault:1;
  292. unsigned long ac_leak:1;
  293. unsigned long dc_leak:1;
  294. unsigned long mcu_selftest_fail:1;
  295. unsigned long handshaking_timeout:1;
  296. unsigned long emergency_stop:1;
  297. unsigned long relay_welding:1;
  298. unsigned long leak_module_fail:1;
  299. unsigned long shutter_fault:1;
  300. unsigned long locker_fault:1;
  301. unsigned long power_drop:1;
  302. unsigned long rotate_switch_fault:1;
  303. unsigned long short_circuit_L1:1;
  304. unsigned long relay_drive_fault:1;
  305. unsigned long comm_timeout:1;
  306. unsigned long OVP_L2:1;
  307. unsigned long UVP_L2:1;
  308. unsigned long OCP_L2:1;
  309. unsigned long OVP_L3:1;
  310. unsigned long UVP_L3:1;
  311. unsigned long OCP_L3:1;
  312. unsigned long short_circuit_L2:1;
  313. unsigned long short_circuit_L3:1;
  314. }bits;
  315. };
  316. }Ac_Primary_Mcu_Alarm;
  317. typedef struct AC_PRIMARY_MCU_LED
  318. {
  319. unsigned char mode;
  320. unsigned long alarm_code;
  321. }Ac_Primary_Mcu_Led;
  322. typedef struct EVSE_ID
  323. {
  324. unsigned char model_name[14];
  325. unsigned char serial_number[12];
  326. }Evse_Id;
  327. typedef struct AC_PRIMARY_MCU_CP_PWM_DUTY
  328. {
  329. unsigned int max_current;
  330. }Ac_Primary_Mcu_Cp_Pwm_Duty;
  331. typedef struct LEGACY_REQUEST
  332. {
  333. unsigned char isLegacyRequest:1;
  334. uint8_t isRelayOn:1;
  335. }Legacy_Request;
  336. typedef struct POWER_CONSUMPTION
  337. {
  338. uint32_t power_consumption;
  339. uint32_t power_consumption_at_start;
  340. }Power_Consumption;
  341. typedef struct MCU_OP_FLAG
  342. {
  343. unsigned char isSetModePass:1;
  344. unsigned char isSetSerialNumberPass:1;
  345. unsigned char isSetModelNamePass:1;
  346. unsigned char isReadFwVerPass:1;
  347. unsigned char isMcuUpgradeReq:1;
  348. unsigned char isSetCpPwmDuty:1;
  349. }Mcu_Op_Flag;
  350. typedef struct SYSTEM_ALARM_CODE
  351. {
  352. unsigned long SystemAlarmCode;
  353. }System_Alarm_Code;
  354. typedef struct OTHER_ALARM_CODE
  355. {
  356. unsigned long isHandshakingTimeOut:1;
  357. unsigned long isDcLeakage:1;
  358. unsigned long isACLeakage:1;
  359. }Other_Alarm_Code;
  360. typedef struct PILOT_VOLTAGE
  361. {
  362. float PilotVoltagePositive;
  363. float PilotVoltageNegative;
  364. }Pilot_Voltage;
  365. typedef struct FW_UPGRADE_INFO
  366. {
  367. int fwType;
  368. char modelName[17];
  369. char location[384];
  370. }Fw_Upgrade_Info;
  371. typedef struct GUN_PLUGIN_TIMES
  372. {
  373. uint32_t GunPluginTimes;
  374. }Gun_Plugin_Times;
  375. typedef struct MCU_RESET_REQUEST
  376. {
  377. unsigned char isMcuResetRequest:1;
  378. }Mcu_Reset_Request;
  379. typedef struct TIMEOUT_SPEC
  380. {
  381. int Setting_Timeout_Spec;
  382. int Present_Timeout_Spec;
  383. }Timeout_Spec;
  384. typedef struct SET_BREATHE_LED_TIMING
  385. {
  386. uint16_t set_Led_Action_Connected_Fade_In;
  387. uint16_t set_Led_Action_Connected_Fade_Out;
  388. uint16_t set_Led_Action_Authed_Fade_In;
  389. uint16_t set_Led_Action_Authed_Fade_Out;
  390. uint16_t Set_Led_Action_Chaging_Fade_In;
  391. uint16_t set_Led_Action_Chaging_Fade_Out;
  392. }Set_Breathe_Led_Timing;
  393. typedef struct SET_LED_BRIGHTNESS
  394. {
  395. uint8_t sector_1; // 0~1 AM and 1~2 AM
  396. uint8_t sector_2; // 2~3 AM and 3~4 AM
  397. uint8_t sector_3; // 4~5 AM and 5~6 AM
  398. uint8_t sector_4; // 6~7 AM and 7~8 AM
  399. uint8_t sector_5; // 8~9 AM and 9~10 AM
  400. uint8_t sector_6; // 10~11 AM and 11~12 AM
  401. uint8_t sector_7; // 12~13 PM and 13~14 PM
  402. uint8_t sector_8; // 14~15 PM and 15~16 PM
  403. uint8_t sector_9; // 16~17 PM and 17~18 PM
  404. uint8_t sector_10; // 18~19 PM and 19~20 PM
  405. uint8_t sector_11; // 20~21 PM and 21~22 PM
  406. uint8_t sector_12; // 22~23 PM and 23~24 PM
  407. }Set_Led_Brightness;
  408. typedef struct CCS_INFO
  409. {
  410. uint8_t BatteryChargeType; /*0x00: AC charging, 0x01: DC charging*/
  411. uint8_t PresentMsgFlowStatus;
  412. /* ISO15118_2018
  413. 0: Idle(wait B2 state),
  414. 1: CM_SLAC_PARM.REQ,
  415. 2: CM_SLAC_PARM.CNF,
  416. 3: CM_START_ATTEN_CHAR.IND
  417. 4: CM_MNBC_SOUND.IND,
  418. 5: CM_ATTEN_CHAR.IND,
  419. 6: CM_ATTEN_CHAR.RSP,
  420. 7: CM_VALIDATE.REQ
  421. 8: CM_VALIDATE.CNF,
  422. 9: CM_SLAC_MATCH.REQ,
  423. 10: CM_SLAC_MATCH.CNF,
  424. 11: CM_AMP_MAP.REQ
  425. 12: CM_AMP_MAP.CNF,
  426. 13: SLACC/SDP/TCP connection,
  427. 16: SupportedAppProtocolRequest,
  428. 17: SupportedAppProtocolResponse,
  429. 18: SessionSetupRequest
  430. 19: SessionSetupResponse,
  431. 20: ServiceDiscoveryRequest,
  432. 21: ServiceDiscoveryResponse
  433. 22: ServiceDetailRequest,
  434. 23: ServiceDetailResponse
  435. 24:ServiceAndPaymentSelectionRequest/ServiceSelectionRequest,
  436. 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
  437. 26: PaymentDetailsRequest/IdentificationDetailsRequest;,
  438. 27: PaymentDetailsResponse/IdentificationDetailsResponse,
  439. 28: AuthorizationRequest,
  440. 29: AuthorizationResponse,
  441. 30: CertificateUpdateRequest,
  442. 31: CertificateUpdateResponse,
  443. 32:CertificateInstallationRequest,
  444. 33: CertificateInstallationResponse
  445. 34: ChargeParameterDiscoveryRequest,
  446. 35: ChargeParameterDiscoveryResponse
  447. 36: CableCheckRequest,
  448. 37: CableCheckResponse,
  449. 38: PreChargeRequest,
  450. 39: PreChargeResponse
  451. 40: PowerDeliveryRequest start,
  452. 41: PowerDeliveryResponse start,
  453. 42: ChargingStatusRequest,
  454. 43: ChargingStatusResponse
  455. 44:CurrentDemandRequest,
  456. 45:CurrentDemandResponse,
  457. 46:MeteringReceiptRequest,
  458. 47: MeteringReceiptResponse
  459. 48: PowerDeliveryRequest end,
  460. 49: PowerDeliveryRequest end,
  461. 50: WeldingDetectionRequest,
  462. 51: WeldingDetectionResponse,
  463. 52: SessionStopRequest,
  464. 53: SessionStopResponse
  465. 253: Performance Timeout,
  466. 254: Sequence Timeout,
  467. 255: Fault
  468. */
  469. float ConnectorTemperature1; /*unit: 1°C*/
  470. float ConnectorTemperature2; /*unit: 1°C*/
  471. uint16_t ChargingRemainTime; /*0x0000: 0 sec ~ 0xFFFF: 65535 sec, unit: 1 second*/
  472. float TotalBatteryCapacity; /*unit: Wh*/
  473. float BatteryMaximumVoltage; /*unit: 1 volt*/
  474. float BatteryMaximumCurrent; /*unit: 1 amp*/
  475. uint8_t EVCCID[8];
  476. uint8_t EVSEID[40];
  477. uint8_t CCSLibRev[32];
  478. uint8_t EVSEModelName[32];
  479. uint32_t CSUAlarmStatusCode;
  480. uint16_t CCSAlarmStatusCode;
  481. uint8_t PaymentOption; /* 0x00 EIM, 0x01 Pnc */
  482. float EVSEMaxCurrent; /*unit: 1 amp*/
  483. float EVSEMinCurrent; /*unit: 1 amp*/
  484. float GridVoltage[3]; /*unit: 1 volt*/
  485. uint8_t MeterID[32]; /*unit: 1 amp*/
  486. float MeterReadingValue; /*unit: 1Wh*/
  487. uint8_t EVOperation; /*0:Charge, 1:Discharge*/
  488. uint8_t EVChargeProgress; /*0: Stop
  489. 1: Start
  490. 2: Renegotiate
  491. 3: Standby */
  492. uint8_t CpSetPWMDuty; /*unit: 1%
  493. 0: 0%
  494. 5: 5%
  495. 100: 100%*/
  496. uint8_t CpSetStateE; /*0:disable, 1:enable*/
  497. uint8_t CpPresentPWMDuty; /*unit:1%*/
  498. uint8_t CpPresentState; /*1: A (12V, no PWM)
  499. 2: B1 (9V, no PWM)
  500. 3: B2 (9V, with PWM)
  501. 4: C (6V, with PWM)
  502. 5: D (3V, with PWM)
  503. 6: E (0V, no PWM)
  504. 7: F (-12V, no PWM)
  505. 8: G (>12V)
  506. 9: H (<12V)*/
  507. float CpPositiveVoltage; /*uint: 1V*/
  508. float CpNegativeVoltage; /*uint: 1V*/
  509. uint32_t CcsHeartBeat; /*unit: 1*/
  510. float EVSEPresentCurrent[3]; //unit: 1A
  511. float AvailableChargingPower; //1KW
  512. uint8_t EVSENotification; /*0: None
  513. 1: StopCharging
  514. 2: ReNegotiation*/
  515. uint16_t ChargingPermission:1; /*0x00: Not ready yet, stay in idle mode or go into terminating process.
  516. 0x01: start charging process*/
  517. uint16_t ConnectorLockerStatus:1; /*0x00: released
  518. 0x01: locked*/
  519. uint16_t RcdStatus:1; /* 0x00 no error
  520. 0x01 an error */
  521. uint16_t OutputRelayStatus:1; /*0: OFF
  522. 1: ON*/
  523. uint16_t TempFlag4:1;
  524. uint16_t TempFlag5:1;
  525. uint16_t TempFlag6:1;
  526. uint16_t TempFlag7:1;
  527. uint16_t TempFlag8:1;
  528. uint16_t TempFlag9:1;
  529. uint16_t TempFlag10:1;
  530. uint16_t TempFlag11:1;
  531. uint16_t TempFlag12:1;
  532. uint16_t TempFlag13:1;
  533. uint16_t TempFlag14:1;
  534. uint16_t TempFlag15:1;
  535. }Ac_Ccs_Info;
  536. typedef struct GUN_INFO
  537. {
  538. Ver ver;
  539. PresentInputVoltage inputVoltage;
  540. Presentoutputcurrent outputCurrent;
  541. Temperature temperature;
  542. Ble_Config_Data bleConfigData;
  543. Ble_Login_Central_Id bleLoginCentralId;
  544. Rtc rtc;
  545. Ac_Primary_Mcu primaryMcuState;
  546. Ac_Primary_Mcu_Alarm primaryMcuAlarm;
  547. Ac_Primary_Mcu_Led primaryMcuLed;
  548. Mcu_Op_Flag mcuFlag;
  549. Power_Consumption powerConsumptionTotal;
  550. Power_Consumption powerConsumption[3];
  551. Legacy_Request legacyRequest;
  552. System_Alarm_Code systemAlarmCode;
  553. Ac_Primary_Mcu_Cp_Pwm_Duty primaryMcuCp_Pwn_Duty;
  554. Other_Alarm_Code otherAlarmCode;
  555. Pilot_Voltage PilotVoltage;
  556. Gun_Plugin_Times gunPluginTimes;
  557. Mcu_Reset_Request mcuResetRequest;
  558. Set_Breathe_Led_Timing setBreatheLedTiming;
  559. Set_Led_Brightness setLedBrightness;
  560. Ac_Ccs_Info acCcsInfo;
  561. uint8_t ccsHandshakeState;
  562. uint8_t PreviousEVChargeProgress;
  563. uint8_t chargingMode;
  564. uint16_t targetCurrent;
  565. uint8_t evReadyState;
  566. uint16_t isAuthPassEnd:1;
  567. uint16_t rfidReq:1;
  568. uint16_t isGunPlugged:1;
  569. uint16_t isInitialPass:1;
  570. uint16_t isSetBreatheLedTiming:1;
  571. uint16_t isSetLedBrightness:1;
  572. uint16_t isUnlockerConnetor:1;
  573. uint16_t isOperactive:1;
  574. uint16_t isCCSWaitChangeDuty:1;
  575. uint16_t isCCSStartTransation:1;
  576. uint16_t isEvReady2StateE:1;
  577. uint16_t isDoEvReadyOnce:1;
  578. uint16_t isChargerStopByCondition:1;
  579. }Gun_Info;
  580. struct Charger
  581. {
  582. Ver ver;
  583. Evse_Id evseId;
  584. Gun_Info gun_info[2];
  585. Fw_Upgrade_Info fwUpgradeInfo;
  586. Timeout_Spec timeoutSpec;
  587. uint8_t gun_selectd;
  588. uint8_t speaker_type;
  589. uint8_t isSpeakerOn:1;
  590. uint8_t isUpdateSuccess:1;
  591. };
  592. #endif /* CONFIG_MAIN_H_ */