Module_EvRxComm.c 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822
  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 = NULL;
  206. if (pSysConfig->TotalConnectorCount == 1)
  207. pDcChargingInfo_1 = (struct ChargingInfoData*)GetDcChargingInfoData(0);
  208. else
  209. pDcChargingInfo_1 = (struct ChargingInfoData*)GetDcChargingInfoData(1);
  210. if (pDcChargingInfo_0->Type == pDcChargingInfo_1->Type) {
  211. isSameType = TRUE;
  212. isDisconnect = ShmDcCommonData->pGunStatus[0].EVLoseFlag | ShmDcCommonData->pGunStatus[1].EVLoseFlag;
  213. gunType = pDcChargingInfo_0->Type;
  214. } else {
  215. isDisconnect = ShmDcCommonData->pGunStatus[gunIndex].EVLoseFlag;
  216. gunType = pDcChargingInfo->Type;
  217. }
  218. //log_info("ShmDcCommonData->EVDisconnectFlag[%d]:%d", gunIndex, ShmDcCommonData->EVDisconnectFlag[gunIndex]);
  219. if (isDisconnect) {
  220. switch (gunType) {
  221. case _Type_Chademo:
  222. pInfoCode->InfoEvents.bits.ChademoEvCommFail = YES;
  223. break;
  224. case _Type_CCS_2:
  225. pInfoCode->InfoEvents.bits.CcsEvCommFail = YES;
  226. break;
  227. case _Type_GB:
  228. pInfoCode->InfoEvents.bits.GbEvCommFail = YES;
  229. break;
  230. }
  231. } else {
  232. switch (gunType) {
  233. case _Type_Chademo:
  234. pInfoCode->InfoEvents.bits.ChademoEvCommFail = NO;
  235. break;
  236. case _Type_CCS_2:
  237. pInfoCode->InfoEvents.bits.CcsEvCommFail = NO;
  238. break;
  239. case _Type_GB:
  240. pInfoCode->InfoEvents.bits.GbEvCommFail = NO;
  241. break;
  242. }
  243. }
  244. }
  245. void CANReceiver(int fd)
  246. {
  247. pid_t canRecPid;
  248. canRecPid = fork();
  249. if (canRecPid < 0) {
  250. log_error("Create CAN Bus receive task failed");
  251. return;
  252. }
  253. if (canRecPid == 0) {
  254. int isContinue = 1;
  255. int nbytes;
  256. int intCmd;
  257. uint8_t _index = 0;
  258. uint8_t recvID = 0;
  259. uint8_t targetGun = 0x00;
  260. uint8_t gunTypeIndex = 0;
  261. uint8_t ver[16] = {0};
  262. uint8_t printChillerTemp = NO;
  263. uint8_t printConnTemp = NO;
  264. uint8_t chillerTemp[2] = {0, 0};
  265. uint8_t maxChillerTemp = 0;
  266. uint8_t lastChillerTemp[2] = {0};
  267. uint8_t maxConnTemp = 0;
  268. uint8_t lastConnTemp[2] = {0, 0};
  269. struct can_frame frame;
  270. ChillerTemp chiilerTemp = {0};
  271. time_t CCS_PlugoutTimer[2] = { 0 };
  272. struct ChargingInfoData *pDcChargingInfo = NULL;
  273. int len = 0;
  274. char _info[1024];
  275. int i;
  276. unsigned char GunStatus[2];
  277. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  278. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  279. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  280. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  281. ShmCHAdeMOData = (struct CHAdeMOData *)GetShmCHAdeMOData();
  282. ShmGBTData = (struct GBTData *)GetShmGBTData();
  283. ShmCcsData = (struct CcsData *)GetShmCcsData();
  284. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  285. ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();
  286. ShmDcCommonData->pGunStatus[0].EVLoseTimer = time((time_t*)NULL);
  287. ShmDcCommonData->pGunStatus[1].EVLoseTimer = time((time_t*)NULL);
  288. //log_info("Module_EvRXComm Child's PID is %d", getpid());
  289. CCS_PlugoutTimer[0] = time((time_t*)NULL);
  290. CCS_PlugoutTimer[1] = time((time_t*)NULL);
  291. while (isContinue) {
  292. memset(&frame, 0, sizeof(struct can_frame));
  293. for (_index = 0; _index < pSysConfig->TotalConnectorCount; _index++) {
  294. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(_index);
  295. // 檢查是否有收到EV小板訊號
  296. if (pSysInfo->SelfTestSeq == _STEST_COMPLETE) {
  297. if ((time((time_t*)NULL) - ShmDcCommonData->pGunStatus[_index].EVLoseTimer > 10) &&
  298. !ShmDcCommonData->pGunStatus[_index].EVLoseFlag && pSysInfo->SelfTestSeq == _STEST_COMPLETE &&
  299. pDcChargingInfo->SystemStatus != S_UPDATE && !ShmDcCommonData->debugflag) {
  300. ShmDcCommonData->pGunStatus[_index].EVLoseTimer = time((time_t*)NULL);
  301. ShmDcCommonData->pGunStatus[_index].EVLoseFlag = TRUE;
  302. system("/sbin/ip link set can0 down");
  303. sleep(1);
  304. system("/sbin/ip link set can0 type can bitrate 500000 restart-ms 100");
  305. system("/sbin/ip link set can0 up");
  306. }
  307. } else {
  308. ShmDcCommonData->pGunStatus[targetGun].EVLoseTimer = time((time_t*)NULL);
  309. ShmDcCommonData->pGunStatus[targetGun].EVLoseFlag = FALSE;
  310. }
  311. CheckEvConnect(_index);
  312. }
  313. nbytes = read(fd, &frame, sizeof(struct can_frame));
  314. if (nbytes <= 0) {
  315. usleep(10000);
  316. continue;
  317. }
  318. recvID = 0;
  319. targetGun = 0x00;
  320. intCmd = (int) (frame.can_id & CAN_EFF_MASK);
  321. if (intCmd == ADDRESS_REQ) {
  322. //ShmDcCommonData->CcsVersion = _CCS_VERSION_CHECK_TAG_V013S0;
  323. AddrAssignment(frame.data);
  324. continue;
  325. }
  326. intCmd = (int) (frame.can_id & CAN_EFF_MASK & 0xFFFFFF00);
  327. recvID = ((uint8_t) (frame.can_id & 0x000000FF)); // 0x01 or 0x02
  328. if (ShmDcCommonData->showCanPackage) {
  329. len = 0;
  330. len += sprintf(&_info[len], "CAN Dispenser <= EV Rx:\t[0x%X] ", frame.can_id);
  331. for (i = 0; i < nbytes; i++) {
  332. len += sprintf(&_info[len], "%X ", frame.data[i]);
  333. }
  334. len += sprintf(&_info[len], "\n");
  335. printf("%s", _info);
  336. }
  337. for (_index = 0; _index < pSysConfig->TotalConnectorCount; _index++) { // 假設有找到回應的 Index
  338. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(_index);
  339. //if (gun_count == 1 &&
  340. // _chargingData[_index]->Type == _Type_CCS_2 &&
  341. // ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  342. // target -= 1;
  343. //}
  344. if (pDcChargingInfo->Evboard_id == recvID) {
  345. targetGun = _index;
  346. break;
  347. }
  348. }
  349. if ((targetGun < 0) || (targetGun >= CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)) {
  350. log_info("EvComm (CANReceiver) : Target index = %x is < 0 or > QUANTITY ", targetGun);
  351. usleep(10000);
  352. continue;
  353. }
  354. //else if (gun_count == 1 && targetGun == 0 && findIndex == 1 &&
  355. // ShmDcCommonData->CcsVersion == _CCS_VERSION_CHECK_TAG_V015S0) {
  356. // // 這樣的條件下~ 也是單槍 CCS 舊版本的狀況 : 因為舊版 CCS 不會 timeout, then send request id
  357. // ShmDcCommonData->CcsVersion = _CCS_VERSION_CHECK_TAG_V013S0;
  358. //}
  359. if (intCmd == 256) {
  360. log_info("EvComm command = 256");
  361. usleep(10000);
  362. continue;
  363. }
  364. // Reset Connect Timer
  365. ShmDcCommonData->pGunStatus[targetGun].EVLoseTimer = time((time_t*)NULL);
  366. ShmDcCommonData->pGunStatus[targetGun].EVLoseFlag = FALSE;
  367. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(targetGun);
  368. gunTypeIndex = pDcChargingInfo->type_index;
  369. switch (intCmd) {
  370. case NOTIFICATION_EV_STATUS:
  371. if (pDcChargingInfo->ConnectorPlugIn != frame.data[0]) {
  372. if (frame.data[0] == PLUG) {
  373. log_info("Conn %d, Plugin. ", targetGun);
  374. pDcChargingInfo->isEVCCIDVerify = false;
  375. #ifdef DD360Audi
  376. if (pSysConfig->isAuthrizeByEVCCID)
  377. pSysInfo->CurGunSelected = targetGun;
  378. #endif
  379. } else if (frame.data[0] == UNPLUG) {
  380. if (pDcChargingInfo->Type != _Type_CCS_2)
  381. log_info("Conn %d, Unplug. ", targetGun);
  382. strcpy( (char *) pDcChargingInfo->EVCCID, "");
  383. } else {
  384. log_info("Conn %d, None Check. (%d) ", targetGun, frame.data[0]);
  385. }
  386. if(pDcChargingInfo->RemoteStartFlag == YES) {
  387. pSysInfo->CurGunSelected = targetGun;
  388. }
  389. }
  390. pDcChargingInfo->PilotVoltage = frame.data[1];
  391. // CCS 小板確認Pilot Voltage != 0
  392. if (pDcChargingInfo->Type == _Type_CCS_2 && pDcChargingInfo->PilotVoltage != 0) {
  393. if (frame.data[0] == UNPLUG && pDcChargingInfo->ConnectorPlugIn != frame.data[0])
  394. log_info("Conn %d, Unplug. ", targetGun);
  395. pDcChargingInfo->ConnectorPlugIn = frame.data[0];
  396. } else {
  397. pDcChargingInfo->ConnectorPlugIn = frame.data[0];
  398. }
  399. //log_info("index = %d, ConnectorPlugIn = %x, data[0] = %x ",
  400. // targetGun,
  401. // pDcChargingInfo->ConnectorPlugIn,
  402. // frame.data[0]);
  403. //log_info("ConnectorPlugIn = %x ", (-120 + frame.data[1]) / 10);
  404. break;
  405. case ACK_EV_FW_VERSION:
  406. memset(ver, 0, sizeof(ver));
  407. if (pDcChargingInfo->Type == _Type_Chademo) {
  408. memcpy(ver, frame.data, frame.can_dlc);
  409. memcpy(ShmCHAdeMOData->evse[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  410. ShmCHAdeMOData->evse[gunTypeIndex].SelfTest_Comp = PASS;
  411. log_info("chademo ver. : %s", ShmCHAdeMOData->evse[gunTypeIndex].version);
  412. } else if (pDcChargingInfo->Type == _Type_GB) {
  413. memcpy(ver, frame.data, frame.can_dlc);
  414. memcpy(ShmGBTData->evse[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  415. ShmGBTData->evse[gunTypeIndex].SelfTest_Comp = PASS;
  416. log_info("gbt ver. : %s", ShmGBTData->evse[gunTypeIndex].version);
  417. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  418. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  419. memcpy(ver, frame.data, frame.can_dlc); //DS60-120 add
  420. //for (uint8_t _vCount = 0, _vPoint = 0; _vCount < frame.can_dlc; _vCount++) {//DS60-120 remove
  421. /*if (_vCount % 2 == 0 && _vCount != 0)
  422. {
  423. ver[_vCount + _vPoint] = 0x2E;
  424. _vPoint++;
  425. }*/
  426. //ver[_vCount + _vPoint] = frame.data[_vCount];
  427. //}
  428. memcpy(&ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].version, ver, ARRAY_SIZE(ver));
  429. ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].SelfTest_Comp = PASS;
  430. log_info("CCS FW = %s ", ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].version);
  431. }
  432. }
  433. if (targetGun == 0) {
  434. memset(pSysInfo->Connector1FwRev,
  435. 0,
  436. sizeof(pSysInfo->Connector1FwRev));
  437. memcpy(pSysInfo->Connector1FwRev, ver, ARRAY_SIZE(ver));
  438. } else if (targetGun == 1) {
  439. memset(pSysInfo->Connector2FwRev,
  440. 0,
  441. sizeof(pSysInfo->Connector2FwRev));
  442. memcpy(pSysInfo->Connector2FwRev, ver, ARRAY_SIZE(ver));
  443. }
  444. break;
  445. case ACK_EV_HW_VERSION:
  446. //log_info("Get EV HW = %s ", frame.data);
  447. break;
  448. case ACK_GET_OUTPUT_REQ:
  449. //DS60-120 add
  450. if ((pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EV &&
  451. pDcChargingInfo->SystemStatus <= S_TERMINATING) ||
  452. pDcChargingInfo->SystemStatus == S_ALARM ||
  453. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  454. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)
  455. ) {
  456. if (pDcChargingInfo->EvBatteryStartSoc <= 0 &&
  457. pDcChargingInfo->SystemStatus >= S_PREPARING_FOR_EVSE) {
  458. pDcChargingInfo->EvBatteryStartSoc = frame.data[1];
  459. }
  460. // 進入充電時重新更新電池電量
  461. if (GunStatus[targetGun] != pDcChargingInfo->SystemStatus && pDcChargingInfo->SystemStatus == S_CHARGING) {
  462. log_info("Reset Gun%d SoC:%d", targetGun, frame.data[1]);
  463. pDcChargingInfo->EvBatterySoc = frame.data[1];
  464. GunStatus[targetGun] = pDcChargingInfo->SystemStatus;
  465. }
  466. if (frame.data[1] > pDcChargingInfo->EvBatterySoc || pDcChargingInfo->SystemStatus == S_CHARGING) {
  467. pDcChargingInfo->EvBatterySoc = frame.data[1];
  468. if (frame.data[1] > pDcChargingInfo->EvBatterySoc)
  469. log_info("Gun%d SOC:%d", targetGun,pDcChargingInfo->EvBatterySoc);
  470. }
  471. }
  472. //pDcChargingInfo->EvBatterySoc = frame.data[1]; //DS60-120 remove
  473. //Jerry add set voltage limit
  474. pDcChargingInfo->EvBatterytargetVoltage = (float)((frame.data[3] << 8) + frame.data[2]) / 10;
  475. if (pDcChargingInfo->EvBatterytargetVoltage > (GetMaxChargingVol(targetGun) * 0.1)) {
  476. pDcChargingInfo->EvBatterytargetVoltage = (GetMaxChargingVol(targetGun) * 0.1);
  477. }
  478. //printf("id = %d, EvBatterytargetVoltage = %.2f", targetGun, pDcChargingInfo->EvBatterytargetVoltage);
  479. //Jerry add set currency limit
  480. pDcChargingInfo->EvBatterytargetCurrent = (float)((frame.data[5] << 8) + frame.data[4]) / 10;
  481. if (pDcChargingInfo->EvBatterytargetCurrent > (GetMaxCharginigCur(targetGun) * 0.1)) {
  482. pDcChargingInfo->EvBatterytargetCurrent = (GetMaxCharginigCur(targetGun) * 0.1);
  483. }
  484. //printf("id = %d, EvBatterytargetCurrent = %.2f", targetGun, pDcChargingInfo->EvBatterytargetCurrent);
  485. pDcChargingInfo->RemainChargingDuration = ((short) frame.data[7] << 8) + (short) frame.data[6];
  486. //printf("RemainChargingDuration = %d", pDcChargingInfo->RemainChargingDuration);
  487. if (pDcChargingInfo->Type == _Type_Chademo) {
  488. if (ShmCHAdeMOData->ev[gunTypeIndex].PresentMsgFlowStatus != frame.data[0]) {
  489. log_info("Gun%d CHAdeMO board status = %d ", targetGun, ShmCHAdeMOData->ev[gunTypeIndex].PresentMsgFlowStatus);
  490. ShmCHAdeMOData->ev[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  491. ShmDcCommonData->pGunInfo[targetGun].EVStatus = frame.data[0];
  492. }
  493. ShmCHAdeMOData->ev[gunTypeIndex].EvDetection = frame.data[0];
  494. ShmCHAdeMOData->ev[gunTypeIndex].SOC = pDcChargingInfo->EvBatterySoc;
  495. ShmCHAdeMOData->ev[gunTypeIndex].TargetBatteryVoltage = (pDcChargingInfo->EvBatterytargetVoltage * 10);
  496. ShmCHAdeMOData->ev[gunTypeIndex].ChargingCurrentRequest = (pDcChargingInfo->EvBatterytargetCurrent * 10);
  497. } else if (pDcChargingInfo->Type == _Type_GB) {
  498. if (ShmGBTData->ev[gunTypeIndex].PresentMsgFlowStatus != frame.data[0]) {
  499. log_info("Gun%d GB Board status = %d ", targetGun, ShmGBTData->ev[pDcChargingInfo->type_index].PresentMsgFlowStatus);
  500. ShmGBTData->ev[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  501. ShmDcCommonData->pGunInfo[targetGun].EVStatus = frame.data[0];
  502. }
  503. ShmGBTData->ev[gunTypeIndex].EvDetection = frame.data[0];
  504. ShmGBTData->ev[gunTypeIndex].SOC = pDcChargingInfo->EvBatterySoc;
  505. ShmGBTData->ev[gunTypeIndex].TargetBatteryVoltage = (pDcChargingInfo->EvBatterytargetVoltage * 10);
  506. ShmGBTData->ev[gunTypeIndex].ChargingCurrentRequest = (pDcChargingInfo->EvBatterytargetCurrent * 10);
  507. } else if (pDcChargingInfo->Type == _Type_CCS_2) {
  508. if (ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].PresentMsgFlowStatus != frame.data[0] && frame.data[0] != 0xFF) {
  509. log_info("Gun%d CCS board status = %d ", targetGun, ShmCcsData->V2GMessage_DIN70121[pDcChargingInfo->type_index].PresentMsgFlowStatus);
  510. ShmCcsData->V2GMessage_DIN70121[gunTypeIndex].PresentMsgFlowStatus = frame.data[0];
  511. ShmDcCommonData->pGunInfo[targetGun].EVStatus = frame.data[0];
  512. }
  513. }
  514. if (pDcChargingInfo->EvBatterytargetVoltage > (EvTargetVolt[targetGun] + 5) ||
  515. pDcChargingInfo->EvBatterytargetVoltage < (EvTargetVolt[targetGun] - 5) ||
  516. pDcChargingInfo->EvBatterytargetCurrent >(EvTargetCur[targetGun] + 2) ||
  517. pDcChargingInfo->EvBatterytargetCurrent < (EvTargetCur[targetGun] - 2)) {
  518. log_info("Gun%d TargetVoltage = %f , TargetCurrent = %f",
  519. targetGun, pDcChargingInfo->EvBatterytargetVoltage, pDcChargingInfo->EvBatterytargetCurrent);
  520. EvTargetVolt[targetGun] = pDcChargingInfo->EvBatterytargetVoltage;
  521. EvTargetCur[targetGun] = pDcChargingInfo->EvBatterytargetCurrent;
  522. }
  523. //log_info("EvBatterytargetVoltage = %f ", pDcChargingInfo->EvBatterytargetVoltage);
  524. //log_info("EvBatterytargetCurrent = %f ", pDcChargingInfo->EvBatterytargetCurrent);
  525. //log_info("BatteryVoltage = %d ",
  526. // ShmCHAdeMOData->ev[_chargingData[target]->type_index].TargetBatteryVoltage);
  527. //log_info("CurrentRequest = %d ",
  528. // ShmCHAdeMOData->ev[_chargingData[target]->type_index].ChargingCurrentRequest);
  529. break;
  530. case ACK_GET_EV_BATTERY_INFO:
  531. //_chargingData[target].EvACorDCcharging = frame.data[0];
  532. //_chargingData[target]->TotalBatteryCap = ((float) frame.data[4] << 8) + (short) frame.data[3];
  533. pDcChargingInfo->EvBatteryMaxVoltage = ((float)(((uint16_t)frame.data[4] << 8) + (uint16_t)frame.data[3])) / 10;
  534. //_chargingData[target]->EvBatteryMaxCurrent = ((float) frame.data[4] << 8) + (short) frame.data[3];
  535. //_chargingData[target].MaxiBatteryCurrent = ((short) frame.data[6] << 8) + (short) frame.data[5];
  536. if (pDcChargingInfo->Type == _Type_Chademo) {
  537. ShmCHAdeMOData->ev[gunTypeIndex].TotalBatteryCapacity = ((uint16_t)frame.data[2] << 8) + (uint16_t)frame.data[1];
  538. ShmCHAdeMOData->ev[gunTypeIndex].MaxiBatteryVoltage = pDcChargingInfo->EvBatteryMaxVoltage;
  539. //log_info("EvBatteryMaxVoltage = %f ", _chargingData[target]->EvBatteryMaxVoltage);
  540. //log_info("TotalBatteryCapacity = %d ", ShmCHAdeMOData->ev[_chargingData[target]->type_index].TotalBatteryCapacity);
  541. //log_info("MaxiBatteryVoltage = %d ", ShmCHAdeMOData->ev[_chargingData[target]->type_index].MaxiBatteryVoltage);
  542. } else if (pDcChargingInfo->Type == _Type_GB) {
  543. ShmGBTData->ev[gunTypeIndex].TotalBatteryCapacity = ((uint16_t)frame.data[2] << 8) + (uint16_t)frame.data[1];
  544. ShmGBTData->ev[gunTypeIndex].MaxiBatteryVoltage = pDcChargingInfo->EvBatteryMaxVoltage;
  545. }
  546. //else if (pDcChargingInfo->Type == _Type_CCS_2) {
  547. //}
  548. break;
  549. case ACK_GET_MISCELLANEOUS_INFO:
  550. pDcChargingInfo->GunLocked = frame.data[0];
  551. pDcChargingInfo->PilotVoltage = ((float)(-120 + frame.data[3])) / 10;
  552. if (pDcChargingInfo->Type == _Type_Chademo) {
  553. ShmCHAdeMOData->evse[gunTypeIndex].ConnectorTemperatureP = frame.data[1];
  554. ShmCHAdeMOData->evse[gunTypeIndex].ConnectorTemperatureN = frame.data[2];
  555. ShmCHAdeMOData->evse[gunTypeIndex].EvboardStatus = frame.data[7];
  556. } else if (pDcChargingInfo->Type == _Type_GB) {
  557. ShmGBTData->evse[gunTypeIndex].ConnectorTemperatureP = frame.data[1];
  558. ShmGBTData->evse[gunTypeIndex].ConnectorTemperatureN = frame.data[2];
  559. ShmGBTData->evse[gunTypeIndex].EvboardStatus = frame.data[7];
  560. }
  561. /*else if (pDcChargingInfo->Type == _Type_CCS_2) {
  562. if (ShmCcsData->CommProtocol == _CCS_COMM_V2GMessage_DIN70121) {
  563. //ShmCcsData->V2GMessage_DIN70121[gunTypeIndex]. .ConnectorTemperatureP = frame.data[1];
  564. //ShmCcsData->V2GMessage_DIN70121[gunTypeIndex]. .ConnectorTemperatureN = frame.data[2];
  565. }
  566. }*/
  567. ShmDcCommonData->ConnectorTemp[gunTypeIndex][0] = frame.data[1];
  568. ShmDcCommonData->ConnectorTemp[gunTypeIndex][1] = frame.data[2];
  569. if (ShmDcCommonData->TestTemperature == YES) { //ReadCmdline test
  570. break;
  571. }
  572. printChillerTemp = NO;
  573. printConnTemp = NO;
  574. if (((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x80) >> 7) == YES) {
  575. getChillerTemperature(&chiilerTemp);
  576. memcpy((char *)ShmDcCommonData->SystemTemp, (char *)chiilerTemp.Temp, sizeof(ChillerTemp));
  577. chillerTemp[0] = getMaxConnectTemp(chiilerTemp.Temp[0], chiilerTemp.Temp[1]);
  578. chillerTemp[1] = getMaxConnectTemp(chiilerTemp.Temp[2], chiilerTemp.Temp[3]);
  579. if ((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x7F) == 1) {
  580. // 單Chiller
  581. maxChillerTemp = getMaxConnectTemp(chillerTemp[0], chillerTemp[1]);
  582. } else {
  583. // 雙Chiller
  584. if (gunTypeIndex == 0) {
  585. maxChillerTemp = chillerTemp[0];
  586. } else {
  587. maxChillerTemp = chillerTemp[1];
  588. }
  589. }
  590. //if ((maxChillerTemp - 3) >= pDcChargingInfo->ChillerTemp) {
  591. // printChillerTemp = YES;
  592. //}
  593. if(maxChillerTemp > (lastChillerTemp[gunTypeIndex] + 2) || maxChillerTemp < (lastChillerTemp[gunTypeIndex] - 2))
  594. {
  595. lastChillerTemp[gunTypeIndex] = maxChillerTemp;
  596. printChillerTemp = YES;
  597. }
  598. pDcChargingInfo->ChillerTemp = maxChillerTemp;
  599. }
  600. if (ShmDcCommonData->ConnectorTemp[gunTypeIndex][0] != 0 && ShmDcCommonData->ConnectorTemp[gunTypeIndex][1] != 0) {
  601. maxConnTemp = getMaxConnectTemp(frame.data[1], frame.data[2]);
  602. //if ((maxConnTemp - 3) >= pDcChargingInfo->ConnectorTemp) {
  603. // printConnTemp = YES;
  604. //}
  605. maxConnTemp = getAvageTemp(maxConnTemp, targetGun);
  606. if (maxConnTemp > (lastConnTemp[targetGun] + 2) || maxConnTemp < (lastConnTemp[targetGun] - 2))
  607. {
  608. lastConnTemp[targetGun] = maxConnTemp;
  609. printConnTemp = YES;
  610. }
  611. pDcChargingInfo->ConnectorTemp = maxConnTemp;
  612. } else {
  613. //log_info("Connector%d Tmep is zero:[%d,%d]", gunTypeIndex, ShmDcCommonData->ConnectorTemp[gunTypeIndex][0],
  614. // ShmDcCommonData->ConnectorTemp[gunTypeIndex][1]);
  615. }
  616. //紀錄槍頭和水冷機溫度, 在系統狀態變化或溫度大於150
  617. if ((ShmDcCommonData->SystemModeChange[targetGun] == YES) ||
  618. (printConnTemp == YES) ||
  619. (printChillerTemp == YES) //&&
  620. //(((pDcChargingInfo->ConnectorTemp >= GUN_OTP_VALUE) &&
  621. // (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP)) ||
  622. // ((pDcChargingInfo->ChillerTemp >= GUN_OTP_VALUE) &&
  623. // (pDcChargingInfo->ChillerTemp != UNDEFINED_TEMP)))
  624. ) {
  625. ShmDcCommonData->SystemModeChange[targetGun] = NO;
  626. log_info("Conn %d max temp = %d, chiller = [%d %d], chiller2 = [%d %d]",
  627. targetGun,
  628. pDcChargingInfo->ConnectorTemp,
  629. chiilerTemp.Temp[0],
  630. chiilerTemp.Temp[1],
  631. chiilerTemp.Temp[2],
  632. chiilerTemp.Temp[3]);
  633. }
  634. if (((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x80) >> 7) == YES) {
  635. //沒有水冷槍
  636. break;
  637. }
  638. if ((ShmDcCommonData->ChillerValve.MultiChillerGun & 0x7F) == 1) {
  639. //單一水冷槍,不需要切換水冷機油閥
  640. //ShmFanModuleData-> ? = YES; //尚未定義
  641. break;
  642. }
  643. //紀錄槍頭溫度
  644. if (pDcChargingInfo->ConnectorTemp != UNDEFINED_TEMP) {
  645. if (targetGun == 0) {
  646. ShmDcCommonData->ChillerValve.LeftTemp = pDcChargingInfo->ConnectorTemp;
  647. } else if (targetGun == 1) {
  648. ShmDcCommonData->ChillerValve.RightTemp = pDcChargingInfo->ConnectorTemp;
  649. }
  650. }
  651. //有兩把水冷槍,判斷兩把槍頭溫度,將水冷機節流閥導向溫度高的那一把槍
  652. if (ShmDcCommonData->ChillerValve.LeftTemp > ShmDcCommonData->ChillerValve.RightTemp) {
  653. //ShmFanModuleData->? = YES; //尚未定義
  654. } else {
  655. //ShmFanModuleData->? = NO; //尚未定義
  656. }
  657. //log_info("EvboardStatus = %x ",
  658. // ShmCHAdeMOData->evse[gunTypeIndex].EvboardStatus);
  659. //log_info("ConnectorPlug locked = %x ",
  660. // frame.data[0]);
  661. //log_info("PilotVoltage = %x ", (-120 + frame.data[3]) / 10);
  662. break;
  663. case ACK_EVSE_ISOLATION_STATUS:
  664. break;
  665. case ACK_EVSE_PRECHAGE_INFO:
  666. pDcChargingInfo->PrechargeStatus = frame.data[0];
  667. break;
  668. case NOTIFICATION_EV_STOP:
  669. // 車端要求停止
  670. if ((pDcChargingInfo->SystemStatus >= S_REASSIGN_CHECK && //DS60-120 add
  671. pDcChargingInfo->SystemStatus <= S_TERMINATING) ||
  672. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 &&
  673. pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1)) {
  674. // frame.data[0] : 0x01 => normal stop, 0x02 => ev emergency stop
  675. log_info("----------------------------- Gun%d NOTIFICATION_EV_STOP err level = %d -----------------------------",
  676. targetGun,
  677. frame.data[0]);
  678. if (frame.data[0] == 0x02) {
  679. if (AbnormalStopAnalysis(targetGun, frame.data + 1) == true) {
  680. pDcChargingInfo->StopChargeFlag = YES;
  681. } else {
  682. pDcChargingInfo->NormalStopChargeFlag = YES;
  683. }
  684. } else {
  685. AbnormalStopAnalysis(targetGun, frame.data + 1);
  686. pDcChargingInfo->NormalStopChargeFlag = YES;
  687. }
  688. }
  689. break;
  690. case ACK_EVCCID_REQ:
  691. if (frame.can_dlc > 0 && strcmp ( (char *)pDcChargingInfo->EVCCID, "" ) == EQUAL &&
  692. pDcChargingInfo->Type == _Type_CCS_2)
  693. {
  694. {
  695. memset (
  696. ShmCcsData->V2GMessage_DIN70121 [pDcChargingInfo->type_index].SessionSetupRequest.EVCCID,
  697. 0,
  698. sizeof(ShmCcsData->V2GMessage_DIN70121 [pDcChargingInfo->type_index].SessionSetupRequest.EVCCID) );
  699. memcpy (
  700. ShmCcsData->V2GMessage_DIN70121 [pDcChargingInfo->type_index].SessionSetupRequest.EVCCID,
  701. frame.data, frame.can_dlc );
  702. }
  703. sprintf ( (char *) pDcChargingInfo->EVCCID, "%.2x%.2x%.2x%.2x%.2x%.2x", frame.data [0],
  704. frame.data [1], frame.data [2], frame.data [3], frame.data [4], frame.data [5] );
  705. pDcChargingInfo->EVCCID [17] = '\0';
  706. log_info( "Gun %d->EVCCID = %s ", targetGun, pDcChargingInfo->EVCCID );
  707. }
  708. break;
  709. default:
  710. log_info("EV board = %d, Ack none defined. intCmd = %d ", targetGun, intCmd);
  711. break;
  712. }//switch
  713. usleep(10000);
  714. }//while
  715. }
  716. }