main.h 18 KB

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