Module_EvRxComm.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  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 <sys/stat.h>
  8. #include <linux/can.h>
  9. #include <linux/can/raw.h>
  10. #include "../Config.h"
  11. #include "../Log/log.h"
  12. #include "../Define/define.h"
  13. #include "../ShareMemory/shmMem.h"
  14. #include "Ev_Comm.h"
  15. #include "Module_EvComm.h"
  16. //------------------------------------------------------------------------------
  17. static struct SysConfigData *pSysConfig = NULL;
  18. static struct SysInfoData *pSysInfo = NULL;
  19. static struct WARNING_CODE_INFO *pSysWarning = NULL;
  20. static struct AlarmCodeData *pAlarmCode = NULL;
  21. static struct CHAdeMOData *ShmCHAdeMOData = NULL;
  22. static struct GBTData *ShmGBTData = NULL;
  23. static struct CcsData *ShmCcsData = NULL;
  24. static struct FanModuleData *ShmFanModuleData = NULL;
  25. static DcCommonInfo *ShmDcCommonData = NULL;
  26. //------------------------------------------------------------------------------
  27. extern bool AbnormalStopAnalysis(uint8_t gun_index, uint8_t *errCode);
  28. //------------------------------------------------------------------------------
  29. /*static uint8_t getMaxConnectTempAndChiller(uint8_t headTemp1, uint8_t headTemp2,
  30. uint8_t chillerTemp1, uint8_t chillerTemp2)
  31. {
  32. uint8_t i = 0;
  33. uint8_t tempSource[4] = {headTemp1, headTemp2, chillerTemp1, chillerTemp2};
  34. uint8_t maxTemp = 0;
  35. if (headTemp1 == UNDEFINED_TEMP &&
  36. headTemp2 == UNDEFINED_TEMP &&
  37. chillerTemp1 == UNDEFINED_TEMP &&
  38. chillerTemp2 == UNDEFINED_TEMP) {
  39. return UNDEFINED_TEMP;
  40. }
  41. //先取得第一個非UNDEFINED_TEMP的值
  42. for (i = 0; i < (sizeof(tempSource) / sizeof(uint8_t)); i++) {
  43. if (tempSource[i] != UNDEFINED_TEMP) {
  44. maxTemp = tempSource[i];
  45. break;
  46. }
  47. }
  48. //找最大的溫度值
  49. for (i = 0; i < (sizeof(tempSource) / sizeof(uint8_t)); i++) {
  50. if (tempSource[i] != UNDEFINED_TEMP) {
  51. if (maxTemp < tempSource[i]) {
  52. maxTemp = tempSource[i];
  53. }
  54. }
  55. }
  56. return maxTemp;
  57. }
  58. */
  59. static uint8_t getMaxConnectTemp(uint8_t headTemp1, uint8_t headTemp2)
  60. {
  61. uint8_t maxTemp = 0;
  62. if (headTemp1 == UNDEFINED_TEMP &&
  63. headTemp2 == UNDEFINED_TEMP) {
  64. return UNDEFINED_TEMP;
  65. }
  66. if (headTemp1 != UNDEFINED_TEMP) {
  67. maxTemp = headTemp1;
  68. } else {
  69. headTemp1 = 0;
  70. }
  71. if (headTemp2 != UNDEFINED_TEMP) {
  72. if (headTemp2 > headTemp1) {
  73. maxTemp = headTemp2;
  74. }
  75. }
  76. return maxTemp;
  77. }
  78. static float ReadAdcVolt(uint8_t AdcChannel)
  79. {
  80. //AIN0=CCS GUN Temp 1
  81. //AIN1=CCS GUN Temp 2
  82. //AIN2=CCS_Proximity/2
  83. //AIN3=pilot voltage
  84. int fd = -1;
  85. uint8_t str[64] = {0};
  86. uint8_t AdcValue[8] = {'\0'};
  87. if (AdcChannel > 7) {
  88. return -1;
  89. }
  90. sprintf((char *)str, "/sys/bus/iio/devices/iio\:device0/in_voltage%d_raw", AdcChannel);
  91. fd = open((char *)str, O_RDONLY);
  92. read(fd, AdcValue, 4);
  93. close(fd);
  94. return (1.8 * atoi((char *)&AdcValue[0])) / 4095;
  95. //return (1.8 * atoi((char *)&AdcValue)) / 4095;
  96. }
  97. static void getChillerTemperature(ChillerTemp *chillerTemp)
  98. {
  99. uint8_t i = 0;
  100. float adcVoltage = 0.0;
  101. ChillerTemp *pChillerTemp = (ChillerTemp *)chillerTemp;
  102. for (i = 0; i < 2; i++) {
  103. adcVoltage = 0.0;
  104. adcVoltage = ReadAdcVolt(i);
  105. if ((adcVoltage <= 0.9) && (adcVoltage >= 0.8)) { //0 ~ -40
  106. pChillerTemp->Temp[i] = ((adcVoltage - 0.908) * 500) + 60;
  107. //log_info("1 adcVoltage = %f", (adcVoltage - 0.9) * 500);
  108. } else if ((adcVoltage <= 1.07) && (adcVoltage > 0.9)) {
  109. pChillerTemp->Temp[i] = ((adcVoltage - 0.91) * 705.88) + 60;
  110. //log_info("2 adcVoltage = %f", (adcVoltage - 0.9) * 500);
  111. } else {
  112. pChillerTemp->Temp[i] = 195;
  113. }
  114. /*CcsConnectorTemp1 = ReadAdcVolt(i);
  115. if ((CcsConnectorTemp1 <= 0.9) && (CcsConnectorTemp1 >= 0.8)) { //0 ~ -40
  116. CcsConnectorTemp1 = (CcsConnectorTemp1 - 0.9) * 500;
  117. } else if ((CcsConnectorTemp1 <= 1.07) && (CcsConnectorTemp1 > 0.9)) {
  118. CcsConnectorTemp1 = (CcsConnectorTemp1 - 0.9) * 705.88;
  119. } else {
  120. CcsConnectorTemp1 = 195; //not available
  121. }
  122. CcsConnectorTemp |= ((unsigned int)(CcsConnectorTemp1 + 60) & 0xFF) << (i * 8); //0x00(-60)~0xFE(194)
  123. */
  124. }
  125. }
  126. static void AddrAssignment(uint8_t *data)
  127. {
  128. uint8_t target_number[8];
  129. uint8_t index = 0x00;
  130. struct ChargingInfoData *pDcChargingInfo = NULL;
  131. memcpy(target_number, data, sizeof(target_number));
  132. index = *(data + 4);
  133. if (pSysConfig->TotalConnectorCount == 1) {
  134. index = 0x01;
  135. }
  136. //if (CheckUniqNumber(index)) {
  137. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index - 1);
  138. //DS60-120 add
  139. if (pDcChargingInfo->Type == _Type_Chademo) {
  140. log_info("Set EV board info : (Chademo) TargetAddr = %d \n", index);
  141. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  142. log_info("Set EV board info : (CCS) TargetAddr = %d \n", index);
  143. } else if (pDcChargingInfo->Type == _Type_GB) {
  144. log_info("Set EV board info : (GB) TargetAddr = %d \n", index);
  145. }
  146. //log_info("EV board id = %x \n", index); //DS60-120 remove
  147. //log_info("target_number[0] = %x \n", target_number[0]);
  148. //log_info("target_number[1] = %x \n", target_number[1]);
  149. //log_info("target_number[2] = %x \n", target_number[2]);
  150. //log_info("target_number[3] = %x \n", target_number[3]);
  151. //log_info("target_number[4] = %x \n", target_number[4]);
  152. log_info("SetTargetAddr = %d, type = %d \n", index, pDcChargingInfo->Type);
  153. SetTargetAddr(target_number, index);
  154. //}
  155. }
  156. void CANReceiver(int fd)
  157. {
  158. pid_t canRecPid;
  159. canRecPid = fork();
  160. if (canRecPid < 0) {
  161. log_error("Create CAN Bus receive task failed\r\n");
  162. return;
  163. }
  164. if (canRecPid == 0) {
  165. int isContinue = 1;
  166. int nbytes;
  167. int intCmd;
  168. uint8_t _index = 0;
  169. uint8_t recvID = 0;
  170. uint8_t targetGun = 0x00;
  171. uint8_t gunTypeIndex = 0;
  172. uint8_t ver[16] = {0};
  173. struct can_frame frame;
  174. ChillerTemp chiilerTemp = {0};
  175. struct ChargingInfoData *pDcChargingInfo = NULL;
  176. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  177. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  178. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  179. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  180. ShmCHAdeMOData = (struct CHAdeMOData *)GetShmCHAdeMOData();
  181. ShmGBTData = (struct GBTData *)GetShmGBTData();
  182. ShmCcsData = (struct CcsData *)GetShmCcsData();
  183. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  184. ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();
  185. log_info("Module_EvRXComm Child's PID is %d\r\n", getpid());
  186. while (isContinue) {
  187. memset(&frame, 0, sizeof(struct can_frame));
  188. nbytes = read(fd, &frame, sizeof(struct can_frame));
  189. if (nbytes <= 0) {
  190. usleep(10000);
  191. continue;
  192. }
  193. recvID = 0;
  194. targetGun = 0x00;
  195. intCmd = (int) (frame.can_id & CAN_EFF_MASK);
  196. if (intCmd == ADDRESS_REQ) {
  197. //ShmDcCommonData->CcsVersion = _CCS_VERSION_CHECK_TAG_V013S0;
  198. AddrAssignment(frame.data);
  199. continue;
  200. }
  201. intCmd = (int) (frame.can_id & CAN_EFF_MASK & 0xFFFFFF00);
  202. recvID = ((uint8_t) (frame.can_id & 0x000000FF)); // 0x01 or 0x02
  203. for (_index = 0; _index < pSysConfig->TotalConnectorCount; _index++) { // 假設有找到回應的 Index
  204. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  205. //if (gun_count == 1 &&
  206. // _chargingData[_index]->Type == _Type_CCS_2 &&
  207. // ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  208. // target -= 1;
  209. //}
  210. if (pDcChargingInfo->Evboard_id == recvID) {
  211. targetGun = _index;
  212. break;
  213. }
  214. }
  215. if ((targetGun < 0) || (targetGun >= CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)) {
  216. log_info("EvComm (CANReceiver) : Target index = %x is < 0 or > QUANTITY \n", targetGun);
  217. usleep(10000);
  218. continue;
  219. }
  220. //else if (gun_count == 1 && targetGun == 0 && findIndex == 1 &&
  221. // ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  222. // // 這樣的條件下~ 也是單槍 CCS 舊版本的狀況 : 因為舊版 CCS 不會 timeout, then send request id
  223. // ShmDcCommonData->CcsVersion = _CCS_VERSION_CHECK_TAG_V013S0;
  224. //}
  225. if (intCmd == 256) {
  226. log_info("EvComm command = 256");
  227. usleep(10000);
  228. continue;
  229. }
  230. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(targetGun);
  231. gunTypeIndex = pDcChargingInfo->type_index;
  232. switch (intCmd) {
  233. case NOTIFICATION_EV_STATUS:
  234. if (pDcChargingInfo->ConnectorPlugIn != frame.data[0]) {
  235. if (frame.data[0] == PLUG) {
  236. log_info("Conn %d, Plugin. \n", targetGun);
  237. } else if (frame.data[0] == UNPLUG) {
  238. log_info("Conn %d, Unplug. \n", targetGun);
  239. } else {
  240. log_info("Conn %d, None Check. (%d) \n", targetGun, frame.data[0]);
  241. }
  242. }
  243. pDcChargingInfo->ConnectorPlugIn = frame.data[0];
  244. pDcChargingInfo->PilotVoltage = frame.data[1];
  245. //log_info("index = %d, ConnectorPlugIn = %x, data[0] = %x \n",
  246. // targetGun,
  247. // pDcChargingInfo->ConnectorPlugIn,
  248. // frame.data[0]);
  249. //log_info("ConnectorPlugIn = %x \n", (-120 + frame.data[1]) / 10);
  250. break;
  251. case ACK_EV_FW_VERSION:
  252. memset(ver, 0, sizeof(ver));
  253. if (pDcChargingInfo->Type == _Type_Chademo) {
  254. memcpy(ver, frame.data, frame.can_dlc);
  255. memcpy(ShmCHAdeMOData->evse[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  256. ShmCHAdeMOData->evse[gunTypeIndex].SelfTest_Comp = PASS;
  257. //log_info("chademo ver. : %s\n", ShmCHAdeMOData->evse[gunTypeIndex].version);
  258. } else if (pDcChargingInfo->Type == _Type_GB) {
  259. memcpy(ver, frame.data, frame.can_dlc);
  260. memcpy(ShmGBTData->evse[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  261. ShmGBTData->evse[gunTypeIndex].SelfTest_Comp = PASS;
  262. //log_info("gbt ver. : %s\n", ShmGBTData->evse[gunTypeIndex].version);
  263. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  264. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  265. memcpy(ver, frame.data, frame.can_dlc); //DS60-120 add
  266. //for (uint8_t _vCount = 0, _vPoint = 0; _vCount < frame.can_dlc; _vCount++) {//DS60-120 remove
  267. /*if (_vCount % 2 == 0 && _vCount != 0)
  268. {
  269. ver[_vCount + _vPoint] = 0x2E;
  270. _vPoint++;
  271. }*/
  272. //ver[_vCount + _vPoint] = frame.data[_vCount];
  273. //}
  274. memcpy(&ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  275. ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].SelfTest_Comp = PASS;
  276. //log_info("CCS FW = %s \n", ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].version);
  277. }
  278. }
  279. if (targetGun == 0) {
  280. memset(pSysInfo->Connector1FwRev,
  281. 0,
  282. sizeof(pSysInfo->Connector1FwRev));
  283. memcpy(pSysInfo->Connector1FwRev, ver, ARRAY_SIZE(ver));
  284. } else if (targetGun == 1) {
  285. memset(pSysInfo->Connector2FwRev,
  286. 0,
  287. sizeof(pSysInfo->Connector2FwRev));
  288. memcpy(pSysInfo->Connector2FwRev, ver, ARRAY_SIZE(ver));
  289. }
  290. break;
  291. case ACK_EV_HW_VERSION:
  292. //log_info("Get EV HW = %s \n", frame.data);
  293. break;
  294. case ACK_GET_OUTPUT_REQ:
  295. //DS60-120 add
  296. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EV &&
  297. pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  298. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  299. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  300. ) {
  301. if (pDcChargingInfo->EvBatteryStartSoc <= 0) {
  302. pDcChargingInfo->EvBatteryStartSoc = frame.data[1];
  303. }
  304. if (frame.data[1] > pDcChargingInfo->EvBatterySoc) {
  305. pDcChargingInfo->EvBatterySoc = frame.data[1];
  306. }
  307. }
  308. //pDcChargingInfo->EvBatterySoc = frame.data[1]; //DS60-120 remove
  309. //Jerry add set voltage limit
  310. pDcChargingInfo->EvBatterytargetVoltage = (float)((frame.data[3] << 8) + frame.data[2]) / 10;
  311. if (pDcChargingInfo->EvBatterytargetVoltage > (GetMaxChargingVol(targetGun) * 0.1)) {
  312. pDcChargingInfo->EvBatterytargetVoltage = (GetMaxChargingVol(targetGun) * 0.1);
  313. }
  314. //printf("id = %d, EvBatterytargetVoltage = %.2f\r\n", targetGun, pDcChargingInfo->EvBatterytargetVoltage);
  315. //Jerry add set currency limit
  316. pDcChargingInfo->EvBatterytargetCurrent = (float)((frame.data[5] << 8) + frame.data[4]) / 10;
  317. if (pDcChargingInfo->EvBatterytargetCurrent > (GetMaxCharginigCur(targetGun) * 0.1)) {
  318. pDcChargingInfo->EvBatterytargetCurrent = (GetMaxCharginigCur(targetGun) * 0.1);
  319. }
  320. //printf("id = %d, EvBatterytargetCurrent = %.2f\r\n", targetGun, pDcChargingInfo->EvBatterytargetCurrent);
  321. pDcChargingInfo->RemainChargingDuration = ((short) frame.data[7] << 8) + (short) frame.data[6];
  322. //printf("RemainChargingDuration = %d\r\n", pDcChargingInfo->RemainChargingDuration);
  323. if (pDcChargingInfo->Type == _Type_Chademo) {
  324. //if (ShmCHAdeMOData->ev[gunTypeIndex].EvDetection != frame.data[0])
  325. {
  326. ShmCHAdeMOData->ev[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  327. }
  328. ShmCHAdeMOData->ev[gunTypeIndex].EvDetection = frame.data[0];
  329. ShmCHAdeMOData->ev[gunTypeIndex].SOC = pDcChargingInfo->EvBatterySoc;
  330. ShmCHAdeMOData->ev[gunTypeIndex].TargetBatteryVoltage = (pDcChargingInfo->EvBatterytargetVoltage * 10);
  331. ShmCHAdeMOData->ev[gunTypeIndex].ChargingCurrentRequest = (pDcChargingInfo->EvBatterytargetCurrent * 10);
  332. } else if (pDcChargingInfo->Type == _Type_GB) {
  333. //if (ShmGBTData->ev[gunTypeIndex].EvDetection != frame.data[0])
  334. {
  335. ShmGBTData->ev[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  336. }
  337. ShmGBTData->ev[gunTypeIndex].EvDetection = frame.data[0];
  338. ShmGBTData->ev[gunTypeIndex].SOC = pDcChargingInfo->EvBatterySoc;
  339. ShmGBTData->ev[gunTypeIndex].TargetBatteryVoltage = (pDcChargingInfo->EvBatterytargetVoltage * 10);
  340. ShmGBTData->ev[gunTypeIndex].ChargingCurrentRequest = (pDcChargingInfo->EvBatterytargetCurrent * 10);
  341. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  342. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  343. ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  344. }
  345. }
  346. //log_info("EvBatterytargetVoltage = %f \n", pDcChargingInfo->EvBatterytargetVoltage);
  347. //log_info("EvBatterytargetCurrent = %f \n", pDcChargingInfo->EvBatterytargetCurrent);
  348. //log_info("BatteryVoltage = %d \n",
  349. // ShmCHAdeMOData->ev[_chargingData[target]->type_index].TargetBatteryVoltage);
  350. //log_info("CurrentRequest = %d \n",
  351. // ShmCHAdeMOData->ev[_chargingData[target]->type_index].ChargingCurrentRequest);
  352. break;
  353. case ACK_GET_EV_BATTERY_INFO:
  354. //_chargingData[target].EvACorDCcharging = frame.data[0];
  355. //_chargingData[target]->TotalBatteryCap = ((float) frame.data[4] << 8) + (short) frame.data[3];
  356. pDcChargingInfo->EvBatteryMaxVoltage = (((short) frame.data[4] << 8) + (short) frame.data[3]) / 10;
  357. //_chargingData[target]->EvBatteryMaxCurrent = ((float) frame.data[4] << 8) + (short) frame.data[3];
  358. //_chargingData[target].MaxiBatteryCurrent = ((short) frame.data[6] << 8) + (short) frame.data[5];
  359. if (pDcChargingInfo->Type == _Type_Chademo) {
  360. ShmCHAdeMOData->ev[gunTypeIndex].TotalBatteryCapacity = ((short) frame.data[2] << 8) + (short) frame.data[1];
  361. ShmCHAdeMOData->ev[gunTypeIndex].MaxiBatteryVoltage = pDcChargingInfo->EvBatteryMaxVoltage;
  362. //log_info("EvBatteryMaxVoltage = %f \n", _chargingData[target]->EvBatteryMaxVoltage);
  363. //log_info("TotalBatteryCapacity = %d \n", ShmCHAdeMOData->ev[_chargingData[target]->type_index].TotalBatteryCapacity);
  364. //log_info("MaxiBatteryVoltage = %d \n", ShmCHAdeMOData->ev[_chargingData[target]->type_index].MaxiBatteryVoltage);
  365. } else if (pDcChargingInfo->Type == _Type_GB) {
  366. ShmGBTData->ev[gunTypeIndex].TotalBatteryCapacity = ((short) frame.data[2] << 8) + (short) frame.data[1];
  367. ShmGBTData->ev[gunTypeIndex].MaxiBatteryVoltage = pDcChargingInfo->EvBatteryMaxVoltage;
  368. }
  369. //else if (pDcChargingInfo->Type == _Type_CCS_2) {
  370. //}
  371. break;
  372. case ACK_GET_MISCELLANEOUS_INFO:
  373. pDcChargingInfo->GunLocked = frame.data[0];
  374. pDcChargingInfo->PilotVoltage = (float)(-120 + frame.data[3]) / 10;
  375. if (pDcChargingInfo->Type == _Type_Chademo) {
  376. ShmCHAdeMOData->evse[gunTypeIndex].ConnectorTemperatureP = frame.data[1];
  377. ShmCHAdeMOData->evse[gunTypeIndex].ConnectorTemperatureN = frame.data[2];
  378. ShmCHAdeMOData->evse[gunTypeIndex].EvboardStatus = frame.data[7];
  379. } else if (pDcChargingInfo->Type == _Type_GB) {
  380. ShmGBTData->evse[gunTypeIndex].ConnectorTemperatureP = frame.data[1];
  381. ShmGBTData->evse[gunTypeIndex].ConnectorTemperatureN = frame.data[2];
  382. ShmGBTData->evse[gunTypeIndex].EvboardStatus = frame.data[7];
  383. }
  384. /*else if (pDcChargingInfo->Type == _Type_CCS_2) {
  385. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  386. //ShmCcsData->V2GMessage_DIN70121[gunTypeIndex]. .ConnectorTemperatureP = frame.data[1];
  387. //ShmCcsData->V2GMessage_DIN70121[gunTypeIndex]. .ConnectorTemperatureN = frame.data[2];
  388. }
  389. }*/
  390. if ((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x80) == YES) {
  391. getChillerTemperature(&chiilerTemp);
  392. pDcChargingInfo->ChillerTemp = getMaxConnectTemp(chiilerTemp.Temp[0], chiilerTemp.Temp[1]);
  393. }
  394. pDcChargingInfo->ConnectorTemp = getMaxConnectTemp(frame.data[1], frame.data[2]);
  395. //紀錄槍頭和水冷機溫度, 在系統狀態變化或溫度大於150
  396. if ((ShmDcCommonData->SystemModeChange == YES) ||
  397. (((pDcChargingInfo->ConnectorTemp >= GUN_OTP_VALUE) &&
  398. (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP)) ||
  399. ((pDcChargingInfo->ChillerTemp >= GUN_OTP_VALUE) &&
  400. (pDcChargingInfo->ChillerTemp != UNDEFINED_TEMP)))
  401. ) {
  402. ShmDcCommonData->SystemModeChange = NO;
  403. log_info("Conn %d Temp 0= %d, Temp 1 = %d, chillerTemp1 = %d, chillerTemp2 = %d\r\n",
  404. targetGun,
  405. frame.data[1],
  406. frame.data[2],
  407. chiilerTemp.Temp[0],
  408. chiilerTemp.Temp[1]);
  409. }
  410. if ((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x80) == NO) {
  411. //沒有水冷槍
  412. break;
  413. }
  414. if ((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x7F) == 1) {
  415. //單一水冷槍,不需要切換水冷機油閥
  416. //ShmFanModuleData-> ? = YES; //尚未定義
  417. break;
  418. }
  419. //紀錄槍頭溫度
  420. if (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP) {
  421. if (targetGun == 0) {
  422. ShmDcCommonData->ChillerValve.LeftTemp = pDcChargingInfo->ConnectorTemp;
  423. } else if (targetGun == 1) {
  424. ShmDcCommonData->ChillerValve.RightTemp = pDcChargingInfo->ConnectorTemp;
  425. }
  426. }
  427. //有兩把水冷槍,判斷兩把槍頭溫度,將水冷機節流閥導向溫度高的那一把槍
  428. if (ShmDcCommonData->ChillerValve.LeftTemp > ShmDcCommonData->ChillerValve.RightTemp) {
  429. //ShmFanModuleData->? = YES; //尚未定義
  430. } else {
  431. //ShmFanModuleData->? = NO; //尚未定義
  432. }
  433. //log_info("EvboardStatus = %x \n",
  434. // ShmCHAdeMOData->evse[gunTypeIndex].EvboardStatus);
  435. //log_info("ConnectorPlug locked = %x \n",
  436. // frame.data[0]);
  437. //log_info("PilotVoltage = %x \n", (-120 + frame.data[3]) / 10);
  438. break;
  439. case ACK_EVSE_ISOLATION_STATUS:
  440. break;
  441. case ACK_EVSE_PRECHAGE_INFO:
  442. pDcChargingInfo->PrechargeStatus = frame.data[0];
  443. break;
  444. case NOTIFICATION_EV_STOP:
  445. // 車端要求停止
  446. if ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK && //DS60-120 add
  447. pDcChargingInfo->SystemStatus <= S_TERMINATING) ||
  448. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  449. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  450. // frame.data[0] : 0x01 => normal stop, 0x02 => ev emergency stop
  451. log_info("(%d) NOTIFICATION_EV_STOP err level = %d-----------------------------\n",
  452. targetGun,
  453. frame.data[0]);
  454. if (frame.data[0] == 0x02) {
  455. if (AbnormalStopAnalysis(targetGun, frame.data + 1) == true) {
  456. pDcChargingInfo->StopChargeFlag = YES;
  457. } else {
  458. pDcChargingInfo->NormalStopChargeFlag = YES;
  459. }
  460. } else {
  461. AbnormalStopAnalysis(targetGun, frame.data + 1);
  462. pDcChargingInfo->NormalStopChargeFlag = YES;
  463. }
  464. }
  465. break;
  466. default:
  467. log_info("EV board = %d, Ack none defined. intCmd = %d \n", targetGun, intCmd);
  468. break;
  469. }//switch
  470. usleep(10000);
  471. }//while
  472. }
  473. }