Module_EvRxComm.c 34 KB

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