Module_EvTxComm.c 50 KB

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