Module_EvTxComm.c 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <stdint.h>
  4. #include <string.h>
  5. #include <fcntl.h>
  6. #include <unistd.h>
  7. #include <time.h>
  8. #include <sys/ioctl.h>
  9. #include <sys/stat.h>
  10. #include <sys/timeb.h>
  11. #include <sys/time.h>
  12. #include <net/if.h>
  13. #include <linux/can.h>
  14. #include <linux/can/raw.h>
  15. #include "../Config.h"
  16. #include "../Log/log.h"
  17. #include "../Define/define.h"
  18. #include "../ShareMemory/shmMem.h"
  19. #include "Ev_Comm.h"
  20. #include "Module_EvComm.h"
  21. //------------------------------------------------------------------------------
  22. static struct SysConfigData *pSysConfig = NULL;
  23. static struct SysInfoData *pSysInfo = NULL;
  24. static struct FaultCodeData *pFaultCode = NULL;
  25. static struct AlarmCodeData *pAlarmCode = NULL;
  26. static struct CHAdeMOData *ShmCHAdeMOData = NULL;
  27. static struct GBTData *ShmGBTData = NULL;
  28. static struct CcsData *ShmCcsData = NULL;
  29. static DcCommonInfo *ShmDcCommonData = NULL;
  30. // 限制最大充電電壓,因應不同 type 槍線來限制
  31. // Chademo : 500V, 125A,
  32. // GB : 750, 120A
  33. // CCS : 950V, 120A
  34. //DS60-120 add
  35. //static double chademoVol = 5000;
  36. //static double ccsVol = 9500;
  37. //static double gbVol = 7500;
  38. static float maxChargingVol[2] = { 0, 0 }; // 限制最大充電電壓,如依照模塊則填上 0
  39. // 限制最大充電電流與能量透過 Web
  40. static float maxChargingCur[2] = { 0, 0 }; // 限制最大充電電流,如依照模塊則填上 0
  41. static float maxChargingPow = 0; // 限制最大充電能量,如依照模塊則填上 0
  42. static float LogInfo[2][10]; //DS60-120 add
  43. static int CanFd = -1;
  44. //------------------------------------------------------------------------------
  45. extern void CANReceiver(int fd);
  46. extern void ClearAbnormalStatus_Chademo(uint8_t gun_index);
  47. extern void ClearAbnormalStatus_GB(uint8_t gun_index);
  48. extern void ClearAbnormalStatus_CCS(uint8_t gun_index);
  49. //------------------------------------------------------------------------------
  50. int GetCanFd(void)
  51. {
  52. return CanFd;
  53. }
  54. uint32_t GetTimeoutValue(struct timeval _sour_time)
  55. {
  56. struct timeval _end_time;
  57. gettimeofday(&_end_time, NULL);
  58. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  59. }
  60. int InitCanBus(void)
  61. {
  62. int s0, nbytes;
  63. struct timeval tv;
  64. struct ifreq ifr0;
  65. struct sockaddr_can addr0;
  66. struct can_filter rxfilter[3];
  67. system("/sbin/ip link set can0 down");
  68. system("/sbin/ip link set can0 type can bitrate 500000 restart-ms 100");
  69. system("/sbin/ip link set can0 up");
  70. s0 = socket(PF_CAN, SOCK_RAW, CAN_RAW);
  71. tv.tv_sec = 0;
  72. tv.tv_usec = 10000;
  73. if (setsockopt(s0, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(struct timeval)) < 0) {
  74. log_error("Set SO_RCVTIMEO NG");
  75. }
  76. nbytes = 40960;
  77. if (setsockopt(s0, SOL_SOCKET, SO_RCVBUF, &nbytes, sizeof(int)) < 0) {
  78. log_error("Set SO_RCVBUF NG");
  79. }
  80. nbytes = 40960;
  81. if (setsockopt(s0, SOL_SOCKET, SO_SNDBUF, &nbytes, sizeof(int)) < 0) {
  82. log_error("Set SO_SNDBUF NG");
  83. }
  84. rxfilter[0].can_id = 0x01;
  85. rxfilter[0].can_mask = 0x000000FF;
  86. rxfilter[1].can_id = 0x02;
  87. rxfilter[1].can_mask = 0x000000FF;
  88. rxfilter[2].can_id = 0x01FF;
  89. rxfilter[2].can_mask = 0x00000FFF;
  90. if (setsockopt(s0, SOL_CAN_RAW, CAN_RAW_FILTER,
  91. &rxfilter, sizeof(struct can_filter) * 3) < 0) {
  92. log_error("RX setsockopt CAN_RAW_FILTER failed\r\n");
  93. }
  94. strcpy(ifr0.ifr_name, "can0");
  95. ioctl(s0, SIOCGIFINDEX, &ifr0); /* ifr.ifr_ifindex gets filled with that device's index */
  96. addr0.can_family = AF_CAN;
  97. addr0.can_ifindex = ifr0.ifr_ifindex;
  98. bind(s0, (struct sockaddr *)&addr0, sizeof(addr0));
  99. return s0;
  100. }
  101. float GetMaxChargingVol(uint8_t index)
  102. {
  103. return maxChargingVol[index];
  104. }
  105. float GetMaxCharginigCur(uint8_t index)
  106. {
  107. return maxChargingCur[index];
  108. }
  109. static void SendCommunicationOnly(uint8_t index)
  110. {
  111. struct ChargingInfoData *pDcCharginigInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  112. uint8_t targetID = pDcCharginigInfo->Evboard_id;
  113. if (pSysConfig->TotalConnectorCount == 1 &&
  114. pDcCharginigInfo->Type == _Type_CCS_2 &&
  115. ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  116. targetID += 1;
  117. }
  118. SetChargingPermission(index,
  119. COMMUNICATION,
  120. pDcCharginigInfo->AvailableChargingPower,
  121. 0,
  122. 0,
  123. targetID);
  124. }
  125. static void SendStopOnly(uint8_t index)
  126. {
  127. struct ChargingInfoData *pDcCharginigInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  128. uint8_t targetID = pDcCharginigInfo->Evboard_id;
  129. if (pSysConfig->TotalConnectorCount == 1 &&
  130. pDcCharginigInfo->Type == _Type_CCS_2 &&
  131. ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  132. targetID += 1;
  133. }
  134. SetChargingPermission(index,
  135. STOP,
  136. pDcCharginigInfo->AvailableChargingPower,
  137. 0,
  138. 0,
  139. targetID);
  140. }
  141. static uint8_t GetStopChargingReasonByEvse(uint8_t gunIndex, uint8_t *reason)
  142. {
  143. uint8_t result = NO;
  144. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  145. if (pAlarmCode->AlarmEvents.bits.EmergencyStopTrip == 0x01) {
  146. // 012251
  147. *(reason + 5) = 0;
  148. *(reason + 4) = 1;
  149. *(reason + 3) = 2;
  150. *(reason + 2) = 2;
  151. *(reason + 1) = 5;
  152. *(reason + 0) = 1;
  153. result = YES;
  154. }
  155. if (pDcChargingInfo->Type == _Type_Chademo) {
  156. if (pFaultCode->FaultEvents.bits.ChademoOutputRelayDrivingFault == YES) {
  157. // 011012
  158. *(reason + 5) = 0;
  159. *(reason + 4) = 1;
  160. *(reason + 3) = 1;
  161. *(reason + 2) = 0;
  162. *(reason + 1) = 1;
  163. *(reason + 0) = 2;
  164. result = YES;
  165. } else if (pAlarmCode->AlarmEvents.bits.ChademoOutputUVPFail == YES) {
  166. // 012289
  167. *(reason + 5) = 0;
  168. *(reason + 4) = 1;
  169. *(reason + 3) = 2;
  170. *(reason + 2) = 2;
  171. *(reason + 1) = 8;
  172. *(reason + 0) = 9;
  173. result = YES;
  174. } else if (pAlarmCode->AlarmEvents.bits.ChademoGfdTrip == YES) {
  175. // 012234
  176. *(reason + 5) = 0;
  177. *(reason + 4) = 1;
  178. *(reason + 3) = 2;
  179. *(reason + 2) = 2;
  180. *(reason + 1) = 3;
  181. *(reason + 0) = 4;
  182. result = YES;
  183. }
  184. } else if (pDcChargingInfo->Type == _Type_GB) {
  185. if (pFaultCode->FaultEvents.bits.ChademoOutputRelayDrivingFault == YES) {
  186. // 012290
  187. *(reason + 5) = 0;
  188. *(reason + 4) = 1;
  189. *(reason + 3) = 2;
  190. *(reason + 2) = 2;
  191. *(reason + 1) = 9;
  192. *(reason + 0) = 0;
  193. result = YES;
  194. } else if (pAlarmCode->AlarmEvents.bits.GbGfdTrip == YES) {
  195. // 012236
  196. *(reason + 5) = 0;
  197. *(reason + 4) = 1;
  198. *(reason + 3) = 2;
  199. *(reason + 2) = 2;
  200. *(reason + 1) = 3;
  201. *(reason + 0) = 6;
  202. result = YES;
  203. }
  204. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  205. if (pFaultCode->FaultEvents.bits.CcsOutputRelayDrivingFault == YES) {
  206. // 011014
  207. *(reason + 5) = 0;
  208. *(reason + 4) = 1;
  209. *(reason + 3) = 1;
  210. *(reason + 2) = 0;
  211. *(reason + 1) = 1;
  212. *(reason + 0) = 4;
  213. result = YES;
  214. } else if (pAlarmCode->AlarmEvents.bits.CcsOutputUVPFail == YES) {
  215. // 012288
  216. *(reason + 5) = 0;
  217. *(reason + 4) = 1;
  218. *(reason + 3) = 2;
  219. *(reason + 2) = 2;
  220. *(reason + 1) = 8;
  221. *(reason + 0) = 8;
  222. result = YES;
  223. } else if (pAlarmCode->AlarmEvents.bits.CcsGfdTrip == YES) {
  224. // 012235
  225. *(reason + 5) = 0;
  226. *(reason + 4) = 1;
  227. *(reason + 3) = 2;
  228. *(reason + 2) = 2;
  229. *(reason + 1) = 3;
  230. *(reason + 0) = 5;
  231. result = YES;
  232. }
  233. }
  234. return result;
  235. }
  236. static void setCurrentOutput(void)
  237. {
  238. struct ChargingInfoData *chargingData_1 = NULL;
  239. struct ChargingInfoData *chargingData_2 = NULL;
  240. if (pSysConfig->TotalConnectorCount == 1) {
  241. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  242. //chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  243. if (chargingData_1->FireChargingVoltage <= 500) { //DS60-120 add
  244. chargingData_1->PresentChargingCurrent = 0;
  245. }
  246. } else if (pSysConfig->TotalConnectorCount == 2) {
  247. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  248. chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
  249. if (chargingData_1->FireChargingVoltage <= 500) { //DS60-120 add
  250. chargingData_1->PresentChargingCurrent = 0;
  251. }
  252. if (chargingData_2->FireChargingVoltage <= 500) {
  253. chargingData_2->PresentChargingCurrent = 0;
  254. }
  255. }
  256. }
  257. static void SetPresentChargingOutputCap(void)
  258. {
  259. float pow1 = 0, cur1 = 0;
  260. float pow2 = 0, cur2 = 0;
  261. struct ChargingInfoData *chargingData_1 = NULL;
  262. struct ChargingInfoData *chargingData_2 = NULL;
  263. if (pSysConfig->TotalConnectorCount == 1) {
  264. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  265. chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  266. } else if (pSysConfig->TotalConnectorCount == 2) {
  267. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  268. chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
  269. }
  270. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  271. float vol = 0;
  272. #endif //!defined DD360 && !defined DD360Audi
  273. pow1 = chargingData_1->AvailableChargingPower;
  274. cur1 = chargingData_1->AvailableChargingCurrent;
  275. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  276. vol = chargingData_1->MaximumChargingVoltage;
  277. GetMaxVolAndCurMethod(chargingData_1->Index, &vol, &cur1);
  278. GetMaxPowerMethod(chargingData_1->Index, &pow1);
  279. #endif //!defined DD360 && !defined DD360Audi
  280. //DS60-120 add
  281. if (pow1 <= 0) {
  282. cur1 = 0;
  283. } else {
  284. if (chargingData_1->SystemStatus == S_CHARGING &&
  285. chargingData_1->FireChargingVoltage > 1500) {
  286. float maxCur = 0;
  287. maxCur = (pow1 * 1000) / chargingData_1->FireChargingVoltage;
  288. if (maxCur * 10 <= cur1) {
  289. //log_info("Gun1 -> MaxCharging Current = %f, Cap Current = %f \n", (maxCur * 10), cur1);
  290. cur1 = maxCur * 10;
  291. }
  292. }
  293. }
  294. pow2 = chargingData_2->AvailableChargingPower;
  295. cur2 = chargingData_2->AvailableChargingCurrent;
  296. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  297. vol = chargingData_2->MaximumChargingVoltage;
  298. GetMaxVolAndCurMethod(chargingData_2->Index, &vol, &cur2);
  299. GetMaxPowerMethod(chargingData_2->Index, &pow2);
  300. #endif //!defined DD360 && !defined DD360Audi
  301. //DS60-120 add
  302. if (pow2 <= 0) {
  303. cur2 = 0;
  304. } else {
  305. if (chargingData_2->SystemStatus == S_CHARGING &&
  306. chargingData_2->FireChargingVoltage > 1500) {
  307. float maxCur = 0;
  308. maxCur = (pow2 * 1000) / chargingData_2->FireChargingVoltage;
  309. if (maxCur * 10 <= cur2) {
  310. //log_info("Gun2 -> MaxCharging Current = %f, Cap Current = %f \n", (maxCur * 10), cur2);
  311. cur2 = maxCur * 10;
  312. }
  313. }
  314. }
  315. //DS60-120 add
  316. if ((LogInfo[0][EV_LOG_OUTPUT_CAP_POW] <= pow1 - 5 ||
  317. LogInfo[0][EV_LOG_OUTPUT_CAP_POW] >= pow1 + 5) ||
  318. (LogInfo[0][EV_LOG_OUTPUT_CAP_CUR] <= cur1 - 5 ||
  319. LogInfo[0][EV_LOG_OUTPUT_CAP_CUR] >= cur1 + 5) ||
  320. (LogInfo[1][EV_LOG_OUTPUT_CAP_POW] <= pow2 - 5 ||
  321. LogInfo[1][EV_LOG_OUTPUT_CAP_POW] >= pow2 + 5) ||
  322. (LogInfo[1][EV_LOG_OUTPUT_CAP_CUR] <= cur2 - 5 ||
  323. LogInfo[1][EV_LOG_OUTPUT_CAP_CUR] >= cur2 + 5)
  324. ) {
  325. //log_info("----------------------------------------------------- \n");
  326. log_info("To EV (Real) Power_1 = %.1f, Cur_1 = %.1f, Power_2 = %.1f, Cur_2 = %.1f\r\n",
  327. pow1 / 10, cur1 / 10, pow2 / 10, cur2 / 10);
  328. //log_info("----------------------------------------------------- \n");
  329. LogInfo[0][EV_LOG_OUTPUT_CAP_POW] = pow1;
  330. LogInfo[0][EV_LOG_OUTPUT_CAP_CUR] = cur1;
  331. LogInfo[1][EV_LOG_OUTPUT_CAP_POW] = pow2;
  332. LogInfo[1][EV_LOG_OUTPUT_CAP_CUR] = cur2;
  333. chargingData_1->RealMaxCurrent = cur1;
  334. chargingData_1->RealMaxPower = pow1;
  335. if (pSysConfig->TotalConnectorCount == 2) {
  336. chargingData_2->RealMaxCurrent = cur2;
  337. chargingData_2->RealMaxPower = pow2;
  338. }
  339. }
  340. SetPresentOutputCapacity(pow1, cur1, pow2, cur2);
  341. }
  342. static void GetMaxVolAndCurMethod(uint8_t index, float *vol, float *cur)
  343. {
  344. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index);
  345. if (maxChargingVol[index] != 0 && maxChargingVol[index] <= *vol) {
  346. *vol = maxChargingVol[index];
  347. }
  348. if (maxChargingCur[index] != 0 && maxChargingCur[index] <= *cur) {
  349. *cur = maxChargingCur[index];
  350. }
  351. if (((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE &&
  352. pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  353. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  354. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) &&
  355. pDcChargingInfo->ChargingProfileCurrent >= 0 &&
  356. pDcChargingInfo->ChargingProfileCurrent <= *cur
  357. ) {
  358. *cur = pDcChargingInfo->ChargingProfileCurrent;
  359. }
  360. }
  361. static void SetPresentChargingOutputPower(void)
  362. {
  363. float vol1 = 0, cur1 = 0;
  364. float vol2 = 0, cur2 = 0;
  365. struct ChargingInfoData *chargingData_1 = NULL;
  366. struct ChargingInfoData *chargingData_2 = NULL;
  367. if (pSysConfig->TotalConnectorCount == 1) {
  368. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  369. chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  370. } else if (pSysConfig->TotalConnectorCount == 2) {
  371. chargingData_1 = (struct ChargingInfoData *)GetDcChargingInfoData(0);
  372. chargingData_2 = (struct ChargingInfoData *)GetDcChargingInfoData(1);
  373. }
  374. vol1 = chargingData_1->FireChargingVoltage;
  375. cur1 = (chargingData_1->PresentChargingCurrent * 10);
  376. vol2 = chargingData_2->FireChargingVoltage;
  377. cur2 = (chargingData_2->PresentChargingCurrent * 10);
  378. //DS60-120 add
  379. if ((LogInfo[0][EV_LOG_NOW_OUTPUT_VOL] >= vol1 + CHK_VOL_RANGE) ||
  380. (LogInfo[0][EV_LOG_NOW_OUTPUT_VOL] <= vol1 - CHK_VOL_RANGE) ||
  381. (LogInfo[0][EV_LOG_NOW_OUTPUT_CUR] >= cur1 + CHK_CUR_RANGE) ||
  382. (LogInfo[0][EV_LOG_NOW_OUTPUT_CUR] <= cur1 - CHK_CUR_RANGE) ||
  383. (LogInfo[1][EV_LOG_NOW_OUTPUT_VOL] >= vol2 + CHK_VOL_RANGE) ||
  384. (LogInfo[1][EV_LOG_NOW_OUTPUT_VOL] <= vol2 - CHK_VOL_RANGE) ||
  385. (LogInfo[1][EV_LOG_NOW_OUTPUT_CUR] >= cur2 + CHK_CUR_RANGE) ||
  386. (LogInfo[1][EV_LOG_NOW_OUTPUT_CUR] <= cur2 - CHK_CUR_RANGE)
  387. ) {
  388. log_info("G1 -> Output Vol = %.1f, Output Cur = %.1f -- G2 -> Output Vol = %.1f, Output Cur = %.1f\r\n",
  389. vol1 / 10,
  390. cur1 / 10,
  391. vol2 / 10,
  392. cur2 / 10);
  393. LogInfo[0][EV_LOG_NOW_OUTPUT_VOL] = vol1;
  394. LogInfo[0][EV_LOG_NOW_OUTPUT_CUR] = cur1;
  395. LogInfo[1][EV_LOG_NOW_OUTPUT_VOL] = vol2;
  396. LogInfo[1][EV_LOG_NOW_OUTPUT_CUR] = cur2;
  397. }
  398. //if (_outVol_1 != vol1 ||
  399. // _outCur_1 != cur1 ||
  400. // _outVol_2 != vol2 ||
  401. // _outCur_2 != cur2) {
  402. /*log_info("G1 -> Output Vol = %f, Output Cur = %f -- G2 -> Output Vol = %f, Output Cur = %f \n",
  403. vol1, cur1, vol2, cur2);
  404. */
  405. // _outVol_1 = vol1; _outCur_1 = cur1; _outVol_2 = vol2; _outCur_2 = cur2;
  406. //}
  407. SetPresentOutputPower(vol1, cur1, vol2, cur2);
  408. }
  409. static void checkConnectorOVPState(uint8_t gunIndex)
  410. {
  411. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  412. // 避免槍溫偵測誤判
  413. static uint8_t gunTempAllowCount[2] = {0};
  414. bool isOTP = false;
  415. switch (pDcChargingInfo->Type) {
  416. case _Type_Chademo:
  417. if (ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP) {
  418. isOTP = true;
  419. }
  420. break;
  421. case _Type_CCS_2:
  422. if (ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOTP) {
  423. isOTP = true;
  424. }
  425. break;
  426. case _Type_GB:
  427. if (ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOTP) {
  428. isOTP = true;
  429. }
  430. break;
  431. }
  432. if (ShmDcCommonData->ChillerTempState[gunIndex].StatusBit.ChillerOTP == YES) {
  433. isOTP = true;
  434. }
  435. if (isOTP) {
  436. if (gunTempAllowCount[gunIndex] >= 2) {
  437. pDcChargingInfo->StopChargeFlag = YES;
  438. } else {
  439. gunTempAllowCount[gunIndex] += 1;
  440. }
  441. } else {
  442. gunTempAllowCount[gunIndex] = 0;
  443. }
  444. }
  445. static time_t GetRtcInfoForEpoch(void)
  446. {
  447. struct timeb csuTime;
  448. struct tm *tmCSU;
  449. struct tm t;
  450. time_t result;
  451. ftime(&csuTime);
  452. tmCSU = localtime(&csuTime.time);
  453. t.tm_year = tmCSU->tm_year;
  454. t.tm_mon = tmCSU->tm_mon;
  455. t.tm_mday = tmCSU->tm_mday;
  456. t.tm_hour = tmCSU->tm_hour;
  457. t.tm_min = tmCSU->tm_min;
  458. t.tm_sec = tmCSU->tm_sec;
  459. t.tm_isdst = -1;
  460. result = mktime(&t);
  461. return result;
  462. }
  463. static void FormatVoltageAndCurrent(void)
  464. {
  465. uint8_t gunIndex = 0;
  466. ParsingRatedCur parsingRatedCur = {0};
  467. RateCurInfo *pRatedCurInfo = NULL;
  468. if (RatedCurrentParsing((char *)pSysConfig->ModelName, &parsingRatedCur) != PASS) {
  469. log_error("Parsing rated current failed\r\n");
  470. return;
  471. }
  472. maxChargingPow = parsingRatedCur.Power;
  473. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  474. pRatedCurInfo = (RateCurInfo *)&parsingRatedCur.ParsingInfo[gunIndex];
  475. maxChargingVol[gunIndex] = pRatedCurInfo->Voltage;
  476. maxChargingCur[gunIndex] = pRatedCurInfo->Current;
  477. log_info("Conn %d GunType = %d, MaxVol = %f, MaxCur = %f \n",
  478. gunIndex,
  479. pRatedCurInfo->GunType,
  480. maxChargingVol[gunIndex],
  481. maxChargingCur[gunIndex]);
  482. }
  483. }
  484. int main(int argc, char *argv[])
  485. {
  486. bool chkChademoPermission[2] = {false};
  487. int isContinue = 1;
  488. uint8_t gunIndex = 0;
  489. uint8_t typeIndex = 0;
  490. uint8_t priorityLow = 1;
  491. uint8_t SendErrorCount[2] = { 0, 0};
  492. uint32_t _timeBuf = 0;
  493. uint32_t chargingTime[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY] = {0};
  494. struct timeval _chk_ratingPower_timeout[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  495. struct timeval _chk_chademo_permission_timeout[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  496. time_t rtc = {0};
  497. struct ChargingInfoData *pDcChargingInfo = NULL;
  498. if (CreateAllCsuShareMemory() == FAIL) {
  499. log_error("create share memory error\r\n");
  500. return FAIL;
  501. }
  502. MappingGunChargingInfo("EvComm Task");
  503. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  504. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  505. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  506. pFaultCode = (struct FaultCodeData *)GetShmFaultCodeData();
  507. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  508. ShmCHAdeMOData = (struct CHAdeMOData *)GetShmCHAdeMOData();
  509. ShmGBTData = (struct GBTData *)GetShmGBTData();
  510. ShmCcsData = (struct CcsData *)GetShmCcsData();
  511. CanFd = InitCanBus();
  512. FormatVoltageAndCurrent();
  513. CANReceiver(CanFd);
  514. rtc = GetRtcInfoForEpoch();
  515. while (isContinue) {
  516. for (gunIndex = 0; gunIndex < pSysConfig->TotalConnectorCount; gunIndex++) {
  517. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  518. typeIndex = pDcChargingInfo->type_index;
  519. if (priorityLow == 1) {
  520. // 優先權較低 - 只要有回應即不會再詢問
  521. if (pDcChargingInfo->Type == _Type_Chademo &&
  522. ShmCHAdeMOData->evse[typeIndex].SelfTest_Comp != PASS) {
  523. SyncRtcInfo(gunIndex, pDcChargingInfo->Evboard_id, (int)rtc);
  524. GetFirmwareVersion(gunIndex, pDcChargingInfo->Evboard_id);
  525. } else if (pDcChargingInfo->Type == _Type_GB &&
  526. ShmGBTData->evse[typeIndex].SelfTest_Comp != PASS) {
  527. SyncRtcInfo(gunIndex, pDcChargingInfo->Evboard_id, (int)rtc);
  528. GetFirmwareVersion(gunIndex, pDcChargingInfo->Evboard_id);
  529. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  530. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121 &&
  531. ShmCcsData->V2GMessage_DIN70121[typeIndex].SelfTest_Comp != PASS) {
  532. SyncRtcInfo(gunIndex, pDcChargingInfo->Evboard_id, (int)rtc);
  533. GetFirmwareVersion(gunIndex, pDcChargingInfo->Evboard_id);
  534. }
  535. }
  536. // 固定要取得的資訊 : 1.槍鎖狀態, 2."Connector 1" 溫度, 3."Connector 2" 溫度, 4.Pilot Voltage
  537. //log_info("GetMiscellaneousInfo. index = %d, Eid = %d \n", gunIndex, pDcChargingInfo->Evboard_id);
  538. GetMiscellaneousInfo(gunIndex,
  539. pDcChargingInfo->RelayK1K2Status,
  540. pDcChargingInfo->PresentChargedEnergy,
  541. (pDcChargingInfo->PresentChargingVoltage * 10),
  542. pDcChargingInfo->Evboard_id);
  543. checkConnectorOVPState(gunIndex);
  544. }
  545. switch (pDcChargingInfo->SystemStatus) {
  546. case S_IDLE:
  547. case S_RESERVATION:
  548. if (pDcChargingInfo->Type == _Type_Chademo) {
  549. ClearAbnormalStatus_Chademo(gunIndex);
  550. if (pSysInfo->PageIndex == _LCM_WAIT_FOR_PLUG) {
  551. if (!chkChademoPermission[gunIndex]) {
  552. chkChademoPermission[gunIndex] = true;
  553. gettimeofday(&_chk_chademo_permission_timeout[gunIndex], NULL);
  554. SendCommunicationOnly(gunIndex);
  555. } else {
  556. _timeBuf = GetTimeoutValue(_chk_chademo_permission_timeout[gunIndex]);
  557. if (_timeBuf < 0) {
  558. gettimeofday(&_chk_chademo_permission_timeout[gunIndex], NULL);
  559. } else {
  560. if (_timeBuf / 1000 > 10000) {
  561. SendCommunicationOnly(gunIndex);
  562. gettimeofday(&_chk_chademo_permission_timeout[gunIndex], NULL);
  563. }
  564. }
  565. }
  566. } else if (chkChademoPermission[gunIndex]) {
  567. chkChademoPermission[gunIndex] = false;
  568. SendStopOnly(gunIndex);
  569. }
  570. if (ShmDcCommonData->ConnectErrList[gunIndex].GunBits.ChaConnectOTP == NO) {
  571. pDcChargingInfo->StopChargeFlag = NO;
  572. }
  573. } else if (pDcChargingInfo->Type == _Type_GB) {
  574. ClearAbnormalStatus_GB(gunIndex);
  575. if (ShmDcCommonData->ConnectErrList[gunIndex].GunBits.GBTConnectOTP == NO) {
  576. pDcChargingInfo->StopChargeFlag = NO;
  577. }
  578. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  579. ClearAbnormalStatus_CCS(gunIndex);
  580. if (ShmDcCommonData->ConnectErrList[gunIndex].GunBits.CCSConnectOTP == NO) {
  581. pDcChargingInfo->StopChargeFlag = NO;
  582. }
  583. }
  584. if (priorityLow == 1) {
  585. pDcChargingInfo->PresentChargedEnergy = 0;
  586. pDcChargingInfo->PresentChargingPower = 0;
  587. pDcChargingInfo->GroundFaultStatus = GFD_WAIT;
  588. pDcChargingInfo->RealRatingPower = 0;
  589. pDcChargingInfo->StopChargeFlag = NO;
  590. pDcChargingInfo->NormalStopChargeFlag = NO;//DS60-120 add
  591. pDcChargingInfo->ChargingFee = 0.0;
  592. pDcChargingInfo->EvBatterySoc = 0;
  593. pDcChargingInfo->EvBatteryStartSoc = 0; //DS60-120 add
  594. pDcChargingInfo->EvBatteryMaxVoltage = 0; //DS60-120 add
  595. pDcChargingInfo->ChargingProfilePower = -1; //DS60-120 add
  596. pDcChargingInfo->ChargingProfileCurrent = -1; //DS60-120 add
  597. if (pSysInfo->MainChargingMode == _MAIN_CHARGING_MODE_MAX) { //DS60-120 add
  598. pDcChargingInfo->PresentChargingVoltage = 0;
  599. pDcChargingInfo->PresentChargingCurrent = 0;
  600. pDcChargingInfo->EvBatteryMaxVoltage = 0;
  601. }
  602. chargingTime[gunIndex] = 0;
  603. //maxChargingCur[gunIndex] = pSysConfig->MaxChargingCurrent * 10;
  604. //maxChargingPow = (pSysConfig->MaxChargingPower * 10);
  605. //DS60-120 add
  606. SendErrorCount[gunIndex] = 0;
  607. //maxChargingPow = pSysConfig->MaxChargingPower * 10;
  608. // ShmPsuData->SystemAvailablePower 已是 * 10
  609. //maxChargingPow = ShmPsuData->SystemAvailablePower;
  610. if (pSysConfig->MaxChargingPower * 10 != 0 &&
  611. pSysConfig->MaxChargingPower * 10 < maxChargingPow) {
  612. maxChargingPow = pSysConfig->MaxChargingPower * 10;
  613. }
  614. LogInfo[gunIndex][EV_LOG_EVSE_MAX_VOL] = 0;
  615. LogInfo[gunIndex][EV_LOG_EVSE_MAX_CUR] = 0;
  616. LogInfo[gunIndex][EV_LOG_MAX_BATT_VOL] = 0;
  617. LogInfo[gunIndex][EV_LOG_SOC] = 0;
  618. SetPresentChargingOutputPower();
  619. }
  620. break;
  621. case S_PREPARNING:
  622. chkChademoPermission[gunIndex] = false; //DS60-120 add
  623. // 設定當前輸出
  624. SetPresentChargingOutputPower();
  625. pDcChargingInfo->PowerConsumption = 0;
  626. break;
  627. case S_PREPARING_FOR_EV:
  628. // 開始確認車端是否同意開始充電 : 1.SOC, 2.Target Vol, 3.Target Cur, 4.Charging remaining time
  629. GetOutputReq(gunIndex, pDcChargingInfo->Evboard_id);
  630. // log_info("PresentChargingVoltage = %f \n", pDcChargingInfo->PresentChargingVoltage);
  631. // log_info("PresentChargingCurrent = %f \n", pDcChargingInfo->PresentChargingCurrent);
  632. // log_info("AvailableChargingPower = %f \n", pDcChargingInfo->AvailableChargingPower);
  633. // log_info("AvailableChargingCurrent = %f \n", pDcChargingInfo->AvailableChargingCurrent);
  634. // log_info("MaximumChargingVoltage = %f \n", pDcChargingInfo->MaximumChargingVoltage);
  635. // 設定當前輸出
  636. SetPresentChargingOutputPower();
  637. if (priorityLow == 1) {
  638. float maxVol, maxCur;
  639. // 樁端輸出能力
  640. maxVol = pDcChargingInfo->MaximumChargingVoltage;
  641. maxCur = pDcChargingInfo->AvailableChargingCurrent;
  642. GetMaxVolAndCurMethod(gunIndex, &maxVol, &maxCur);
  643. //DS60-120 add
  644. if (LogInfo[gunIndex][EV_LOG_EVSE_MAX_VOL] != maxVol ||
  645. LogInfo[gunIndex][EV_LOG_EVSE_MAX_CUR] != maxCur) {
  646. LogInfo[gunIndex][EV_LOG_EVSE_MAX_VOL] = maxVol;
  647. LogInfo[gunIndex][EV_LOG_EVSE_MAX_CUR] = maxCur;
  648. log_info("To EV_%d Max_Vol = %.1f, Cap_Cur = %.1f, Cap_Pow = %.1f \n",
  649. gunIndex, maxVol / 10, maxCur / 10, pDcChargingInfo->AvailableChargingPower / 10);
  650. }
  651. //log_info("To EV_%d Max_Vol = %f, Cap_Cur = %f, Cap_Pow = %f \n",
  652. // gunIndex, maxVol, maxCur, pDcChargingInfo->AvailableChargingPower);
  653. pDcChargingInfo->RealMaxVoltage = maxVol;
  654. SetChargingPermission(gunIndex,
  655. START,
  656. pDcChargingInfo->AvailableChargingPower,
  657. maxCur,
  658. maxVol,
  659. pDcChargingInfo->Evboard_id);
  660. // 取得車端電池資訊 : 1.AC or DC ? 2.Total battery cap, 3.Max battery vol, 4.Max battery cur
  661. GetEvBatteryInfo(gunIndex, pDcChargingInfo->Evboard_id);
  662. }
  663. gettimeofday(&_chk_ratingPower_timeout[gunIndex], NULL);
  664. break;
  665. case S_PREPARING_FOR_EVSE:
  666. case S_CCS_PRECHARGE_ST0:
  667. case S_CCS_PRECHARGE_ST1:
  668. // 開始確認車端是否同意開始充電
  669. GetOutputReq(gunIndex, pDcChargingInfo->Evboard_id);
  670. // 設定當前輸出
  671. SetPresentChargingOutputPower();
  672. if (priorityLow % 5 == 1) {
  673. // 取得車端電池資訊 : 1.AC or DC ? 2.Total battery cap, 3.Max battery vol, 4.Max battery cur
  674. GetEvBatteryInfo(gunIndex, pDcChargingInfo->Evboard_id); //DS60-120 add
  675. // 樁端輸出能力改變
  676. SetPresentChargingOutputCap();
  677. }
  678. //DS60-120 add
  679. if (LogInfo[gunIndex][EV_LOG_MAX_BATT_VOL] != pDcChargingInfo->EvBatteryMaxVoltage) {
  680. LogInfo[gunIndex][EV_LOG_MAX_BATT_VOL] = pDcChargingInfo->EvBatteryMaxVoltage;
  681. log_info("index = %d, Ev Maximum Battery Voltage = %f \n",
  682. gunIndex,
  683. pDcChargingInfo->EvBatteryMaxVoltage);
  684. }
  685. if (LogInfo[gunIndex][EV_LOG_SOC] != pDcChargingInfo->EvBatterySoc) {
  686. LogInfo[gunIndex][EV_LOG_SOC] = pDcChargingInfo->EvBatterySoc;
  687. log_info("index = %d, SOC = %d \n",
  688. gunIndex,
  689. pDcChargingInfo->EvBatterySoc);
  690. }
  691. // 持續通知 Isolation 測試狀態
  692. if (priorityLow == 1) {
  693. // 拉 500 V 如果在一秒鐘內 GFD 都符合則 PASS
  694. // if (_chargingData[_index]->FireChargingVoltage >= 3500)
  695. // pDcChargingInfo->GroundFaultStatus = GFD_PASS;
  696. //log_info("To EV_%d GFD = %d \n", _index,pDcChargingInfo->GroundFaultStatus);
  697. //if(_chargingData[_index]->GroundFaultStatus != GFD_WAIT)
  698. {
  699. //if ((GetTimeoutValue(_derating_time) / 1000) > 1000)
  700. uint8_t _result = pDcChargingInfo->GroundFaultStatus;
  701. // GB & Chademo ~ Warning 也先算 Pass,因為 CCS 認證會驗 Warning 故不可更動
  702. if (pDcChargingInfo->Type == _Type_Chademo ||
  703. pDcChargingInfo->Type == _Type_GB) {
  704. if (_result == GFD_WARNING) {
  705. _result = GFD_PASS;
  706. }
  707. }
  708. if (_result == GFD_WARNING || _result == GFD_PASS) {
  709. if (((GetTimeoutValue(_chk_ratingPower_timeout[gunIndex]) / 1000) > 12000 &&
  710. pDcChargingInfo->RealRatingPower > 0) ||
  711. (GetTimeoutValue(_chk_ratingPower_timeout[gunIndex]) / 1000) > 14000) {
  712. //log_info("**********EvComm : gunIndex= %d, RealRatingPower = %d \n",
  713. // gunIndex,pDcChargingInfo->RealRatingPower);
  714. //_result = GFD_PASS;
  715. //DS60-120 add
  716. if (LogInfo[gunIndex][EV_LOG_REAL_CAP_POW] != pDcChargingInfo->RealRatingPower) {
  717. LogInfo[gunIndex][EV_LOG_REAL_CAP_POW] = pDcChargingInfo->RealRatingPower;
  718. log_info("Conn %d, RealRatingPower = %d \n",
  719. gunIndex,
  720. pDcChargingInfo->RealRatingPower);
  721. }
  722. } else {
  723. _result = GFD_WAIT;
  724. }
  725. }
  726. SetIsolationStatus(gunIndex, _result, pDcChargingInfo->Evboard_id);
  727. }
  728. if (pDcChargingInfo->SystemStatus == S_CCS_PRECHARGE_ST0 &&
  729. pDcChargingInfo->PrechargeStatus == PRECHARGE_READY) {
  730. SetEvsePrechargeInfo(gunIndex, PRECHARGE_PRERELAY_PASS, pDcChargingInfo->Evboard_id);
  731. }
  732. }
  733. break;
  734. case S_CHARGING:
  735. // 計算 Power
  736. pDcChargingInfo->PresentChargingPower =
  737. ((float)((pDcChargingInfo->PresentChargingVoltage) *
  738. (pDcChargingInfo->PresentChargingCurrent)) / 1000);
  739. //DS60-120 remove
  740. if (chargingTime[gunIndex] == 0 ||
  741. chargingTime[gunIndex] > pDcChargingInfo->PresentChargedDuration) {
  742. chargingTime[gunIndex] = pDcChargingInfo->PresentChargedDuration;
  743. } else {
  744. int passTime = pDcChargingInfo->PresentChargedDuration - chargingTime[gunIndex];
  745. if (passTime > 0) {
  746. float changingPow = (pDcChargingInfo->PresentChargingPower) * passTime / 3600;
  747. if (pSysConfig->BillingData.isBilling) {
  748. pDcChargingInfo->ChargingFee += changingPow * pSysConfig->BillingData.Cur_fee;
  749. }
  750. pDcChargingInfo->PresentChargedEnergy += changingPow;
  751. pDcChargingInfo->PowerConsumption += changingPow;
  752. chargingTime[gunIndex] = pDcChargingInfo->PresentChargedDuration;
  753. }
  754. }
  755. // 開始確認車端是否同意開始充電
  756. GetOutputReq(gunIndex, pDcChargingInfo->Evboard_id);
  757. // 設定當前輸出
  758. SetPresentChargingOutputPower();
  759. // for test end
  760. if (priorityLow % 5 == 0) {
  761. // 樁端輸出能力改變
  762. SetPresentChargingOutputCap();
  763. }
  764. if ((pDcChargingInfo->GroundFaultStatus == GFD_FAIL) ||
  765. (pDcChargingInfo->Type == _Type_CCS_2)) {
  766. SetIsolationStatus(gunIndex, pDcChargingInfo->GroundFaultStatus, pDcChargingInfo->Evboard_id);
  767. }
  768. /*
  769. else if (pDcChargingInfo->Type == _Type_CCS_2) {
  770. SetIsolationStatus(gunIndex, pDcChargingInfo->GroundFaultStatus, pDcChargingInfo->Evboard_id);
  771. }*/
  772. // GFD 失敗再通知
  773. if (priorityLow == 1) {
  774. if (pDcChargingInfo->Type == _Type_CCS_2 &&
  775. pDcChargingInfo->PrechargeStatus == PRECHARGE_READY) {
  776. SetEvsePrechargeInfo(gunIndex, PRECHARGE_CHARELAY_PASS, pDcChargingInfo->Evboard_id);
  777. }
  778. }
  779. break;
  780. case S_ALARM:
  781. case S_TERMINATING:
  782. // 設定當前輸出
  783. setCurrentOutput();
  784. SetPresentChargingOutputPower();
  785. // 槍鎖還在,則代表是樁端要求的停止
  786. if (pDcChargingInfo->GunLocked == START ||
  787. pDcChargingInfo->Type == _Type_CCS_2) {
  788. uint8_t normalStop = 0x01;
  789. uint8_t stopReason[6] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
  790. if (GetStopChargingReasonByEvse(gunIndex, stopReason)) {
  791. normalStop = 0x02;
  792. }
  793. EvseStopChargingEvent(normalStop, stopReason, pDcChargingInfo->Evboard_id);
  794. SendErrorCount[gunIndex] += 1; //DS60-120 add
  795. }
  796. if (pDcChargingInfo->Type == _Type_CCS_2) {
  797. SetIsolationStatus(gunIndex, pDcChargingInfo->GroundFaultStatus, pDcChargingInfo->Evboard_id);
  798. }
  799. GetOutputReq(gunIndex, pDcChargingInfo->Evboard_id);
  800. //DS60-120 add
  801. if (pDcChargingInfo->SystemStatus == S_ALARM) {
  802. if (priorityLow == 1) {
  803. float maxVol, maxCur;
  804. // 樁端輸出能力
  805. maxVol = pDcChargingInfo->MaximumChargingVoltage;
  806. maxCur = pDcChargingInfo->AvailableChargingCurrent;
  807. GetMaxVolAndCurMethod(gunIndex, &maxVol, &maxCur);
  808. SetChargingPermission(gunIndex,
  809. STOP,
  810. pDcChargingInfo->AvailableChargingPower,
  811. maxCur,
  812. maxVol,
  813. pDcChargingInfo->Evboard_id);
  814. }
  815. }
  816. break;
  817. case S_COMPLETE:
  818. // 設定當前輸出
  819. SetPresentChargingOutputPower();
  820. if (priorityLow == 1) {
  821. float maxVol, maxCur;
  822. // 樁端輸出能力
  823. maxVol = pDcChargingInfo->MaximumChargingVoltage;
  824. maxCur = pDcChargingInfo->AvailableChargingCurrent;
  825. GetMaxVolAndCurMethod(gunIndex, &maxVol, &maxCur);
  826. SetChargingPermission(gunIndex,
  827. STOP,
  828. pDcChargingInfo->AvailableChargingPower,
  829. maxCur,
  830. maxVol,
  831. pDcChargingInfo->Evboard_id);
  832. //DS60-120 add
  833. //if (pDcChargingInfo->EvBatterySoc >= 100) {
  834. // //滿電,則直接清掉錯誤
  835. // if (pDcChargingInfo->Type == _Type_Chademo) {
  836. // ClearAbnormalStatus_Chademo(gunIndex);
  837. // } else if (pDcChargingInfo->Type == _Type_GB) {
  838. // ClearAbnormalStatus_GB(gunIndex);
  839. // } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  840. // ClearAbnormalStatus_CCS(gunIndex);
  841. // }
  842. //}
  843. }
  844. break;
  845. }//switch
  846. }//for
  847. priorityLow >= 20 ? priorityLow = 1 : priorityLow++;
  848. usleep(50000);
  849. }//while
  850. return 0;
  851. }