Module_PrimaryComm.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/shm.h>
  11. #include <sys/mman.h>
  12. #include <linux/wireless.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <stdbool.h>
  16. #include <unistd.h>
  17. #include <stdarg.h>
  18. #include <stdio.h> /*標準輸入輸出定義*/
  19. #include <stdlib.h> /*標準函數庫定義*/
  20. #include <unistd.h> /*Unix 標準函數定義*/
  21. #include <fcntl.h> /*檔控制定義*/
  22. #include <termios.h> /*PPSIX 終端控制定義*/
  23. #include <errno.h> /*錯誤號定義*/
  24. #include <errno.h>
  25. #include <string.h>
  26. #include <time.h>
  27. #include <ctype.h>
  28. #include <ifaddrs.h>
  29. #include <math.h>
  30. #include "../Log/log.h"
  31. #include "../Define/define.h"
  32. #include "../Config.h"
  33. #include "../ShareMemory/shmMem.h"
  34. #include "PrimaryComm.h"
  35. #include "Module_PrimaryComm.h"
  36. //------------------------------------------------------------------------------
  37. //struct SysConfigAndInfo *ShmSysConfigAndInfo;
  38. //struct StatusCodeData *ShmStatusCodeData;
  39. static struct SysConfigData *pSysConfig = NULL;
  40. static struct SysInfoData *pSysInfo = NULL;
  41. static struct AlarmCodeData *pAlarmCode = NULL;
  42. static struct FaultCodeData *pFaultCode = NULL;
  43. static struct PrimaryMcuData *ShmPrimaryMcuData;
  44. const char *priPortName = "/dev/ttyS1";
  45. uint8_t gun_count; //DS60-120 add
  46. //struct ChargingInfoData *ChargingData[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  47. //------------------------------------------------------------------------------
  48. /*int StoreLogMsg(const char *fmt, ...)
  49. {
  50. char Buf[4096 + 256];
  51. char buffer[4096];
  52. va_list args;
  53. struct timeb SeqEndTime;
  54. struct tm *tm;
  55. va_start(args, fmt);
  56. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  57. va_end(args);
  58. memset(Buf, 0, sizeof(Buf));
  59. ftime(&SeqEndTime);
  60. SeqEndTime.time = time(NULL);
  61. tm = localtime(&SeqEndTime.time);
  62. if (pSysConfig->SwitchDebugFlag == YES) {
  63. sprintf(Buf, "%02d:%02d:%02d:%03d - %s",
  64. tm->tm_hour, tm->tm_min, tm->tm_sec, SeqEndTime.millitm, buffer);
  65. printf("%s \n", Buf);
  66. } else {
  67. sprintf(Buf, "echo \"%04d-%02d-%02d %02d:%02d:%02d:%03d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  68. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, SeqEndTime.millitm,
  69. buffer,
  70. tm->tm_year + 1900, tm->tm_mon + 1);
  71. system(Buf);
  72. }
  73. return rc;
  74. }
  75. */
  76. #if 0 //non use
  77. int DiffTimeb(struct timeb ST, struct timeb ET)
  78. {
  79. //return milli-second
  80. unsigned int StartTime, StopTime;
  81. StartTime = (unsigned int)ST.time;
  82. StopTime = (unsigned int)ET.time;
  83. return (StopTime - StartTime) * 1000 + ET.millitm - ST.millitm;
  84. }
  85. //=================================
  86. // Common routine
  87. //=================================
  88. char *getTimeString(void)
  89. {
  90. char *result = malloc(21);
  91. time_t timep;
  92. struct tm *p;
  93. time(&timep);
  94. p = gmtime(&timep);
  95. sprintf(result, "[%04d-%02d-%02d %02d:%02d:%02d]",
  96. (1900 + p->tm_year),
  97. (1 + p->tm_mon),
  98. p->tm_mday,
  99. p->tm_hour,
  100. p->tm_hour,
  101. p->tm_sec);
  102. return result;
  103. }
  104. #endif //0
  105. //==========================================
  106. // Init all share memory
  107. //==========================================
  108. /*int InitShareMemory()
  109. {
  110. int result = PASS;
  111. int MeterSMId;
  112. //creat ShmSysConfigAndInfo
  113. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0) {
  114. result = FAIL;
  115. } else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) - 1) {
  116. result = FAIL;
  117. }
  118. //creat ShmStatusCodeData
  119. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0) {
  120. result = FAIL;
  121. } else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) - 1) {
  122. result = FAIL;
  123. }
  124. //creat ShmStatusCodeData
  125. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), 0777)) < 0) {
  126. result = FAIL;
  127. } else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) - 1) {
  128. result = FAIL;
  129. }
  130. return result;
  131. }
  132. */
  133. //================================================
  134. // Function
  135. //================================================
  136. void GetFwAndHwVersion(int fd)
  137. {
  138. Ver ver = {0};
  139. if (Query_FW_Ver(fd, OP_ADDR_IO_EXTEND, &ver) == PASS) {
  140. //log_info("Primary FW Rev = %s \n", ver.Version_FW);
  141. strcpy((char *)ShmPrimaryMcuData->version, ver.Version_FW);
  142. strcpy((char *) pSysInfo->CsuPrimFwRev, ver.Version_FW);
  143. }
  144. //if (Query_HW_Ver(fd, OP_ADDR_IO_EXTEND, &ver) == PASS)
  145. // ;//log_info("Primary HW Rev = %s \n", ver.Version_HW);
  146. }
  147. void GetInputGpioStatus(int fd)
  148. {
  149. uint8_t dispenserSwTmp = 0;
  150. Gpio_in gpio_in = {0};
  151. static uint8_t dispenserSw = 0;
  152. //log_info("GetInputGpioStatus \n");
  153. if (Query_Gpio_Input(fd, OP_ADDR_IO_EXTEND, &gpio_in) != PASS) {
  154. return;
  155. }
  156. ShmPrimaryMcuData->InputDet.bits.SpdDetec = gpio_in.SPD;
  157. #if defined DD360ComBox
  158. ShmPrimaryMcuData->InputDet.bits.EmergencyButton = ~gpio_in.Emergency_Btn;
  159. #else
  160. ShmPrimaryMcuData->InputDet.bits.EmergencyButton = gpio_in.Emergency_Btn;
  161. #endif //defined DD360ComBox
  162. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key0);
  163. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key1 << 1);
  164. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key2 << 2);
  165. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key3 << 3);
  166. if (dispenserSwTmp != dispenserSw) {
  167. dispenserSw = dispenserSwTmp;
  168. log_info("Dispenser switch number = %d, bit = %d, %d, %d, %d\r\n",
  169. dispenserSw,
  170. ShmPrimaryMcuData->InputDet.bits.Key3,
  171. ShmPrimaryMcuData->InputDet.bits.Key2,
  172. ShmPrimaryMcuData->InputDet.bits.Key1,
  173. ShmPrimaryMcuData->InputDet.bits.Key0);
  174. }
  175. ShmPrimaryMcuData->InputDet.bits.Button1 = gpio_in.Button[0];
  176. ShmPrimaryMcuData->InputDet.bits.Button2 = gpio_in.Button[1];
  177. #if defined DD360 || defined DD360Audi || defined DD360ComBox
  178. if ((strncmp((char *)&pSysConfig->ModelName[7], "V", 1) == 0) ||
  179. (strncmp((char *)&pSysConfig->ModelName[9], "V", 1) == 0) ||
  180. (strncmp((char *)&pSysConfig->ModelName[7], "F", 1) == 0) ||
  181. (strncmp((char *)&pSysConfig->ModelName[9], "F", 1) == 0)
  182. ) {
  183. pAlarmCode->AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning = ~gpio_in.AC_Connector;
  184. pFaultCode->FaultEvents.bits.CcsLiquidChillerWaterLevelFault = ~gpio_in.AC_MainBreaker;
  185. } else {
  186. pAlarmCode->AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning = gpio_in.AC_Connector;
  187. pFaultCode->FaultEvents.bits.CcsLiquidChillerWaterLevelFault = gpio_in.AC_MainBreaker;
  188. }
  189. #if defined DD360ComBox
  190. ShmPrimaryMcuData->InputDet.bits.DoorOpen = gpio_in.Door_Open;
  191. #else
  192. ShmPrimaryMcuData->InputDet.bits.DoorOpen = ~gpio_in.Door_Open;
  193. #endif //defined DD360ComBox
  194. ShmPrimaryMcuData->InputDet.bits.Key0 = ~gpio_in.Key[0] & 0x01;
  195. ShmPrimaryMcuData->InputDet.bits.Key1 = ~gpio_in.Key[1] & 0x01;
  196. ShmPrimaryMcuData->InputDet.bits.Key2 = ~gpio_in.Key[2] & 0x01;
  197. ShmPrimaryMcuData->InputDet.bits.Key3 = ~gpio_in.Key[3] & 0x01;
  198. return;
  199. #endif //defined DD360 || defined DD360Audi || defined DD360ComBox
  200. static uint8_t _curDeviceStatus[3] = {0};
  201. static uint8_t _reCheckCount[3] = {0};
  202. //DS60-120 add
  203. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] != gpio_in.AC_Connector) {
  204. if (_reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] >= 3) {
  205. _curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] = gpio_in.AC_Connector;
  206. pSysInfo->AcContactorStatus =
  207. ShmPrimaryMcuData->InputDet.bits.AcContactorDetec =
  208. gpio_in.AC_Connector;
  209. } else {
  210. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT]++;
  211. }
  212. } else {
  213. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] = 0;
  214. }
  215. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] != gpio_in.AC_MainBreaker) {
  216. if (_reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] >= 3) {
  217. _curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = gpio_in.AC_MainBreaker;
  218. ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec = gpio_in.AC_MainBreaker;
  219. } else {
  220. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER]++;
  221. }
  222. } else {
  223. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = 0;
  224. }
  225. //pSysInfo->AcContactorStatus = ShmPrimaryMcuData->InputDet.bits.AcContactorDetec = gpio_in.AC_Connector;
  226. //ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec = gpio_in.AC_MainBreaker;
  227. ShmPrimaryMcuData->InputDet.bits.Key0 = gpio_in.Key[0] & 0x01;
  228. ShmPrimaryMcuData->InputDet.bits.Key1 = gpio_in.Key[1] & 0x01;
  229. ShmPrimaryMcuData->InputDet.bits.Key2 = gpio_in.Key[2] & 0x01;
  230. ShmPrimaryMcuData->InputDet.bits.Key3 = gpio_in.Key[3] & 0x01;
  231. ShmPrimaryMcuData->InputDet.bits.DoorOpen = gpio_in.Door_Open;
  232. /*printf(" gpio_in.Key[0]~ gpio_in.Key[3]=%d, %d, %d, %d\n",
  233. ShmPrimaryMcuData->InputDet.bits.Key0 , ShmPrimaryMcuData->InputDet.bits.Key1,
  234. ShmPrimaryMcuData->InputDet.bits.Key2,ShmPrimaryMcuData->InputDet.bits.Key3);
  235. printf("pAlarmCode->AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning=%d\n", pAlarmCode->AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning);
  236. printf("pFaultCode->FaultEvents.bits.CcsLiquidChillerWaterLevelFault=%d\n", pFaultCode->FaultEvents.bits.CcsLiquidChillerWaterLevelFault);
  237. */
  238. //log_info("left = %d \n", ShmPrimaryMcuData->InputDet.bits.Button1);
  239. //log_info("right = %d \n", ShmPrimaryMcuData->InputDet.bits.Button2);
  240. //log_info("pSysInfo->AcContactorStatus = %d \n", pSysInfo->AcContactorStatus);
  241. if (ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec == YES) {
  242. log_error("AC Mainbreaker occur. \n");
  243. }
  244. }
  245. static void checkChillerStatus(Gpio_out *gpio)
  246. {
  247. uint8_t gunIndex = 0;
  248. uint8_t chillerCount = 0;
  249. struct ChargingInfoData *pDcChargingInfo = NULL;
  250. static ChillerInfo fChillerInfo[2] = {0}, *pChillerInfo = NULL;
  251. static ChillerInfo _chiller;
  252. Gpio_out *pGpio = (Gpio_out *)gpio;
  253. if ((strncmp((char *)&pSysConfig->ModelName[7], "V", 1) == 0) ||
  254. (strncmp((char *)&pSysConfig->ModelName[7], "F", 1) == 0)) {
  255. chillerCount++;
  256. }
  257. if ((strncmp((char *)&pSysConfig->ModelName[9], "V", 1) == 0) ||
  258. (strncmp((char *)&pSysConfig->ModelName[9], "F", 1) == 0)) {
  259. chillerCount++;
  260. }
  261. if (chillerCount == 0) {
  262. pGpio->AC_Connector = 0x00;
  263. return;
  264. }
  265. for (gunIndex = 0; gunIndex < chillerCount; gunIndex++) {
  266. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  267. pChillerInfo = (ChillerInfo *)&fChillerInfo[gunIndex];
  268. if((pDcChargingInfo->SystemStatus > S_IDLE && pDcChargingInfo->SystemStatus < S_TERMINATING) ||
  269. (pDcChargingInfo->SystemStatus >= S_CCS_PRECHARGE_ST0 && pDcChargingInfo->SystemStatus <= S_CCS_PRECHARGE_ST1))
  270. {
  271. pChillerInfo->ChillerSwitch = YES;
  272. pChillerInfo->ChillerOnTime = time((time_t *)NULL);
  273. }
  274. else
  275. {
  276. if(pChillerInfo->ChillerSwitch == YES)
  277. {
  278. //10分鐘後停止
  279. if ((time((time_t *)NULL) - pChillerInfo->ChillerOnTime) >= 600)
  280. {
  281. pChillerInfo->ChillerSwitch = NO;
  282. }
  283. }
  284. else
  285. {
  286. pChillerInfo->ChillerSwitch = NO;
  287. }
  288. }
  289. #if 0
  290. if ((pDcChargingInfo->PresentChargingCurrent) >= 150) { //當前電壓於150A,打開水冷機
  291. pChillerInfo->ChillerSwitch = YES;
  292. pChillerInfo->ChillerOnTime = time((time_t *)NULL);
  293. } else {
  294. if (pChillerInfo->ChillerSwitch == YES) {
  295. if ((pDcChargingInfo->PresentChargingCurrent) >= 100) { //判斷如果還是大於100A不變動
  296. pChillerInfo->ChillerSwitch = YES;
  297. pChillerInfo->ChillerOnTime = time((time_t *)NULL);
  298. } else {
  299. if ((time((time_t *)NULL) - pChillerInfo->ChillerOnTime) >= 600) { //5分鐘後停止
  300. pChillerInfo->ChillerSwitch = NO;
  301. } else {
  302. pChillerInfo->ChillerSwitch = YES;
  303. }
  304. }
  305. } else {
  306. pChillerInfo->ChillerSwitch = NO;
  307. }
  308. }
  309. #endif
  310. }
  311. uint8_t _chillerNeedOn = NO;
  312. for (gunIndex = 0; gunIndex < chillerCount; gunIndex++)
  313. {
  314. pChillerInfo = (ChillerInfo *)&fChillerInfo[gunIndex];
  315. if(pChillerInfo->ChillerSwitch == YES)
  316. {
  317. _chillerNeedOn = YES;
  318. }
  319. }
  320. if(_chiller.ChillerSwitch != _chillerNeedOn)
  321. {
  322. log_info("Chiller Need Turn %s\n", _chillerNeedOn == YES ? "ON" : "OFF");
  323. }
  324. _chiller.ChillerSwitch = _chillerNeedOn;
  325. pGpio->AC_Connector = _chiller.ChillerSwitch;//Chiller ON/OFF Control, "0: Chiller disable, 1: Chiller enable"
  326. }
  327. void SetOutputGpio(int fd, uint8_t outputValue)
  328. {
  329. Gpio_out gpio;
  330. LedConfig *pLedConfig = (LedConfig *)&outputValue;
  331. static uint8_t flash = NO;
  332. if (strcmp((char *)pSysInfo->LcmHwRev, " ") == 0x00) {
  333. if (flash == NO) {
  334. flash = YES;
  335. } else {
  336. flash = NO;
  337. }
  338. } else {
  339. if (flash == NO) {
  340. flash = YES;
  341. }
  342. }
  343. pLedConfig->LeftButtonLed = flash;
  344. pLedConfig->RightButtonLed = flash;
  345. gpio.Button_LED[0] = pLedConfig->LeftButtonLed;
  346. gpio.Button_LED[1] = pLedConfig->RightButtonLed;
  347. gpio.System_LED[0] = pLedConfig->GreenLED;
  348. gpio.System_LED[1] = pLedConfig->YellowLED;
  349. gpio.System_LED[2] = pLedConfig->RedLED;
  350. gpio.System_LED[3] = 0x00;
  351. checkChillerStatus(&gpio);
  352. gpio.AC_Breaker = 0x00;
  353. Config_Gpio_Output(fd, OP_ADDR_IO_EXTEND, &gpio);
  354. }
  355. void SetRtcData(int fd)
  356. {
  357. Rtc rtc = {0};
  358. struct timeb csuTime;
  359. struct tm *tmCSU;
  360. ftime(&csuTime);
  361. tmCSU = localtime(&csuTime.time);
  362. //log_info("Time : %04d-%02d-%02d %02d:%02d:%02d \n",
  363. // tmCSU->tm_year + 1900,
  364. // tmCSU->tm_mon + 1,
  365. // tmCSU->tm_mday,
  366. // tmCSU->tm_hour,
  367. // tmCSU->tm_min,
  368. // tmCSU->tm_sec);
  369. rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
  370. rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
  371. rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
  372. rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
  373. rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
  374. rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
  375. rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
  376. rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
  377. rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
  378. rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
  379. rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
  380. rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
  381. rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
  382. rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
  383. if (Config_Rtc_Data(fd, OP_ADDR_IO_EXTEND, &rtc) == PASS) {
  384. //log_info("SetRtc sucessfully. \n");
  385. } else {
  386. //log_info("SetRtc fail. \n");
  387. }
  388. }
  389. void SetModelName(int fd)
  390. {
  391. if (Config_Model_Name(fd, OP_ADDR_IO_EXTEND, pSysConfig->ModelName) == PASS) {
  392. }
  393. }
  394. //================================================
  395. // Main process
  396. //================================================
  397. int InitComPort()
  398. {
  399. int fd;
  400. struct termios tios;
  401. fd = open(priPortName, O_RDWR);
  402. if (fd <= 0) {
  403. #ifdef SystemLogMessage
  404. log_error("open 407 Communication port NG \n");
  405. #endif
  406. return -1;
  407. }
  408. ioctl (fd, TCGETS, &tios);
  409. tios.c_cflag = B115200 | CS8 | CLOCAL | CREAD;
  410. tios.c_lflag = 0;
  411. tios.c_iflag = 0;
  412. tios.c_oflag = 0;
  413. tios.c_cc[VMIN] = 0;
  414. tios.c_cc[VTIME] = (uint8_t)1;
  415. tios.c_lflag = 0;
  416. tcflush(fd, TCIFLUSH);
  417. ioctl (fd, TCSETS, &tios);
  418. return fd;
  419. }
  420. unsigned long GetTimeoutValue(struct timeval _sour_time)
  421. {
  422. struct timeval _end_time;
  423. gettimeofday(&_end_time, NULL);
  424. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  425. }
  426. //int FindChargingInfoData(uint8_t target, struct ChargingInfoData **chargingData)
  427. //{
  428. // for (uint8_t index = 0; index < CHAdeMO_QUANTITY; index++) {
  429. // if (pSysInfo->ChademoChargingData[index].Index == target) {
  430. // chargingData[target] = &pSysInfo->ChademoChargingData[index];
  431. // return 1;
  432. // }
  433. // }
  434. //
  435. // for (uint8_t index = 0; index < CCS_QUANTITY; index++) {
  436. // if (pSysInfo->CcsChargingData[index].Index == target) {
  437. // chargingData[target] = &pSysInfo->CcsChargingData[index];
  438. // return 1;
  439. // }
  440. // }
  441. //
  442. // for (uint8_t index = 0; index < GB_QUANTITY; index++) {
  443. // if (pSysInfo->GbChargingData[index].Index == target) {
  444. // chargingData[target] = &pSysInfo->GbChargingData[index];
  445. // return 1;
  446. // }
  447. // }
  448. //
  449. // return 0;
  450. //}
  451. //void Initialization() //DS60-120 add
  452. //{
  453. // bool isPass = false;
  454. // while (!isPass) {
  455. // isPass = true;
  456. // for (uint8_t _index = 0; _index < gun_count; _index++) {
  457. // if (!FindChargingInfoData(_index, &ChargingData[0])) {
  458. // log_error("EvComm (main) : FindChargingInfoData false \n");
  459. // isPass = false;
  460. // break;
  461. // }
  462. // }
  463. // sleep(1);
  464. // }
  465. //}
  466. static bool IsPrimaryProcessNeedPause(void)
  467. {
  468. bool _pause = false;
  469. static bool isPause = false;
  470. struct ChargingInfoData *pDcChargingInfo = NULL;
  471. for (uint8_t i = 0; i < pSysConfig->TotalConnectorCount; i++)
  472. {
  473. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(i);
  474. if(pDcChargingInfo->SystemStatus == S_UPDATE)
  475. {
  476. _pause = true;
  477. }
  478. }
  479. if(isPause != _pause)
  480. {
  481. log_info("Primary Process Now Is %s \n", _pause == true ? "Paused" : "Continued");
  482. }
  483. isPause = _pause;
  484. return _pause;
  485. }
  486. int main(void)
  487. {
  488. int Uart1Fd = -1;
  489. //if (InitShareMemory() == FAIL) {
  490. // log_error("InitShareMemory NG\r\n");
  491. // if (ShmStatusCodeData != NULL) {
  492. // pAlarmCode->AlarmEvents.bits.FailToCreateShareMemory = 1;
  493. // }
  494. // sleep(5);
  495. // return 0;
  496. //}
  497. if (CreateAllCsuShareMemory() == FAIL) {
  498. log_error("create share memory error\r\n");
  499. return FAIL;
  500. }
  501. MappingGunChargingInfo("Primary Task");
  502. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  503. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  504. pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  505. pFaultCode = (struct FaultCodeData *)GetShmFaultCodeData();
  506. ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  507. Uart1Fd = InitComPort();
  508. //log_info("407 Port id = %d \n", Uart1Fd);
  509. if (Uart1Fd < 0) {
  510. log_error("InitComPort (Uart1 : AM3352 - STM32) NG");
  511. if (pAlarmCode != NULL) {
  512. pAlarmCode->AlarmEvents.bits.CsuInitFailed = 1;
  513. }
  514. sleep(5);
  515. return 0;
  516. }
  517. SetRtcData(Uart1Fd);
  518. SetModelName(Uart1Fd);
  519. gun_count = pSysConfig->TotalConnectorCount;
  520. //Initialization();
  521. for (;;) {
  522. if(IsPrimaryProcessNeedPause() == true)
  523. {
  524. sleep(1);
  525. continue;
  526. }
  527. // 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
  528. // 模組更新 FW 後,需重新做
  529. if (ShmPrimaryMcuData->SelfTest_Comp != PASS) {
  530. //log_info("(407) Get Fw and Hw Ver. \n");
  531. GetFwAndHwVersion(Uart1Fd);
  532. sleep(1);
  533. ShmPrimaryMcuData->SelfTest_Comp = PASS;
  534. } else {
  535. SetOutputGpio(Uart1Fd, ShmPrimaryMcuData->OutputDrv.OutputDrvValue[0]);
  536. GetInputGpioStatus(Uart1Fd);
  537. }
  538. usleep(50000);
  539. }
  540. return FAIL;
  541. }