main.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  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. #define HANDSHAKE_DUTY_5 1
  141. #define HANDSHAKE_DUTY_5_CHECK 2
  142. #define HANDSHAKE_CCS 3
  143. #define HANDSHAKE_CP_STATE_E 4
  144. #define HANDSHAKE_SET_MAX_CURRENT 5
  145. #define HANDSHAKE_BS_MODE 6
  146. #define HANDSHAKE_HLC_MODE 7
  147. #define EV_READY_STAT_E 1
  148. #define EV_READY_STAT_C 2
  149. #define EV_READY_SET_MAX_CURRENT 3
  150. #define CHARGING_MODE_BS 0
  151. #define CHARGING_MODE_HLC 1
  152. #define HLC_STOP_MODE 0
  153. #define HLC_START_MODE 1
  154. #define HLC_RENEGOTIATE_MODE 2
  155. #define HLC_STANDBY_MODE 3
  156. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  157. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  158. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  159. extern int StoreLogMsg(const char *fmt, ...);
  160. //============================================================
  161. // Private shared memory key define
  162. //============================================================
  163. #define ShmChargerKey 2001
  164. typedef struct Verion
  165. {
  166. char Version_FW[32];
  167. char Version_HW[32];
  168. }Ver;
  169. typedef struct PRESENTINPUTVOLTAGE
  170. {
  171. unsigned char inputType; // 0x00: Line to Line 0x01: Line to Neutral
  172. double L1N_L12;
  173. double L2N_L23;
  174. double L3N_L31;
  175. }PresentInputVoltage;
  176. typedef struct PRESENTOUTPUTVOLTAGE
  177. {
  178. double behindFuse_Voltage_C1;
  179. double behindRelay_Voltage_C1;
  180. double behindFuse_Voltage_C2;
  181. double behindRelay_Voltage_C2;
  182. }PresentOutputVoltage;
  183. typedef struct FANSPEED
  184. {
  185. unsigned short int speed[4];
  186. }FanSpeed;
  187. typedef struct TEMPERATURE
  188. {
  189. unsigned char point[8];
  190. }Temperature;
  191. typedef struct AUXPOWER
  192. {
  193. unsigned char voltage[8];
  194. }AuxPower;
  195. typedef struct RELAY
  196. {
  197. unsigned char relay_status[2][8];
  198. }Relay;
  199. typedef struct GFD
  200. {
  201. unsigned short int adc_value_positive[2];
  202. unsigned short int adc_value_negative[2];
  203. }Gfd;
  204. typedef struct GPIO_IN
  205. {
  206. unsigned char AC_Connector;
  207. unsigned char AC_MainBreaker;
  208. unsigned char SPD;
  209. unsigned char Door_Open;
  210. unsigned char GFD[2];
  211. unsigned char Button[2];
  212. unsigned char Button_Emergency;
  213. }Gpio_in;
  214. typedef struct GPIO_OUT
  215. {
  216. unsigned char AC_Connector;
  217. unsigned char Button_LED[2];
  218. unsigned char System_LED[4];
  219. }Gpio_out;
  220. typedef struct ALARM_LOG
  221. {
  222. unsigned char logArea;
  223. unsigned int alarmIndex;
  224. unsigned char log[8];
  225. }Alarm_Log;
  226. typedef struct BLE_CONFIG_DATA
  227. {
  228. unsigned char isLogin:1;
  229. unsigned char isRequestStart:1;
  230. unsigned char isRequestStop:1;
  231. }Ble_Config_Data;
  232. typedef struct BLE_LONGIN_CENTRAL_ID
  233. {
  234. unsigned char id[32];
  235. }Ble_Login_Central_Id;
  236. typedef struct RTC
  237. {
  238. unsigned short int year;
  239. unsigned char month;
  240. unsigned char day;
  241. unsigned char hour;
  242. unsigned char min;
  243. unsigned char sec;
  244. }Rtc;
  245. typedef struct PRESENTOUTPUTCURRENT
  246. {
  247. double L1N_L12[2];
  248. double L2N_L23[2];
  249. double L3N_L31[2];
  250. }Presentoutputcurrent;
  251. typedef struct AC_PRIMARY_MCU
  252. {
  253. unsigned char cp_state;
  254. unsigned int current_limit;
  255. float cp_voltage_positive;
  256. float cp_voltage_negtive;
  257. unsigned char locker_state;
  258. unsigned char relay_state;
  259. unsigned char shutter_state;
  260. unsigned char meter_state;
  261. unsigned char pp_state;
  262. unsigned char rating_current;
  263. unsigned char rotatory_switch;
  264. Relay relayState;
  265. }Ac_Primary_Mcu;
  266. typedef struct AC_PRIMARY_MCU_ALARM
  267. {
  268. union
  269. {
  270. unsigned long InputAlarmCode;
  271. struct
  272. {
  273. unsigned long OVP_L1:1;
  274. unsigned long UVP_L1:1;
  275. unsigned long OCP_L1:1;
  276. unsigned long OTP:1;
  277. unsigned long gmi_fault:1;
  278. unsigned long cp_fault:1;
  279. unsigned long ac_leak:1;
  280. unsigned long dc_leak:1;
  281. unsigned long mcu_selftest_fail:1;
  282. unsigned long handshaking_timeout:1;
  283. unsigned long emergency_stop:1;
  284. unsigned long relay_welding:1;
  285. unsigned long leak_module_fail:1;
  286. unsigned long shutter_fault:1;
  287. unsigned long locker_fault:1;
  288. unsigned long power_drop:1;
  289. unsigned long rotate_switch_fault:1;
  290. unsigned long short_circuit_L1:1;
  291. unsigned long relay_drive_fault:1;
  292. unsigned long comm_timeout:1;
  293. unsigned long OVP_L2:1;
  294. unsigned long UVP_L2:1;
  295. unsigned long OCP_L2:1;
  296. unsigned long OVP_L3:1;
  297. unsigned long UVP_L3:1;
  298. unsigned long OCP_L3:1;
  299. unsigned long short_circuit_L2:1;
  300. unsigned long short_circuit_L3:1;
  301. }bits;
  302. };
  303. }Ac_Primary_Mcu_Alarm;
  304. typedef struct AC_PRIMARY_MCU_LED
  305. {
  306. unsigned char mode;
  307. unsigned long alarm_code;
  308. }Ac_Primary_Mcu_Led;
  309. typedef struct EVSE_ID
  310. {
  311. unsigned char model_name[14];
  312. unsigned char serial_number[12];
  313. }Evse_Id;
  314. typedef struct AC_PRIMARY_MCU_CP_PWM_DUTY
  315. {
  316. unsigned int max_current;
  317. }Ac_Primary_Mcu_Cp_Pwm_Duty;
  318. typedef struct LEGACY_REQUEST
  319. {
  320. unsigned char isLegacyRequest:1;
  321. uint8_t isRelayOn:1;
  322. }Legacy_Request;
  323. typedef struct POWER_CONSUMPTION
  324. {
  325. uint32_t power_consumption;
  326. uint32_t power_consumption_at_start;
  327. }Power_Consumption;
  328. typedef struct MCU_OP_FLAG
  329. {
  330. unsigned char isSetModePass:1;
  331. unsigned char isSetSerialNumberPass:1;
  332. unsigned char isSetModelNamePass:1;
  333. unsigned char isReadFwVerPass:1;
  334. unsigned char isMcuUpgradeReq:1;
  335. unsigned char isSetCpPwmDuty:1;
  336. }Mcu_Op_Flag;
  337. typedef struct SYSTEM_ALARM_CODE
  338. {
  339. unsigned long SystemAlarmCode;
  340. }System_Alarm_Code;
  341. typedef struct OTHER_ALARM_CODE
  342. {
  343. unsigned long isHandshakingTimeOut:1;
  344. unsigned long isDcLeakage:1;
  345. unsigned long isACLeakage:1;
  346. }Other_Alarm_Code;
  347. typedef struct PILOT_VOLTAGE
  348. {
  349. float PilotVoltagePositive;
  350. float PilotVoltageNegative;
  351. }Pilot_Voltage;
  352. typedef struct FW_UPGRADE_INFO
  353. {
  354. int fwType;
  355. char modelName[17];
  356. char location[384];
  357. }Fw_Upgrade_Info;
  358. typedef struct GUN_PLUGIN_TIMES
  359. {
  360. uint32_t GunPluginTimes;
  361. }Gun_Plugin_Times;
  362. typedef struct MCU_RESET_REQUEST
  363. {
  364. unsigned char isMcuResetRequest:1;
  365. }Mcu_Reset_Request;
  366. typedef struct TIMEOUT_SPEC
  367. {
  368. int Setting_Timeout_Spec;
  369. int Present_Timeout_Spec;
  370. }Timeout_Spec;
  371. typedef struct SET_BREATHE_LED_TIMING
  372. {
  373. uint16_t set_Led_Action_Connected_Fade_In;
  374. uint16_t set_Led_Action_Connected_Fade_Out;
  375. uint16_t set_Led_Action_Authed_Fade_In;
  376. uint16_t set_Led_Action_Authed_Fade_Out;
  377. uint16_t Set_Led_Action_Chaging_Fade_In;
  378. uint16_t set_Led_Action_Chaging_Fade_Out;
  379. }Set_Breathe_Led_Timing;
  380. typedef struct SET_LED_BRIGHTNESS
  381. {
  382. uint8_t sector_1; // 0~1 AM and 1~2 AM
  383. uint8_t sector_2; // 2~3 AM and 3~4 AM
  384. uint8_t sector_3; // 4~5 AM and 5~6 AM
  385. uint8_t sector_4; // 6~7 AM and 7~8 AM
  386. uint8_t sector_5; // 8~9 AM and 9~10 AM
  387. uint8_t sector_6; // 10~11 AM and 11~12 AM
  388. uint8_t sector_7; // 12~13 PM and 13~14 PM
  389. uint8_t sector_8; // 14~15 PM and 15~16 PM
  390. uint8_t sector_9; // 16~17 PM and 17~18 PM
  391. uint8_t sector_10; // 18~19 PM and 19~20 PM
  392. uint8_t sector_11; // 20~21 PM and 21~22 PM
  393. uint8_t sector_12; // 22~23 PM and 23~24 PM
  394. }Set_Led_Brightness;
  395. typedef struct CCS_INFO
  396. {
  397. uint8_t BatteryChargeType; /*0x00: AC charging, 0x01: DC charging*/
  398. uint8_t PresentMsgFlowStatus;
  399. /* ISO15118_2018
  400. 0: Idle(wait B2 state),
  401. 1: CM_SLAC_PARM.REQ,
  402. 2: CM_SLAC_PARM.CNF,
  403. 3: CM_START_ATTEN_CHAR.IND
  404. 4: CM_MNBC_SOUND.IND,
  405. 5: CM_ATTEN_CHAR.IND,
  406. 6: CM_ATTEN_CHAR.RSP,
  407. 7: CM_VALIDATE.REQ
  408. 8: CM_VALIDATE.CNF,
  409. 9: CM_SLAC_MATCH.REQ,
  410. 10: CM_SLAC_MATCH.CNF,
  411. 11: CM_AMP_MAP.REQ
  412. 12: CM_AMP_MAP.CNF,
  413. 13: SLACC/SDP/TCP connection,
  414. 16: SupportedAppProtocolRequest,
  415. 17: SupportedAppProtocolResponse,
  416. 18: SessionSetupRequest
  417. 19: SessionSetupResponse,
  418. 20: ServiceDiscoveryRequest,
  419. 21: ServiceDiscoveryResponse
  420. 22: ServiceDetailRequest,
  421. 23: ServiceDetailResponse
  422. 24:ServiceAndPaymentSelectionRequest/ServiceSelectionRequest,
  423. 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
  424. 26: PaymentDetailsRequest/IdentificationDetailsRequest;,
  425. 27: PaymentDetailsResponse/IdentificationDetailsResponse,
  426. 28: AuthorizationRequest,
  427. 29: AuthorizationResponse,
  428. 30: CertificateUpdateRequest,
  429. 31: CertificateUpdateResponse,
  430. 32:CertificateInstallationRequest,
  431. 33: CertificateInstallationResponse
  432. 34: ChargeParameterDiscoveryRequest,
  433. 35: ChargeParameterDiscoveryResponse
  434. 36: CableCheckRequest,
  435. 37: CableCheckResponse,
  436. 38: PreChargeRequest,
  437. 39: PreChargeResponse
  438. 40: PowerDeliveryRequest start,
  439. 41: PowerDeliveryResponse start,
  440. 42: ChargingStatusRequest,
  441. 43: ChargingStatusResponse
  442. 44:CurrentDemandRequest,
  443. 45:CurrentDemandResponse,
  444. 46:MeteringReceiptRequest,
  445. 47: MeteringReceiptResponse
  446. 48: PowerDeliveryRequest end,
  447. 49: PowerDeliveryRequest end,
  448. 50: WeldingDetectionRequest,
  449. 51: WeldingDetectionResponse,
  450. 52: SessionStopRequest,
  451. 53: SessionStopResponse
  452. 253: Performance Timeout,
  453. 254: Sequence Timeout,
  454. 255: Fault
  455. */
  456. float ConnectorTemperature1; /*unit: 1°C*/
  457. float ConnectorTemperature2; /*unit: 1°C*/
  458. uint16_t ChargingRemainTime; /*0x0000: 0 sec ~ 0xFFFF: 65535 sec, unit: 1 second*/
  459. float TotalBatteryCapacity; /*unit: Wh*/
  460. float BatteryMaximumVoltage; /*unit: 1 volt*/
  461. float BatteryMaximumCurrent; /*unit: 1 amp*/
  462. uint8_t EVCCID[8];
  463. uint8_t EVSEID[40];
  464. uint8_t CCSLibRev[32];
  465. uint8_t EVSEModelName[32];
  466. uint32_t CSUAlarmStatusCode;
  467. uint16_t CCSAlarmStatusCode;
  468. uint8_t PaymentOption; /* 0x00 EIM, 0x01 Pnc */
  469. float EVSEMaxCurrent; /*unit: 1 amp*/
  470. float EVSEMinCurrent; /*unit: 1 amp*/
  471. float GridVoltage[3]; /*unit: 1 volt*/
  472. uint8_t MeterID[32]; /*unit: 1 amp*/
  473. float MeterReadingValue; /*unit: 1Wh*/
  474. uint8_t EVOperation; /*0:Charge, 1:Discharge*/
  475. uint8_t EVChargeProgress; /*0: Stop
  476. 1: Start
  477. 2: Renegotiate
  478. 3: Standby */
  479. uint8_t CpSetPWMDuty; /*unit: 1%
  480. 0: 0%
  481. 5: 5%
  482. 100: 100%*/
  483. uint8_t CpSetStateE; /*0:disable, 1:enable*/
  484. uint8_t CpPresentPWMDuty; /*unit:1%*/
  485. uint8_t CpPresentState; /*1: A (12V, no PWM)
  486. 2: B1 (9V, no PWM)
  487. 3: B2 (9V, with PWM)
  488. 4: C (6V, with PWM)
  489. 5: D (3V, with PWM)
  490. 6: E (0V, no PWM)
  491. 7: F (-12V, no PWM)
  492. 8: G (>12V)
  493. 9: H (<12V)*/
  494. float CpPositiveVoltage; /*uint: 1V*/
  495. float CpNegativeVoltage; /*uint: 1V*/
  496. uint32_t CcsHeartBeat; /*unit: 1*/
  497. float EVSEPresentCurrent[3]; //unit: 1A
  498. float AvailableChargingPower; //1KW
  499. uint8_t EVSENotification; /*0: None
  500. 1: StopCharging
  501. 2: ReNegotiation*/
  502. uint16_t ChargingPermission:1; /*0x00: Not ready yet, stay in idle mode or go into terminating process.
  503. 0x01: start charging process*/
  504. uint16_t ConnectorLockerStatus:1; /*0x00: released
  505. 0x01: locked*/
  506. uint16_t RcdStatus:1; /* 0x00 no error
  507. 0x01 an error */
  508. uint16_t OutputRelayStatus:1; /*0: OFF
  509. 1: ON*/
  510. uint16_t TempFlag4:1;
  511. uint16_t TempFlag5:1;
  512. uint16_t TempFlag6:1;
  513. uint16_t TempFlag7:1;
  514. uint16_t TempFlag8:1;
  515. uint16_t TempFlag9:1;
  516. uint16_t TempFlag10:1;
  517. uint16_t TempFlag11:1;
  518. uint16_t TempFlag12:1;
  519. uint16_t TempFlag13:1;
  520. uint16_t TempFlag14:1;
  521. uint16_t TempFlag15:1;
  522. }Ac_Ccs_Info;
  523. typedef struct GUN_INFO
  524. {
  525. Ver ver;
  526. PresentInputVoltage inputVoltage;
  527. Presentoutputcurrent outputCurrent;
  528. Temperature temperature;
  529. Ble_Config_Data bleConfigData;
  530. Ble_Login_Central_Id bleLoginCentralId;
  531. Rtc rtc;
  532. Ac_Primary_Mcu primaryMcuState;
  533. Ac_Primary_Mcu_Alarm primaryMcuAlarm;
  534. Ac_Primary_Mcu_Led primaryMcuLed;
  535. Mcu_Op_Flag mcuFlag;
  536. Power_Consumption powerConsumptionTotal;
  537. Power_Consumption powerConsumption[3];
  538. Legacy_Request legacyRequest;
  539. System_Alarm_Code systemAlarmCode;
  540. Ac_Primary_Mcu_Cp_Pwm_Duty primaryMcuCp_Pwn_Duty;
  541. Other_Alarm_Code otherAlarmCode;
  542. Pilot_Voltage PilotVoltage;
  543. Gun_Plugin_Times gunPluginTimes;
  544. Mcu_Reset_Request mcuResetRequest;
  545. Set_Breathe_Led_Timing setBreatheLedTiming;
  546. Set_Led_Brightness setLedBrightness;
  547. Ac_Ccs_Info acCcsInfo;
  548. uint8_t ccsHandshakeState;
  549. uint8_t PreviousEVChargeProgress;
  550. uint8_t chargingMode;
  551. uint16_t targetCurrent;
  552. uint8_t evReadyState;
  553. uint16_t isAuthPassEnd:1;
  554. uint16_t rfidReq:1;
  555. uint16_t isGunPlugged:1;
  556. uint16_t isInitialPass:1;
  557. uint16_t isSetBreatheLedTiming:1;
  558. uint16_t isSetLedBrightness:1;
  559. uint16_t isUnlockerConnetor:1;
  560. uint16_t isOperactive:1;
  561. uint16_t isCCSWaitChangeDuty:1;
  562. uint16_t isCCSStartTransation:1;
  563. uint16_t isEvReady2StateE:1;
  564. uint16_t isDoEvReadyOnce:1;
  565. }Gun_Info;
  566. struct Charger
  567. {
  568. Ver ver;
  569. Evse_Id evseId;
  570. Gun_Info gun_info[2];
  571. Fw_Upgrade_Info fwUpgradeInfo;
  572. Timeout_Spec timeoutSpec;
  573. uint8_t gun_selectd;
  574. uint8_t speaker_type;
  575. uint8_t isSpeakerOn:1;
  576. uint8_t isUpdateSuccess:1;
  577. };
  578. #endif /* CONFIG_MAIN_H_ */