Module_EvRxComm.c 35 KB

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