Module_EvRxComm.c 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767
  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. struct StatusCodeData* ShmStatusCodeData;
  27. #define TempArraySize 10
  28. uint8_t TempArray_1[TempArraySize]={0};
  29. uint8_t TempArray_2[TempArraySize]={0};
  30. uint8_t ptemp_1 = 0;
  31. uint8_t ptemp_2 = 0;
  32. bool firstcircule = true;
  33. float EvTargetVolt[2] = { 0 };
  34. float EvTargetCur[2] = { 0 };
  35. //------------------------------------------------------------------------------
  36. extern bool AbnormalStopAnalysis(uint8_t gun_index, uint8_t *errCode);
  37. //------------------------------------------------------------------------------
  38. /*static uint8_t getMaxConnectTempAndChiller(uint8_t headTemp1, uint8_t headTemp2,
  39. uint8_t chillerTemp1, uint8_t chillerTemp2)
  40. {
  41. uint8_t i = 0;
  42. uint8_t tempSource[4] = {headTemp1, headTemp2, chillerTemp1, chillerTemp2};
  43. uint8_t maxTemp = 0;
  44. if (headTemp1 == UNDEFINED_TEMP &&
  45. headTemp2 == UNDEFINED_TEMP &&
  46. chillerTemp1 == UNDEFINED_TEMP &&
  47. chillerTemp2 == UNDEFINED_TEMP) {
  48. return UNDEFINED_TEMP;
  49. }
  50. //先取得第一個非UNDEFINED_TEMP的值
  51. for (i = 0; i < (sizeof(tempSource) / sizeof(uint8_t)); i++) {
  52. if (tempSource[i] != UNDEFINED_TEMP) {
  53. maxTemp = tempSource[i];
  54. break;
  55. }
  56. }
  57. //找最大的溫度值
  58. for (i = 0; i < (sizeof(tempSource) / sizeof(uint8_t)); i++) {
  59. if (tempSource[i] != UNDEFINED_TEMP) {
  60. if (maxTemp < tempSource[i]) {
  61. maxTemp = tempSource[i];
  62. }
  63. }
  64. }
  65. return maxTemp;
  66. }
  67. */
  68. static uint8_t getAvageTemp(uint8_t value,uint8_t gun)
  69. {
  70. uint16_t avagetemp = 0;
  71. int i;
  72. uint8_t ptr = 0;
  73. uint8_t *pArray;
  74. if(gun == 0) {
  75. pArray = &TempArray_1[0];
  76. ptr = ptemp_1;
  77. } else {
  78. pArray = &TempArray_2[0];
  79. ptr = ptemp_2;
  80. }
  81. pArray[ptr] = value;
  82. for(i=0;i<TempArraySize;i++)
  83. avagetemp+=pArray[i];
  84. if (firstcircule) {
  85. avagetemp/=(ptr+1);
  86. } else {
  87. avagetemp/=TempArraySize;
  88. }
  89. ptr++;
  90. if(ptr >= TempArraySize){
  91. ptr = 0;
  92. firstcircule = false;
  93. }
  94. if(gun == 0 )
  95. ptemp_1 = ptr;
  96. else
  97. ptemp_2 = ptr;
  98. if(avagetemp > TEMP_BOUNDARY)
  99. return UNDEFINED_TEMP;
  100. return avagetemp;
  101. }
  102. static uint8_t getMaxConnectTemp(uint8_t headTemp1, uint8_t headTemp2)
  103. {
  104. uint8_t maxTemp = 0;
  105. if (headTemp1 > TEMP_BOUNDARY &&
  106. headTemp2 > TEMP_BOUNDARY) {
  107. return UNDEFINED_TEMP;
  108. }
  109. if (headTemp1 <= TEMP_BOUNDARY) {
  110. maxTemp = headTemp1;
  111. }
  112. if (headTemp2 <= TEMP_BOUNDARY) {
  113. if (headTemp2 > maxTemp) {
  114. maxTemp = headTemp2;
  115. }
  116. }
  117. return maxTemp;
  118. }
  119. static float ReadAdcVolt(uint8_t AdcChannel)
  120. {
  121. //AIN0=CCS GUN Temp 1
  122. //AIN1=CCS GUN Temp 2
  123. //AIN2=CCS_Proximity/2
  124. //AIN3=pilot voltage
  125. int fd = -1;
  126. uint8_t str[64] = {0};
  127. uint8_t AdcValue[8] = {'\0'};
  128. if (AdcChannel > 7) {
  129. return -1;
  130. }
  131. sprintf((char *)str, "/sys/bus/iio/devices/iio\:device0/in_voltage%d_raw", AdcChannel);
  132. fd = open((char *)str, O_RDONLY);
  133. read(fd, AdcValue, 4);
  134. close(fd);
  135. return (1.8 * atoi((char *)&AdcValue[0])) / 4095;
  136. //return (1.8 * atoi((char *)&AdcValue)) / 4095;
  137. }
  138. static void getChillerTemperature(ChillerTemp *chillerTemp)
  139. {
  140. uint8_t i = 0;
  141. float adcVoltage = 0.0;
  142. ChillerTemp *pChillerTemp = (ChillerTemp *)chillerTemp;
  143. for (i = 0; i < 4; i++) {
  144. adcVoltage = 0.0;
  145. adcVoltage = ReadAdcVolt(i);
  146. if ((adcVoltage <= 0.9) && (adcVoltage >= 0.8)) { //0 ~ -40
  147. pChillerTemp->Temp[i] = ((adcVoltage - 0.908) * 500) + 60;
  148. //log_info("1 adcVoltage = %f", (adcVoltage - 0.9) * 500);
  149. } else if ((adcVoltage <= 1.07) && (adcVoltage > 0.9)) {
  150. pChillerTemp->Temp[i] = ((adcVoltage - 0.91) * 705.88) + 60;
  151. //log_info("2 adcVoltage = %f", (adcVoltage - 0.9) * 500);
  152. } else {
  153. pChillerTemp->Temp[i] = UNDEFINED_TEMP;
  154. }
  155. /*CcsConnectorTemp1 = ReadAdcVolt(i);
  156. if ((CcsConnectorTemp1 <= 0.9) && (CcsConnectorTemp1 >= 0.8)) { //0 ~ -40
  157. CcsConnectorTemp1 = (CcsConnectorTemp1 - 0.9) * 500;
  158. } else if ((CcsConnectorTemp1 <= 1.07) && (CcsConnectorTemp1 > 0.9)) {
  159. CcsConnectorTemp1 = (CcsConnectorTemp1 - 0.9) * 705.88;
  160. } else {
  161. CcsConnectorTemp1 = 195; //not available
  162. }
  163. CcsConnectorTemp |= ((unsigned int)(CcsConnectorTemp1 + 60) & 0xFF) << (i * 8); //0x00(-60)~0xFE(194)
  164. */
  165. }
  166. }
  167. static void AddrAssignment(uint8_t *data)
  168. {
  169. uint8_t target_number[8];
  170. uint8_t index = 0x00;
  171. struct ChargingInfoData *pDcChargingInfo = NULL;
  172. memcpy(target_number, data, sizeof(target_number));
  173. index = *(data + 4);
  174. if (pSysConfig->TotalConnectorCount == 1) {
  175. index = 0x01;
  176. }
  177. //if (CheckUniqNumber(index)) {
  178. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(index - 1);
  179. //DS60-120 add
  180. if (pDcChargingInfo->Type == _Type_Chademo) {
  181. log_info("Set EV board info : (Chademo) TargetAddr = %d ", index);
  182. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  183. log_info("Set EV board info : (CCS) TargetAddr = %d ", index);
  184. } else if (pDcChargingInfo->Type == _Type_GB) {
  185. log_info("Set EV board info : (GB) TargetAddr = %d ", index);
  186. }
  187. //log_info("EV board id = %x ", index); //DS60-120 remove
  188. //log_info("target_number[0] = %x ", target_number[0]);
  189. //log_info("target_number[1] = %x ", target_number[1]);
  190. //log_info("target_number[2] = %x ", target_number[2]);
  191. //log_info("target_number[3] = %x ", target_number[3]);
  192. //log_info("target_number[4] = %x ", target_number[4]);
  193. log_info("SetTargetAddr = %d, type = %d ", index, pDcChargingInfo->Type);
  194. SetTargetAddr(target_number, index);
  195. //}
  196. }
  197. void CheckEvConnect(int gunIndex)
  198. {
  199. int isDisconnect = FALSE;
  200. int gunType = _Type_CCS_2;
  201. int isSameType = FALSE;
  202. struct ChargingInfoData* pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(gunIndex);
  203. struct InfoCodeData* pInfoCode = (struct InfoCodeData*)GetShmInfoCodeData();
  204. struct ChargingInfoData* pDcChargingInfo_0 = (struct ChargingInfoData*)GetDcChargingInfoData(0);
  205. struct ChargingInfoData* pDcChargingInfo_1 = (struct ChargingInfoData*)GetDcChargingInfoData(1);
  206. if (pDcChargingInfo_0->Type == pDcChargingInfo_1->Type) {
  207. isSameType = TRUE;
  208. isDisconnect = ShmDcCommonData->EVDisconnectFlag[0] | ShmDcCommonData->EVDisconnectFlag[1];
  209. gunType = pDcChargingInfo_0->Type;
  210. } else {
  211. isDisconnect = ShmDcCommonData->EVDisconnectFlag[gunIndex];
  212. gunType = pDcChargingInfo->Type;
  213. }
  214. //log_info("ShmDcCommonData->EVDisconnectFlag[%d]:%d", gunIndex, ShmDcCommonData->EVDisconnectFlag[gunIndex]);
  215. if (isDisconnect) {
  216. switch (gunType) {
  217. case _Type_Chademo:
  218. pInfoCode->InfoEvents.bits.ChademoEvCommFail = YES;
  219. break;
  220. case _Type_CCS_2:
  221. pInfoCode->InfoEvents.bits.CcsEvCommFail = YES;
  222. break;
  223. case _Type_GB:
  224. pInfoCode->InfoEvents.bits.GbEvCommFail = YES;
  225. break;
  226. }
  227. } else {
  228. switch (gunType) {
  229. case _Type_Chademo:
  230. pInfoCode->InfoEvents.bits.ChademoEvCommFail = NO;
  231. break;
  232. case _Type_CCS_2:
  233. pInfoCode->InfoEvents.bits.CcsEvCommFail = NO;
  234. break;
  235. case _Type_GB:
  236. pInfoCode->InfoEvents.bits.GbEvCommFail = NO;
  237. break;
  238. }
  239. }
  240. }
  241. void CANReceiver(int fd)
  242. {
  243. pid_t canRecPid;
  244. canRecPid = fork();
  245. if (canRecPid < 0) {
  246. log_error("Create CAN Bus receive task failed");
  247. return;
  248. }
  249. if (canRecPid == 0) {
  250. int isContinue = 1;
  251. int nbytes;
  252. int intCmd;
  253. uint8_t _index = 0;
  254. uint8_t recvID = 0;
  255. uint8_t targetGun = 0x00;
  256. uint8_t gunTypeIndex = 0;
  257. uint8_t ver[16] = {0};
  258. uint8_t printChillerTemp = NO;
  259. uint8_t printConnTemp = NO;
  260. uint8_t chillerTemp[2] = {0, 0};
  261. uint8_t maxChillerTemp = 0;
  262. uint8_t lastChillerTemp = 0;
  263. uint8_t maxConnTemp = 0;
  264. uint8_t lastConnTemp[2] = {0, 0};
  265. struct can_frame frame;
  266. ChillerTemp chiilerTemp = {0};
  267. struct ChargingInfoData *pDcChargingInfo = NULL;
  268. time_t CCS_PlugoutTimer[2];
  269. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  270. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  271. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  272. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  273. ShmCHAdeMOData = (struct CHAdeMOData *)GetShmCHAdeMOData();
  274. ShmGBTData = (struct GBTData *)GetShmGBTData();
  275. ShmCcsData = (struct CcsData *)GetShmCcsData();
  276. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  277. ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();
  278. ShmStatusCodeData = (struct StatusCodeData*)GetShmStatusCodeData();
  279. //log_info("Module_EvRXComm Child's PID is %d", getpid());
  280. CCS_PlugoutTimer[0] = time((time_t*)NULL);
  281. CCS_PlugoutTimer[1] = time((time_t*)NULL);
  282. while (isContinue) {
  283. memset(&frame, 0, sizeof(struct can_frame));
  284. for (_index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  285. // 檢查是否有收到EV小板訊號
  286. if (pSysInfo->SelfTestSeq == _STEST_COMPLETE && !ShmStatusCodeData->AlarmCode.AlarmEvents.bits.SystemTaskLost) {
  287. if ((time((time_t*)NULL) - ShmDcCommonData->pGunInfo[_index].EVLoseTimer > 5) &&
  288. !ShmDcCommonData->pGunInfo[_index].EVLoseFlag &&
  289. pDcChargingInfo->SystemStatus != S_UPDATE && !ShmDcCommonData->DebugFlag) {
  290. ShmDcCommonData->pGunInfo[_index].EVLoseTimer = time((time_t*)NULL);
  291. ShmDcCommonData->pGunInfo[_index].EVLoseFlag = TRUE;
  292. system("/sbin/ip link set can0 down");
  293. sleep(1);
  294. system("/sbin/ip link set can0 type can bitrate 500000 restart-ms 100");
  295. system("/sbin/ip link set can0 up");
  296. }
  297. CheckEvConnect(_index);
  298. } else {
  299. ShmDcCommonData->pGunInfo[targetGun].EVLoseTimer = time((time_t*)NULL);
  300. ShmDcCommonData->pGunInfo[targetGun].EVLoseFlag = FALSE;
  301. }
  302. }
  303. nbytes = read(fd, &frame, sizeof(struct can_frame));
  304. if (nbytes <= 0) {
  305. usleep(10000);
  306. continue;
  307. }
  308. recvID = 0;
  309. targetGun = 0x00;
  310. intCmd = (int) (frame.can_id & CAN_EFF_MASK);
  311. if (intCmd == ADDRESS_REQ) {
  312. //ShmDcCommonData->CcsVersion = _CCS_VERSION_CHECK_TAG_V013S0;
  313. AddrAssignment(frame.data);
  314. continue;
  315. }
  316. intCmd = (int) (frame.can_id & CAN_EFF_MASK & 0xFFFFFF00);
  317. recvID = ((uint8_t) (frame.can_id & 0x000000FF)); // 0x01 or 0x02
  318. for (_index = 0; _index < pSysConfig->TotalConnectorCount; _index++) { // 假設有找到回應的 Index
  319. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  320. //if (gun_count == 1 &&
  321. // _chargingData[_index]->Type == _Type_CCS_2 &&
  322. // ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  323. // target -= 1;
  324. //}
  325. if (pDcChargingInfo->Evboard_id == recvID) {
  326. targetGun = _index;
  327. break;
  328. }
  329. }
  330. if ((targetGun < 0) || (targetGun >= CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)) {
  331. log_info("EvComm (CANReceiver) : Target index = %x is < 0 or > QUANTITY ", targetGun);
  332. usleep(10000);
  333. continue;
  334. }
  335. //else if (gun_count == 1 && targetGun == 0 && findIndex == 1 &&
  336. // ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  337. // // 這樣的條件下~ 也是單槍 CCS 舊版本的狀況 : 因為舊版 CCS 不會 timeout, then send request id
  338. // ShmDcCommonData->CcsVersion = _CCS_VERSION_CHECK_TAG_V013S0;
  339. //}
  340. if (intCmd == 256) {
  341. log_info("EvComm command = 256");
  342. usleep(10000);
  343. continue;
  344. }
  345. // Reset Connect Timer
  346. ShmDcCommonData->EVDisconnectTime[targetGun] = time((time_t*)NULL);
  347. ShmDcCommonData->EVDisconnectFlag[targetGun] = FALSE;
  348. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(targetGun);
  349. gunTypeIndex = pDcChargingInfo->type_index;
  350. switch (intCmd) {
  351. case NOTIFICATION_EV_STATUS:
  352. if (pDcChargingInfo->ConnectorPlugIn != frame.data[0]) {
  353. if (frame.data[0] == PLUG) {
  354. log_info("Conn %d, Plugin. ", targetGun);
  355. pDcChargingInfo->isEVCCIDVerify = false;
  356. #ifdef DD360Audi
  357. if (pSysConfig->EVCCID_Authorize)
  358. pSysInfo->CurGunSelected = targetGun;
  359. #endif
  360. } else if (frame.data[0] == UNPLUG) {
  361. if (pDcChargingInfo->Type != _Type_CCS_2)
  362. log_info("Conn %d, Unplug. ", targetGun);
  363. strcpy( (char *) pDcChargingInfo->EVCCID, "");
  364. } else {
  365. log_info("Conn %d, None Check. (%d) ", targetGun, frame.data[0]);
  366. }
  367. /*
  368. if(pDcChargingInfo->RemoteStartFlag == YES) {
  369. pSysInfo->CurGunSelected = targetGun;
  370. }
  371. */
  372. }
  373. pDcChargingInfo->PilotVoltage = frame.data[1];
  374. // CCS 小板確認Pilot Voltage != 0
  375. if (pDcChargingInfo->Type == _Type_CCS_2 && pDcChargingInfo->PilotVoltage != 0) {
  376. if (frame.data[0] == UNPLUG && pDcChargingInfo->ConnectorPlugIn != frame.data[0])
  377. log_info("Conn %d, Unplug. ", targetGun);
  378. pDcChargingInfo->ConnectorPlugIn = frame.data[0];
  379. } else {
  380. pDcChargingInfo->ConnectorPlugIn = frame.data[0];
  381. }
  382. //log_info("index = %d, ConnectorPlugIn = %x, data[0] = %x ",
  383. // targetGun,
  384. // pDcChargingInfo->ConnectorPlugIn,
  385. // frame.data[0]);
  386. //log_info("ConnectorPlugIn = %x ", (-120 + frame.data[1]) / 10);
  387. break;
  388. case ACK_EV_FW_VERSION:
  389. memset(ver, 0, sizeof(ver));
  390. if (pDcChargingInfo->Type == _Type_Chademo) {
  391. memcpy(ver, frame.data, frame.can_dlc);
  392. memcpy(ShmCHAdeMOData->evse[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  393. ShmCHAdeMOData->evse[gunTypeIndex].SelfTest_Comp = PASS;
  394. log_info("chademo ver. : %s", ShmCHAdeMOData->evse[gunTypeIndex].version);
  395. } else if (pDcChargingInfo->Type == _Type_GB) {
  396. memcpy(ver, frame.data, frame.can_dlc);
  397. memcpy(ShmGBTData->evse[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  398. ShmGBTData->evse[gunTypeIndex].SelfTest_Comp = PASS;
  399. log_info("gbt ver. : %s", ShmGBTData->evse[gunTypeIndex].version);
  400. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  401. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  402. memcpy(ver, frame.data, frame.can_dlc); //DS60-120 add
  403. memcpy(&ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  404. ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].SelfTest_Comp = PASS;
  405. log_info("CCS FW = %s ", ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].version);
  406. }
  407. }
  408. if (targetGun == 0) {
  409. memset(pSysInfo->Connector1FwRev,
  410. 0,
  411. sizeof(pSysInfo->Connector1FwRev));
  412. memcpy(pSysInfo->Connector1FwRev, ver, ARRAY_SIZE(ver));
  413. } else if (targetGun == 1) {
  414. memset(pSysInfo->Connector2FwRev,
  415. 0,
  416. sizeof(pSysInfo->Connector2FwRev));
  417. memcpy(pSysInfo->Connector2FwRev, ver, ARRAY_SIZE(ver));
  418. }
  419. break;
  420. case ACK_EV_HW_VERSION:
  421. //log_info("Get EV HW = %s ", frame.data);
  422. break;
  423. case ACK_GET_OUTPUT_REQ:
  424. //DS60-120 add
  425. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EV &&
  426. pDcChargingInfo->SystemStatus <= S_CHARGING) ||
  427. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  428. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  429. ) {
  430. if (pDcChargingInfo->EvBatteryStartSoc <= 0 &&
  431. pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE) {
  432. pDcChargingInfo->EvBatteryStartSoc = frame.data[1];
  433. }
  434. if (frame.data[1] > pDcChargingInfo->EvBatterySoc) {
  435. pDcChargingInfo->EvBatterySoc = frame.data[1];
  436. log_info("Gun%d SOC:%d", targetGun,pDcChargingInfo->EvBatterySoc);
  437. }
  438. }
  439. //pDcChargingInfo->EvBatterySoc = frame.data[1]; //DS60-120 remove
  440. //Jerry add set voltage limit
  441. pDcChargingInfo->EvBatterytargetVoltage = (float)((frame.data[3] << 8) + frame.data[2]) / 10;
  442. if (pDcChargingInfo->EvBatterytargetVoltage > (GetMaxChargingVol(targetGun) * 0.1)) {
  443. pDcChargingInfo->EvBatterytargetVoltage = (GetMaxChargingVol(targetGun) * 0.1);
  444. }
  445. //printf("id = %d, EvBatterytargetVoltage = %.2f", targetGun, pDcChargingInfo->EvBatterytargetVoltage);
  446. //Jerry add set currency limit
  447. pDcChargingInfo->EvBatterytargetCurrent = (float)((frame.data[5] << 8) + frame.data[4]) / 10;
  448. if (pDcChargingInfo->EvBatterytargetCurrent > (GetMaxCharginigCur(targetGun) * 0.1)) {
  449. pDcChargingInfo->EvBatterytargetCurrent = (GetMaxCharginigCur(targetGun) * 0.1);
  450. }
  451. //printf("id = %d, EvBatterytargetCurrent = %.2f", targetGun, pDcChargingInfo->EvBatterytargetCurrent);
  452. pDcChargingInfo->RemainChargingDuration = ((short) frame.data[7] << 8) + (short) frame.data[6];
  453. //log_info("RemainChargingDuration = %d", pDcChargingInfo->RemainChargingDuration);
  454. if (pDcChargingInfo->Type == _Type_Chademo) {
  455. if (ShmCHAdeMOData->ev[gunTypeIndex].PresentMsgFlowStatus != frame.data[0])
  456. {
  457. log_info("Gun%d CHAdeMO board status = %d ", targetGun, ShmCHAdeMOData->ev[gunTypeIndex].PresentMsgFlowStatus);
  458. ShmCHAdeMOData->ev[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  459. }
  460. ShmCHAdeMOData->ev[gunTypeIndex].EvDetection = frame.data[0];
  461. ShmCHAdeMOData->ev[gunTypeIndex].SOC = pDcChargingInfo->EvBatterySoc;
  462. ShmCHAdeMOData->ev[gunTypeIndex].TargetBatteryVoltage = (pDcChargingInfo->EvBatterytargetVoltage * 10);
  463. ShmCHAdeMOData->ev[gunTypeIndex].ChargingCurrentRequest = (pDcChargingInfo->EvBatterytargetCurrent * 10);
  464. } else if (pDcChargingInfo->Type == _Type_GB) {
  465. if (ShmGBTData->ev[gunTypeIndex].PresentMsgFlowStatus != frame.data[0]) {
  466. log_info("Gun%d GB Board status = %d ", targetGun, ShmGBTData->ev[pDcChargingInfo->type_index].PresentMsgFlowStatus);
  467. ShmGBTData->ev[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  468. }
  469. ShmGBTData->ev[gunTypeIndex].EvDetection = frame.data[0];
  470. ShmGBTData->ev[gunTypeIndex].SOC = pDcChargingInfo->EvBatterySoc;
  471. ShmGBTData->ev[gunTypeIndex].TargetBatteryVoltage = (pDcChargingInfo->EvBatterytargetVoltage * 10);
  472. ShmGBTData->ev[gunTypeIndex].ChargingCurrentRequest = (pDcChargingInfo->EvBatterytargetCurrent * 10);
  473. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  474. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  475. if (ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].PresentMsgFlowStatus != frame.data[0] && frame.data[0] != 0xFF) {
  476. log_info("Gun%d CCS board status = %d ", targetGun, ShmCcsData->V2GMessage_DIN70121[pDcChargingInfo->type_index].PresentMsgFlowStatus);
  477. ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  478. }
  479. }
  480. }
  481. if (pDcChargingInfo->EvBatterytargetVoltage > (EvTargetVolt[targetGun] + 3) ||
  482. pDcChargingInfo->EvBatterytargetVoltage < (EvTargetVolt[targetGun] - 3) ||
  483. pDcChargingInfo->EvBatterytargetCurrent > (EvTargetCur[targetGun] + 1) ||
  484. pDcChargingInfo->EvBatterytargetCurrent < (EvTargetCur[targetGun] - 1)) {
  485. log_info("Gun%d Battery TargetVoltage = %.1f , TargetCurrent = %.1f",
  486. targetGun,pDcChargingInfo->EvBatterytargetVoltage, pDcChargingInfo->EvBatterytargetCurrent);
  487. EvTargetVolt[targetGun] = pDcChargingInfo->EvBatterytargetVoltage;
  488. EvTargetCur[targetGun] = pDcChargingInfo->EvBatterytargetCurrent;
  489. }
  490. //log_info("EvBatterytargetVoltage = %f ", pDcChargingInfo->EvBatterytargetVoltage);
  491. //log_info("EvBatterytargetCurrent = %f ", pDcChargingInfo->EvBatterytargetCurrent);
  492. //log_info("BatteryVoltage = %d ",
  493. // ShmCHAdeMOData->ev[_chargingData[target]->type_index].TargetBatteryVoltage);
  494. //log_info("CurrentRequest = %d ",
  495. // ShmCHAdeMOData->ev[_chargingData[target]->type_index].ChargingCurrentRequest);
  496. break;
  497. case ACK_GET_EV_BATTERY_INFO:
  498. //_chargingData[target].EvACorDCcharging = frame.data[0];
  499. //_chargingData[target]->TotalBatteryCap = ((float) frame.data[4] << 8) + (short) frame.data[3];
  500. pDcChargingInfo->EvBatteryMaxVoltage = ((float)(((uint16_t)frame.data[4] << 8) + (uint16_t)frame.data[3])) / 10;
  501. //_chargingData[target]->EvBatteryMaxCurrent = ((float) frame.data[4] << 8) + (short) frame.data[3];
  502. //_chargingData[target].MaxiBatteryCurrent = ((short) frame.data[6] << 8) + (short) frame.data[5];
  503. if (pDcChargingInfo->Type == _Type_Chademo) {
  504. ShmCHAdeMOData->ev[gunTypeIndex].TotalBatteryCapacity = ((uint16_t)frame.data[2] << 8) + (uint16_t)frame.data[1];
  505. ShmCHAdeMOData->ev[gunTypeIndex].MaxiBatteryVoltage = pDcChargingInfo->EvBatteryMaxVoltage;
  506. //log_info("EvBatteryMaxVoltage = %f ", _chargingData[target]->EvBatteryMaxVoltage);
  507. //log_info("TotalBatteryCapacity = %d ", ShmCHAdeMOData->ev[_chargingData[target]->type_index].TotalBatteryCapacity);
  508. //log_info("MaxiBatteryVoltage = %d ", ShmCHAdeMOData->ev[_chargingData[target]->type_index].MaxiBatteryVoltage);
  509. } else if (pDcChargingInfo->Type == _Type_GB) {
  510. ShmGBTData->ev[gunTypeIndex].TotalBatteryCapacity = ((uint16_t)frame.data[2] << 8) + (uint16_t)frame.data[1];
  511. ShmGBTData->ev[gunTypeIndex].MaxiBatteryVoltage = pDcChargingInfo->EvBatteryMaxVoltage;
  512. }
  513. //else if (pDcChargingInfo->Type == _Type_CCS_2) {
  514. //}
  515. break;
  516. case ACK_GET_MISCELLANEOUS_INFO:
  517. pDcChargingInfo->GunLocked = frame.data[0];
  518. pDcChargingInfo->PilotVoltage = ((float)(-120 + frame.data[3])) / 10;
  519. if (pDcChargingInfo->Type == _Type_Chademo) {
  520. ShmCHAdeMOData->evse[gunTypeIndex].ConnectorTemperatureP = frame.data[1];
  521. ShmCHAdeMOData->evse[gunTypeIndex].ConnectorTemperatureN = frame.data[2];
  522. ShmCHAdeMOData->evse[gunTypeIndex].EvboardStatus = frame.data[7];
  523. } else if (pDcChargingInfo->Type == _Type_GB) {
  524. ShmGBTData->evse[gunTypeIndex].ConnectorTemperatureP = frame.data[1];
  525. ShmGBTData->evse[gunTypeIndex].ConnectorTemperatureN = frame.data[2];
  526. ShmGBTData->evse[gunTypeIndex].EvboardStatus = frame.data[7];
  527. }
  528. /*else if (pDcChargingInfo->Type == _Type_CCS_2) {
  529. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  530. //ShmCcsData->V2GMessage_DIN70121[gunTypeIndex]. .ConnectorTemperatureP = frame.data[1];
  531. //ShmCcsData->V2GMessage_DIN70121[gunTypeIndex]. .ConnectorTemperatureN = frame.data[2];
  532. }
  533. }*/
  534. ShmDcCommonData->ConnectorTemp[gunTypeIndex][0] = frame.data[1];
  535. ShmDcCommonData->ConnectorTemp[gunTypeIndex][1] = frame.data[2];
  536. if (ShmDcCommonData->TestTemperature == YES) { //ReadCmdline test
  537. break;
  538. }
  539. printChillerTemp = NO;
  540. printConnTemp = NO;
  541. if (((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x80) >> 7) == YES) {
  542. getChillerTemperature(&chiilerTemp);
  543. memcpy((char *)ShmDcCommonData->SystemTemp, (char *)chiilerTemp.Temp, sizeof(ChillerTemp));
  544. chillerTemp[0] = getMaxConnectTemp(chiilerTemp.Temp[0], chiilerTemp.Temp[1]);
  545. chillerTemp[1] = getMaxConnectTemp(chiilerTemp.Temp[2], chiilerTemp.Temp[3]);
  546. maxChillerTemp = getMaxConnectTemp(chillerTemp[0], chillerTemp[1]);
  547. //if ((maxChillerTemp - 3) >= pDcChargingInfo->ChillerTemp) {
  548. // printChillerTemp = YES;
  549. //}
  550. if(maxChillerTemp > (lastChillerTemp + 2) || maxChillerTemp < (lastChillerTemp - 2))
  551. {
  552. lastChillerTemp = maxChillerTemp;
  553. printChillerTemp = YES;
  554. }
  555. pDcChargingInfo->ChillerTemp = maxChillerTemp;
  556. }
  557. if (frame.data[1] != 0 || frame.data[2] != 0) {
  558. maxConnTemp = getMaxConnectTemp(frame.data[1], frame.data[2]);
  559. maxConnTemp = getAvageTemp(maxConnTemp, targetGun);
  560. }
  561. if(maxConnTemp > (lastConnTemp[targetGun] + 2) || maxConnTemp < (lastConnTemp[targetGun] - 2))
  562. {
  563. lastConnTemp[targetGun] = maxConnTemp;
  564. printConnTemp = YES;
  565. }
  566. pDcChargingInfo->ConnectorTemp = maxConnTemp;
  567. //紀錄槍頭和水冷機溫度, 在系統狀態變化或溫度大於150
  568. if ((ShmDcCommonData->SystemModeChange[targetGun] == YES) ||
  569. (printConnTemp == YES) ||
  570. (printChillerTemp == YES) //&&
  571. //(((pDcChargingInfo->ConnectorTemp >= GUN_OTP_VALUE) &&
  572. // (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP)) ||
  573. // ((pDcChargingInfo->ChillerTemp >= GUN_OTP_VALUE) &&
  574. // (pDcChargingInfo->ChillerTemp != UNDEFINED_TEMP)))
  575. ) {
  576. ShmDcCommonData->SystemModeChange[targetGun] = NO;
  577. log_info("Conn %d max head temp = %d, max chiller = %d, max chiller2 = %d",
  578. targetGun,
  579. maxConnTemp,
  580. chillerTemp[0],
  581. chillerTemp[1]);
  582. }
  583. if (((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x80) >> 7) == YES) {
  584. //沒有水冷槍
  585. break;
  586. }
  587. if ((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x7F) == 1) {
  588. //單一水冷槍,不需要切換水冷機油閥
  589. //ShmFanModuleData-> ? = YES; //尚未定義
  590. break;
  591. }
  592. //紀錄槍頭溫度
  593. if (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP) {
  594. if (targetGun == 0) {
  595. ShmDcCommonData->ChillerValve.LeftTemp = pDcChargingInfo->ConnectorTemp;
  596. } else if (targetGun == 1) {
  597. ShmDcCommonData->ChillerValve.RightTemp = pDcChargingInfo->ConnectorTemp;
  598. }
  599. }
  600. //有兩把水冷槍,判斷兩把槍頭溫度,將水冷機節流閥導向溫度高的那一把槍
  601. if (ShmDcCommonData->ChillerValve.LeftTemp > ShmDcCommonData->ChillerValve.RightTemp) {
  602. //ShmFanModuleData->? = YES; //尚未定義
  603. } else {
  604. //ShmFanModuleData->? = NO; //尚未定義
  605. }
  606. //log_info("EvboardStatus = %x ",
  607. // ShmCHAdeMOData->evse[gunTypeIndex].EvboardStatus);
  608. //log_info("ConnectorPlug locked = %x ",
  609. // frame.data[0]);
  610. //log_info("PilotVoltage = %x ", (-120 + frame.data[3]) / 10);
  611. break;
  612. case ACK_EVSE_ISOLATION_STATUS:
  613. break;
  614. case ACK_EVSE_PRECHAGE_INFO:
  615. pDcChargingInfo->PrechargeStatus = frame.data[0];
  616. break;
  617. case NOTIFICATION_EV_STOP:
  618. // 車端要求停止
  619. if ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK && //DS60-120 add
  620. pDcChargingInfo->SystemStatus <= S_TERMINATING) ||
  621. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  622. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  623. // frame.data[0] : 0x01 => normal stop, 0x02 => ev emergency stop
  624. log_info("----------------------------- (%d) NOTIFICATION_EV_STOP err level = %d -----------------------------",
  625. targetGun,
  626. frame.data[0]);
  627. if (frame.data[0] == 0x02) {
  628. if (AbnormalStopAnalysis(targetGun, frame.data + 1) == true) {
  629. pDcChargingInfo->StopChargeFlag = YES;
  630. } else {
  631. pDcChargingInfo->NormalStopChargeFlag = YES;
  632. }
  633. } else {
  634. AbnormalStopAnalysis(targetGun, frame.data + 1);
  635. pDcChargingInfo->NormalStopChargeFlag = YES;
  636. }
  637. }
  638. break;
  639. case ACK_EVCCID_REQ:
  640. if (frame.can_dlc > 0 && strcmp ( (char *)pDcChargingInfo->EVCCID, "" ) == EQUAL &&
  641. pDcChargingInfo->Type == _Type_CCS_2)
  642. {
  643. {
  644. memset (
  645. ShmCcsData->V2GMessage_DIN70121 [pDcChargingInfo->type_index].SessionSetupRequest.EVCCID,
  646. 0,
  647. sizeof(ShmCcsData->V2GMessage_DIN70121 [pDcChargingInfo->type_index].SessionSetupRequest.EVCCID) );
  648. memcpy (
  649. ShmCcsData->V2GMessage_DIN70121 [pDcChargingInfo->type_index].SessionSetupRequest.EVCCID,
  650. frame.data, frame.can_dlc );
  651. }
  652. sprintf ( (char *) pDcChargingInfo->EVCCID, "%.2x%.2x%.2x%.2x%.2x%.2x", frame.data [0],
  653. frame.data [1], frame.data [2], frame.data [3], frame.data [4], frame.data [5] );
  654. pDcChargingInfo->EVCCID [17] = '\0';
  655. log_info( "Gun %d->EVCCID = %s ", targetGun, pDcChargingInfo->EVCCID );
  656. }
  657. break;
  658. default:
  659. log_info("EV board = %d, Ack none defined. intCmd = %d ", targetGun, intCmd);
  660. break;
  661. }//switch
  662. usleep(10000);
  663. }//while
  664. }
  665. }