Module_PrimaryComm.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680
  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/mman.h>
  11. #include <linux/wireless.h>
  12. #include <arpa/inet.h>
  13. #include <netinet/in.h>
  14. #include <unistd.h>
  15. #include <stdarg.h>
  16. #include <stdio.h> /*標準輸入輸出定義*/
  17. #include <stdlib.h> /*標準函數庫定義*/
  18. #include <unistd.h> /*Unix 標準函數定義*/
  19. #include <fcntl.h> /*檔控制定義*/
  20. #include <termios.h> /*PPSIX 終端控制定義*/
  21. #include <errno.h> /*錯誤號定義*/
  22. #include <string.h>
  23. #include <time.h>
  24. #include <ctype.h>
  25. #include <ifaddrs.h>
  26. #include <math.h>
  27. #include "../../define.h"
  28. #include "PrimaryComm.h"
  29. #include <stdbool.h>
  30. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  31. #define PASS 1
  32. #define FAIL -1
  33. #define YES 1
  34. #define NO 0
  35. #define EQUAL 0
  36. typedef unsigned char byte;
  37. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  38. struct StatusCodeData *ShmStatusCodeData;
  39. struct PrimaryMcuData *ShmPrimaryMcuData;
  40. struct MeterInformation *ShmCsuMeterData;
  41. struct DcCommonInformation *ShmDcCommonData;
  42. void trim(char *s);
  43. int mystrcmp(char *p1,char *p2);
  44. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  45. void split(char **arr, char *str, const char *del);
  46. int Uart1Fd;
  47. char *priPortName = "/dev/ttyS1";
  48. Ver ver;
  49. Gpio_in gpio_in;
  50. Rtc rtc;
  51. struct timeval _flash_time;
  52. byte flash = NO;
  53. byte gun_count;
  54. byte _curDeviceStatus[3] = {0, 0, 0};
  55. byte _reCheckCount[3] = {0, 0, 0};
  56. struct ChargingInfoData *_chargingData[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  57. void PRINTF_FUNC(char *string, ...);
  58. int StoreLogMsg(const char *fmt, ...);
  59. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  60. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  61. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  62. int StoreLogMsg(const char *fmt, ...)
  63. {
  64. char Buf[4096+256];
  65. char buffer[4096];
  66. va_list args;
  67. struct timeb SeqEndTime;
  68. struct tm *tm;
  69. va_start(args, fmt);
  70. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  71. va_end(args);
  72. memset(Buf,0,sizeof(Buf));
  73. ftime(&SeqEndTime);
  74. SeqEndTime.time = time(NULL);
  75. tm=localtime(&SeqEndTime.time);
  76. if (ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag == YES)
  77. {
  78. sprintf(Buf,"%02d:%02d:%02d:%03d - %s",
  79. tm->tm_hour,tm->tm_min,tm->tm_sec,SeqEndTime.millitm, buffer);
  80. printf("%s \n", Buf);
  81. }
  82. else
  83. {
  84. sprintf(Buf,"echo \"%04d-%02d-%02d %02d:%02d:%02d:%03d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog_%s",
  85. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,SeqEndTime.millitm,
  86. buffer,
  87. tm->tm_year+1900,tm->tm_mon+1,
  88. ShmSysConfigAndInfo->SysConfig.SerialNumber);
  89. system(Buf);
  90. }
  91. return rc;
  92. }
  93. int DiffTimeb(struct timeb ST, struct timeb ET)
  94. {
  95. //return milli-second
  96. unsigned int StartTime,StopTime;
  97. StartTime=(unsigned int)ST.time;
  98. StopTime=(unsigned int)ET.time;
  99. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  100. }
  101. void PRINTF_FUNC(char *string, ...)
  102. {
  103. va_list args;
  104. char buffer[4096];
  105. va_start(args, string);
  106. vsnprintf(buffer, sizeof(buffer), string, args);
  107. va_end(args);
  108. DEBUG_INFO("%s ", buffer);
  109. }
  110. //=================================
  111. // Common routine
  112. //=================================
  113. char* getTimeString(void)
  114. {
  115. char *result=malloc(21);
  116. time_t timep;
  117. struct tm *p;
  118. time(&timep);
  119. p=gmtime(&timep);
  120. sprintf(result, "[%04d-%02d-%02d %02d:%02d:%02d]", (1900+p->tm_year), (1+p->tm_mon), p->tm_mday, p->tm_hour, p->tm_hour, p->tm_sec);
  121. return result;
  122. }
  123. void trim(char *s)
  124. {
  125. int i=0, j, k, l=0;
  126. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  127. i++;
  128. j = strlen(s)-1;
  129. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  130. j--;
  131. if(i==0 && j==strlen(s)-1) { }
  132. else if(i==0) s[j+1] = '\0';
  133. else {
  134. for(k=i; k<=j; k++) s[l++] = s[k];
  135. s[l] = '\0';
  136. }
  137. }
  138. int mystrcmp(char *p1,char *p2)
  139. {
  140. while(*p1==*p2)
  141. {
  142. if(*p1=='\0' || *p2=='\0')
  143. break;
  144. p1++;
  145. p2++;
  146. }
  147. if(*p1=='\0' && *p2=='\0')
  148. return(PASS);
  149. else
  150. return(FAIL);
  151. }
  152. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  153. {
  154. strncpy(dest, src + start, cnt);
  155. dest[cnt] = 0;
  156. }
  157. void split(char **arr, char *str, const char *del)
  158. {
  159. char *s = strtok(str, del);
  160. while(s != NULL)
  161. {
  162. *arr++ = s;
  163. s = strtok(NULL, del);
  164. }
  165. }
  166. //==========================================
  167. // Init all share memory
  168. //==========================================
  169. int InitShareMemory()
  170. {
  171. int result = PASS;
  172. int MeterSMId;
  173. //creat ShmSysConfigAndInfo
  174. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  175. {
  176. #ifdef SystemLogMessage
  177. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  178. #endif
  179. result = FAIL;
  180. }
  181. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  182. {
  183. #ifdef SystemLogMessage
  184. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  185. #endif
  186. result = FAIL;
  187. }
  188. //creat ShmStatusCodeData
  189. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  190. {
  191. #ifdef SystemLogMessage
  192. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  193. #endif
  194. result = FAIL;
  195. }
  196. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  197. {
  198. #ifdef SystemLogMessage
  199. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  200. #endif
  201. result = FAIL;
  202. }
  203. //creat ShmStatusCodeData
  204. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), 0777)) < 0)
  205. {
  206. #ifdef SystemLogMessage
  207. DEBUG_ERROR("shmget ShmPrimaryMcuData NG\n");
  208. #endif
  209. result = FAIL;
  210. }
  211. else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  212. {
  213. #ifdef ShmPrimaryMcuData
  214. DEBUG_ERROR("shmat ShmPrimaryMcuData NG\n");
  215. #endif
  216. result = FAIL;
  217. }
  218. if ((MeterSMId = shmget(ShmCsuMeterKey, sizeof(struct MeterInformation), IPC_CREAT | 0777)) < 0)
  219. {
  220. #ifdef SystemLogMessage
  221. DEBUG_ERROR("shmget ShmCsuMeterKey NG \n");
  222. #endif
  223. result = FAIL;
  224. }
  225. else if ((ShmCsuMeterData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  226. {
  227. #ifdef SystemLogMessage
  228. DEBUG_ERROR("shmat ShmCsuMeterData NG \n");
  229. #endif
  230. result = FAIL;
  231. }
  232. if ((MeterSMId = shmget(ShmCommonKey, sizeof(struct DcCommonInformation), IPC_CREAT | 0777)) < 0)
  233. {
  234. #ifdef SystemLogMessage
  235. DEBUG_ERROR("shmget ShmCommonKey NG \n");
  236. #endif
  237. result = FAIL;
  238. }
  239. else if ((ShmDcCommonData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  240. {
  241. #ifdef SystemLogMessage
  242. DEBUG_ERROR("shmat ShmCommonKey NG \n");
  243. #endif
  244. result = FAIL;
  245. }
  246. return result;
  247. }
  248. //================================================
  249. // Function
  250. //================================================
  251. void GetFwAndHwVersion()
  252. {
  253. if(Query_FW_Ver(Uart1Fd, Addr.IoExtend, &ver) == PASS)
  254. {
  255. //PRINTF_FUNC("s1 = %s \n", ver.Version_FW);
  256. strcpy((char *)ShmPrimaryMcuData->version, ver.Version_FW);
  257. strcpy((char *) ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, ver.Version_FW);
  258. }
  259. if (Query_HW_Ver(Uart1Fd, Addr.IoExtend, &ver) == PASS)
  260. {
  261. //PRINTF_FUNC("s2 = %s \n", ver.Version_HW);
  262. }
  263. }
  264. void GetInputGpioStatus()
  265. {
  266. if (Query_Gpio_Input(Uart1Fd, Addr.IoExtend, &gpio_in) == PASS)
  267. {
  268. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] != gpio_in.AC_Connector ||
  269. _curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] != ShmDcCommonData->psuKeepCommunication)
  270. {
  271. if (_reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] >= 3)
  272. {
  273. if (ShmDcCommonData->psuKeepCommunication == YES ||
  274. gpio_in.AC_Connector == YES)
  275. {
  276. ShmSysConfigAndInfo->SysInfo.AcContactorStatus =
  277. ShmPrimaryMcuData->InputDet.bits.AcContactorDetec = YES;
  278. _curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] = YES;
  279. }
  280. else
  281. {
  282. ShmSysConfigAndInfo->SysInfo.AcContactorStatus =
  283. ShmPrimaryMcuData->InputDet.bits.AcContactorDetec = NO;
  284. _curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] = NO;
  285. }
  286. }
  287. else
  288. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT]++;
  289. }
  290. else
  291. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] = 0;
  292. if (_reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] >= 3 &&
  293. ShmDcCommonData->psuKeepCommunication == YES &&
  294. gpio_in.AC_Connector == NO)
  295. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.AcContactStestFail = YES;
  296. else
  297. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.AcContactStestFail = NO;
  298. // -------------------------------------------------------------------
  299. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] != gpio_in.AC_MainBreaker)
  300. {
  301. if (_reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] >= 3)
  302. {
  303. _curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = gpio_in.AC_MainBreaker;
  304. ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec = gpio_in.AC_MainBreaker;
  305. }
  306. else
  307. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER]++;
  308. }
  309. else
  310. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = 0;
  311. ShmPrimaryMcuData->InputDet.bits.SpdDetec = gpio_in.SPD;
  312. ShmPrimaryMcuData->InputDet.bits.DoorOpen = gpio_in.Door_Open;
  313. ShmPrimaryMcuData->InputDet.bits.Button1 = gpio_in.Button[0];
  314. ShmPrimaryMcuData->InputDet.bits.Button2 = gpio_in.Button[1];
  315. ShmPrimaryMcuData->InputDet.bits.EmergencyButton = gpio_in.Emergency_Btn;
  316. //PRINTF_FUNC("left = %d \n", ShmPrimaryMcuData->InputDet.bits.Button1);
  317. //PRINTF_FUNC("right = %d \n", ShmPrimaryMcuData->InputDet.bits.Button2);
  318. //PRINTF_FUNC("ShmSysConfigAndInfo->SysInfo.AcContactorStatus = %d \n", ShmSysConfigAndInfo->SysInfo.AcContactorStatus);
  319. if (ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec == YES)
  320. DEBUG_ERROR("AC Mainbreaker occur. \n");
  321. }
  322. }
  323. void GetMeterConsumption(byte index)
  324. {
  325. if (Query_Meter_value(Uart1Fd, Addr.IoExtend, &ShmCsuMeterData->_meter[index], &ShmCsuMeterData->isWorking, index) == PASS)
  326. {
  327. // meter value (Resolution) : 10
  328. if (!ShmCsuMeterData->isWorking)
  329. {
  330. //ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MeterCommTimeout = YES;
  331. return;
  332. }
  333. if (ShmCsuMeterData->_meter[index].isCalculation == YES)
  334. {
  335. // printf("Meter%d, Comsumption = %.1f, curMeterValue = %.1f \n",
  336. // index,
  337. // ShmCsuMeterData->_meter[index].newMeterValue,
  338. // ShmCsuMeterData->_meter[index].curMeterValue);
  339. if (ShmCsuMeterData->_meter[index].curMeterValue == 0)
  340. ShmCsuMeterData->_meter[index].curMeterValue = ShmCsuMeterData->_meter[index].newMeterValue;
  341. else
  342. {
  343. // 最大充時,兩個都會累加,但只輸出給一槍使用
  344. ShmCsuMeterData->_meter[index]._chargingValue += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  345. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX ||
  346. (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER &&
  347. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_RELAY_A_TO_M))
  348. {
  349. for (byte subIndex = 0; subIndex < gun_count; subIndex++)
  350. {
  351. if (_chargingData[subIndex]->SystemStatus == S_CHARGING)
  352. {
  353. ShmCsuMeterData->_meter[subIndex]._curTotalCharging += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  354. break;
  355. }
  356. }
  357. }
  358. else
  359. {
  360. ShmCsuMeterData->_meter[index]._curTotalCharging += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  361. }
  362. ShmCsuMeterData->_meter[index].curMeterValue = ShmCsuMeterData->_meter[index].newMeterValue;
  363. }
  364. }
  365. }
  366. }
  367. void SetOutputGpio(byte flash)
  368. {
  369. Gpio_out gpio;
  370. gpio.Button_LED[0] = flash;
  371. gpio.Button_LED[1] = flash;
  372. gpio.System_LED[0] = 0x00;
  373. gpio.System_LED[1] = 0x00;
  374. gpio.System_LED[2] = 0x00;
  375. gpio.System_LED[3] = 0x00;
  376. gpio.AC_Connector = 0x00;
  377. gpio.AC_Breaker = 0x00;
  378. if (Config_Gpio_Output(Uart1Fd, Addr.IoExtend, &gpio) == PASS)
  379. {
  380. //PRINTF_FUNC("SetOutputGpio sucessfully. %d \n", flash);
  381. }
  382. else
  383. {
  384. //PRINTF_FUNC("SetOutputGpio fail. \n");
  385. }
  386. }
  387. void SetRtcData()
  388. {
  389. struct timeb csuTime;
  390. struct tm *tmCSU;
  391. ftime(&csuTime);
  392. tmCSU = localtime(&csuTime.time);
  393. // PRINTF_FUNC("Time : %04d-%02d-%02d %02d:%02d:%02d \n", tmCSU->tm_year + 1900,
  394. // tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  395. // tmCSU->tm_sec);
  396. rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
  397. rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
  398. rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
  399. rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
  400. rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
  401. rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
  402. rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
  403. rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
  404. rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
  405. rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
  406. rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
  407. rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
  408. rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
  409. rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
  410. if (Config_Rtc_Data(Uart1Fd, Addr.IoExtend, &rtc) == PASS)
  411. {
  412. //PRINTF_FUNC("SetRtc sucessfully. \n");
  413. }
  414. else
  415. {
  416. //PRINTF_FUNC("SetRtc fail. \n");
  417. }
  418. }
  419. void SetModelName()
  420. {
  421. if (Config_Model_Name(Uart1Fd, Addr.IoExtend, ShmSysConfigAndInfo->SysConfig.ModelName) == PASS)
  422. {
  423. }
  424. }
  425. //================================================
  426. // Main process
  427. //================================================
  428. int InitComPort()
  429. {
  430. int fd;
  431. struct termios tios;
  432. fd = open(priPortName, O_RDWR);
  433. if(fd<=0)
  434. {
  435. #ifdef SystemLogMessage
  436. DEBUG_ERROR("open 407 Communication port NG \n");
  437. #endif
  438. return -1;
  439. }
  440. ioctl (fd, TCGETS, &tios);
  441. tios.c_cflag = B115200| CS8 | CLOCAL | CREAD;
  442. tios.c_lflag = 0;
  443. tios.c_iflag = 0;
  444. tios.c_oflag = 0;
  445. tios.c_cc[VMIN]=0;
  446. tios.c_cc[VTIME]=(unsigned char)1;
  447. tios.c_lflag=0;
  448. tcflush(fd, TCIFLUSH);
  449. ioctl (fd, TCSETS, &tios);
  450. return fd;
  451. }
  452. unsigned long GetTimeoutValue(struct timeval _sour_time)
  453. {
  454. struct timeval _end_time;
  455. gettimeofday(&_end_time, NULL);
  456. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  457. }
  458. //================================================
  459. //================================================
  460. // CANBUS receive task
  461. //================================================
  462. //================================================
  463. bool FindChargingInfoData(byte target, struct ChargingInfoData **chargingData)
  464. {
  465. for (byte index = 0; index < CHAdeMO_QUANTITY; index++)
  466. {
  467. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)
  468. {
  469. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index];
  470. return true;
  471. }
  472. }
  473. for (byte index = 0; index < CCS_QUANTITY; index++)
  474. {
  475. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)
  476. {
  477. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[index];
  478. return true;
  479. }
  480. }
  481. for (byte index = 0; index < GB_QUANTITY; index++)
  482. {
  483. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)
  484. {
  485. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[index];
  486. return true;
  487. }
  488. }
  489. return false;
  490. }
  491. void Initialization()
  492. {
  493. bool isPass = false;
  494. while(!isPass)
  495. {
  496. isPass = true;
  497. for (byte _index = 0; _index < gun_count; _index++)
  498. {
  499. if (!FindChargingInfoData(_index, &_chargingData[0]))
  500. {
  501. DEBUG_ERROR("EvComm (main) : FindChargingInfoData false \n");
  502. isPass = false;
  503. break;
  504. }
  505. }
  506. sleep(1);
  507. }
  508. }
  509. int main(void)
  510. {
  511. if(InitShareMemory() == FAIL)
  512. {
  513. #ifdef SystemLogMessage
  514. DEBUG_ERROR("InitShareMemory NG\n");
  515. #endif
  516. if(ShmStatusCodeData!=NULL)
  517. {
  518. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  519. }
  520. sleep(5);
  521. return 0;
  522. }
  523. Uart1Fd = InitComPort();
  524. if(Uart1Fd < 0)
  525. {
  526. #ifdef SystemLogMessage
  527. DEBUG_ERROR("InitComPort (Uart1 : AM3352 - STM32) NG");
  528. #endif
  529. if (ShmStatusCodeData != NULL)
  530. {
  531. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed = 1;
  532. }
  533. sleep(5);
  534. return 0;
  535. }
  536. SetRtcData();
  537. SetModelName();
  538. gettimeofday(&_flash_time, NULL);
  539. gun_count = ShmSysConfigAndInfo->SysConfig.TotalConnectorCount;
  540. Initialization();
  541. byte _count = 0;
  542. for(;;)
  543. {
  544. if (strcmp((char *)ShmSysConfigAndInfo->SysInfo.LcmHwRev, " ") == EQUAL)
  545. {
  546. if ((GetTimeoutValue(_flash_time) / 1000) > 1000)
  547. {
  548. if (flash == NO)
  549. flash = YES;
  550. else
  551. flash = NO;
  552. SetOutputGpio(flash);
  553. gettimeofday(&_flash_time, NULL);
  554. }
  555. }
  556. else
  557. {
  558. if ((GetTimeoutValue(_flash_time) / 1000) > 5000)
  559. {
  560. if (flash == NO)
  561. flash = YES;
  562. SetOutputGpio(flash);
  563. gettimeofday(&_flash_time, NULL);
  564. }
  565. }
  566. // 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
  567. // 模組更新 FW 後,需重新做
  568. if(ShmPrimaryMcuData->SelfTest_Comp != PASS)
  569. {
  570. PRINTF_FUNC("(407) Get Fw and Hw Ver. \n");
  571. GetFwAndHwVersion();
  572. sleep(1);
  573. ShmPrimaryMcuData->SelfTest_Comp = PASS;
  574. }
  575. else
  576. {
  577. GetInputGpioStatus();
  578. if(ShmSysConfigAndInfo->SysConfig.ModelName[3] == 'M' ||
  579. ShmSysConfigAndInfo->SysConfig.ModelName[3] == 'L')
  580. {
  581. GetMeterConsumption(_count);
  582. _count++;
  583. if (_count >= gun_count)
  584. _count = 0;
  585. }
  586. }
  587. usleep(100000);
  588. }
  589. return FAIL;
  590. }