Module_PrimaryComm.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  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 <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h> /*標準輸入輸出定義*/
  18. #include <stdlib.h> /*標準函數庫定義*/
  19. #include <unistd.h> /*Unix 標準函數定義*/
  20. #include <fcntl.h> /*檔控制定義*/
  21. #include <termios.h> /*PPSIX 終端控制定義*/
  22. #include <errno.h> /*錯誤號定義*/
  23. #include <errno.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include <math.h>
  29. #include "../../define.h"
  30. #include "PrimaryComm.h"
  31. #include <stdbool.h>
  32. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  33. #define PASS 1
  34. #define FAIL -1
  35. #define YES 1
  36. #define NO 0
  37. typedef unsigned char byte;
  38. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  39. struct StatusCodeData *ShmStatusCodeData;
  40. struct PrimaryMcuData *ShmPrimaryMcuData;
  41. struct MeterInformation *ShmCsuMeterData;
  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 \n", 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. return 0;
  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. return 0;
  231. }
  232. return result;
  233. }
  234. //================================================
  235. // Function
  236. //================================================
  237. void GetFwAndHwVersion()
  238. {
  239. if(Query_FW_Ver(Uart1Fd, Addr.IoExtend, &ver) == PASS)
  240. {
  241. //PRINTF_FUNC("s1 = %s \n", ver.Version_FW);
  242. strcpy((char *)ShmPrimaryMcuData->version, ver.Version_FW);
  243. strcpy((char *) ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, ver.Version_FW);
  244. }
  245. if (Query_HW_Ver(Uart1Fd, Addr.IoExtend, &ver) == PASS)
  246. {
  247. //PRINTF_FUNC("s2 = %s \n", ver.Version_HW);
  248. }
  249. }
  250. void GetInputGpioStatus()
  251. {
  252. //PRINTF_FUNC("GetInputGpioStatus \n");
  253. if (Query_Gpio_Input(Uart1Fd, Addr.IoExtend, &gpio_in) == PASS)
  254. {
  255. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] != gpio_in.AC_Connector)
  256. {
  257. if (_reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] >= 3)
  258. {
  259. _curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] = gpio_in.AC_Connector;
  260. ShmSysConfigAndInfo->SysInfo.AcContactorStatus = ShmPrimaryMcuData->InputDet.bits.AcContactorDetec = gpio_in.AC_Connector;
  261. }
  262. else
  263. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT]++;
  264. }
  265. else
  266. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] = 0;
  267. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] != gpio_in.AC_MainBreaker)
  268. {
  269. if (_reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] >= 3)
  270. {
  271. _curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = gpio_in.AC_MainBreaker;
  272. ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec = gpio_in.AC_MainBreaker;
  273. }
  274. else
  275. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER]++;
  276. }
  277. else
  278. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = 0;
  279. ShmPrimaryMcuData->InputDet.bits.SpdDetec = gpio_in.SPD;
  280. ShmPrimaryMcuData->InputDet.bits.DoorOpen = gpio_in.Door_Open;
  281. ShmPrimaryMcuData->InputDet.bits.Button1 = gpio_in.Button[0];
  282. ShmPrimaryMcuData->InputDet.bits.Button2 = gpio_in.Button[1];
  283. ShmPrimaryMcuData->InputDet.bits.EmergencyButton = gpio_in.Emergency_Btn;
  284. //PRINTF_FUNC("left = %d \n", ShmPrimaryMcuData->InputDet.bits.Button1);
  285. //PRINTF_FUNC("right = %d \n", ShmPrimaryMcuData->InputDet.bits.Button2);
  286. //PRINTF_FUNC("ShmSysConfigAndInfo->SysInfo.AcContactorStatus = %d \n", ShmSysConfigAndInfo->SysInfo.AcContactorStatus);
  287. if (ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec == YES)
  288. DEBUG_ERROR("AC Mainbreaker occur. \n");
  289. }
  290. }
  291. void GetMeterConsumption(byte index)
  292. {
  293. if (Query_Meter_value(Uart1Fd, Addr.IoExtend, &ShmCsuMeterData->_meter[index], &ShmCsuMeterData->isWorking, index) == PASS)
  294. {
  295. // meter value (Resolution) : 10
  296. if (!ShmCsuMeterData->isWorking)
  297. {
  298. //ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MeterCommTimeout = YES;
  299. return;
  300. }
  301. if (ShmCsuMeterData->_meter[index].isCalculation == YES)
  302. {
  303. // printf("Meter%d, Comsumption = %.1f, curMeterValue = %.1f \n",
  304. // index,
  305. // ShmCsuMeterData->_meter[index].newMeterValue,
  306. // ShmCsuMeterData->_meter[index].curMeterValue);
  307. if (ShmCsuMeterData->_meter[index].curMeterValue == 0)
  308. ShmCsuMeterData->_meter[index].curMeterValue = ShmCsuMeterData->_meter[index].newMeterValue;
  309. else
  310. {
  311. // 最大充時,兩個都會累加,但只輸出給一槍使用
  312. ShmCsuMeterData->_meter[index]._chargingValue += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  313. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX ||
  314. (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER &&
  315. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_RELAY_A_TO_M))
  316. {
  317. for (byte subIndex = 0; subIndex < gun_count; subIndex++)
  318. {
  319. if (_chargingData[subIndex]->SystemStatus == S_CHARGING)
  320. {
  321. ShmCsuMeterData->_meter[subIndex]._curTotalCharging += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  322. break;
  323. }
  324. }
  325. }
  326. else
  327. {
  328. ShmCsuMeterData->_meter[index]._curTotalCharging += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  329. }
  330. ShmCsuMeterData->_meter[index].curMeterValue = ShmCsuMeterData->_meter[index].newMeterValue;
  331. }
  332. }
  333. }
  334. }
  335. void SetOutputGpio(byte flash)
  336. {
  337. Gpio_out gpio;
  338. gpio.Button_LED[0] = flash;
  339. gpio.Button_LED[1] = flash;
  340. gpio.System_LED[0] = 0x00;
  341. gpio.System_LED[1] = 0x00;
  342. gpio.System_LED[2] = 0x00;
  343. gpio.System_LED[3] = 0x00;
  344. gpio.AC_Connector = 0x00;
  345. gpio.AC_Breaker = 0x00;
  346. if (Config_Gpio_Output(Uart1Fd, Addr.IoExtend, &gpio) == PASS)
  347. {
  348. //PRINTF_FUNC("SetOutputGpio sucessfully. %d \n", flash);
  349. }
  350. else
  351. {
  352. //PRINTF_FUNC("SetOutputGpio fail. \n");
  353. }
  354. }
  355. void SetRtcData()
  356. {
  357. struct timeb csuTime;
  358. struct tm *tmCSU;
  359. ftime(&csuTime);
  360. tmCSU = localtime(&csuTime.time);
  361. // PRINTF_FUNC("Time : %04d-%02d-%02d %02d:%02d:%02d \n", tmCSU->tm_year + 1900,
  362. // tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  363. // tmCSU->tm_sec);
  364. rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
  365. rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
  366. rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
  367. rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
  368. rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
  369. rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
  370. rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
  371. rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
  372. rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
  373. rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
  374. rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
  375. rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
  376. rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
  377. rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
  378. if (Config_Rtc_Data(Uart1Fd, Addr.IoExtend, &rtc) == PASS)
  379. {
  380. //PRINTF_FUNC("SetRtc sucessfully. \n");
  381. }
  382. else
  383. {
  384. //PRINTF_FUNC("SetRtc fail. \n");
  385. }
  386. }
  387. void SetModelName()
  388. {
  389. if (Config_Model_Name(Uart1Fd, Addr.IoExtend, ShmSysConfigAndInfo->SysConfig.ModelName) == PASS)
  390. {
  391. }
  392. }
  393. //================================================
  394. // Main process
  395. //================================================
  396. int InitComPort()
  397. {
  398. int fd;
  399. struct termios tios;
  400. fd = open(priPortName, O_RDWR);
  401. if(fd<=0)
  402. {
  403. #ifdef SystemLogMessage
  404. DEBUG_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]=(unsigned char)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. //================================================
  427. //================================================
  428. // CANBUS receive task
  429. //================================================
  430. //================================================
  431. bool FindChargingInfoData(byte target, struct ChargingInfoData **chargingData)
  432. {
  433. for (byte index = 0; index < CHAdeMO_QUANTITY; index++)
  434. {
  435. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)
  436. {
  437. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index];
  438. return true;
  439. }
  440. }
  441. for (byte index = 0; index < CCS_QUANTITY; index++)
  442. {
  443. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)
  444. {
  445. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[index];
  446. return true;
  447. }
  448. }
  449. for (byte index = 0; index < GB_QUANTITY; index++)
  450. {
  451. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)
  452. {
  453. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[index];
  454. return true;
  455. }
  456. }
  457. return false;
  458. }
  459. void Initialization()
  460. {
  461. bool isPass = false;
  462. while(!isPass)
  463. {
  464. isPass = true;
  465. for (byte _index = 0; _index < gun_count; _index++)
  466. {
  467. if (!FindChargingInfoData(_index, &_chargingData[0]))
  468. {
  469. DEBUG_ERROR("EvComm (main) : FindChargingInfoData false \n");
  470. isPass = false;
  471. break;
  472. }
  473. }
  474. sleep(1);
  475. }
  476. }
  477. int main(void)
  478. {
  479. if(InitShareMemory() == FAIL)
  480. {
  481. #ifdef SystemLogMessage
  482. DEBUG_ERROR("InitShareMemory NG\n");
  483. #endif
  484. if(ShmStatusCodeData!=NULL)
  485. {
  486. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  487. }
  488. sleep(5);
  489. return 0;
  490. }
  491. Uart1Fd = InitComPort();
  492. if(Uart1Fd < 0)
  493. {
  494. #ifdef SystemLogMessage
  495. DEBUG_ERROR("InitComPort (Uart1 : AM3352 - STM32) NG");
  496. #endif
  497. if (ShmStatusCodeData != NULL)
  498. {
  499. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed = 1;
  500. }
  501. sleep(5);
  502. return 0;
  503. }
  504. SetRtcData();
  505. SetModelName();
  506. gettimeofday(&_flash_time, NULL);
  507. gun_count = ShmSysConfigAndInfo->SysConfig.TotalConnectorCount;
  508. Initialization();
  509. byte _count = 0;
  510. for(;;)
  511. {
  512. if (strcmp((char *)ShmSysConfigAndInfo->SysInfo.LcmHwRev, " ") == 0x00)
  513. {
  514. if ((GetTimeoutValue(_flash_time) / 1000) > 1000)
  515. {
  516. if (flash == NO)
  517. flash = YES;
  518. else
  519. flash = NO;
  520. SetOutputGpio(flash);
  521. gettimeofday(&_flash_time, NULL);
  522. }
  523. }
  524. else
  525. {
  526. if ((GetTimeoutValue(_flash_time) / 1000) > 5000)
  527. {
  528. if (flash == NO)
  529. flash = YES;
  530. SetOutputGpio(flash);
  531. gettimeofday(&_flash_time, NULL);
  532. }
  533. }
  534. // 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
  535. // 模組更新 FW 後,需重新做
  536. if(ShmPrimaryMcuData->SelfTest_Comp != PASS)
  537. {
  538. PRINTF_FUNC("(407) Get Fw and Hw Ver. \n");
  539. GetFwAndHwVersion();
  540. sleep(1);
  541. ShmPrimaryMcuData->SelfTest_Comp = PASS;
  542. }
  543. else
  544. {
  545. GetInputGpioStatus();
  546. if(ShmSysConfigAndInfo->SysConfig.ModelName[3] == 'M' ||
  547. ShmSysConfigAndInfo->SysConfig.ModelName[3] == 'L')
  548. {
  549. GetMeterConsumption(_count);
  550. _count++;
  551. if (_count >= gun_count)
  552. _count = 0;
  553. }
  554. }
  555. usleep(100000);
  556. }
  557. return FAIL;
  558. }