Module_EvTxComm.c 40 KB

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