Module_PrimaryComm.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  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. if (!ShmCsuMeterData->isWorking)
  296. {
  297. //ShmStatusCodeData->AlarmCode.AlarmEvents.bits.MeterCommTimeout = YES;
  298. return;
  299. }
  300. if (ShmCsuMeterData->_meter[index].isCalculation == YES)
  301. {
  302. // printf("Meter%d, Comsumption = %.1f, curMeterValue = %.1f \n",
  303. // index,
  304. // ShmCsuMeterData->_meter[index].newMeterValue,
  305. // ShmCsuMeterData->_meter[index].curMeterValue);
  306. if (ShmCsuMeterData->_meter[index].curMeterValue == 0)
  307. ShmCsuMeterData->_meter[index].curMeterValue = ShmCsuMeterData->_meter[index].newMeterValue;
  308. else
  309. {
  310. // 最大充時,兩個都會累加,但只輸出給一槍使用
  311. ShmCsuMeterData->_meter[index]._chargingValue += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  312. if (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_MAX ||
  313. (ShmSysConfigAndInfo->SysInfo.MainChargingMode == _MAIN_CHARGING_MODE_AVER &&
  314. ShmSysConfigAndInfo->SysInfo.ReAssignedFlag >= _REASSIGNED_RELAY_A_TO_M))
  315. {
  316. for (byte subIndex = 0; subIndex < gun_count; subIndex++)
  317. {
  318. if (_chargingData[subIndex]->SystemStatus == S_CHARGING)
  319. {
  320. ShmCsuMeterData->_meter[subIndex]._curTotalCharging += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  321. break;
  322. }
  323. }
  324. }
  325. else
  326. {
  327. ShmCsuMeterData->_meter[index]._curTotalCharging += ShmCsuMeterData->_meter[index].newMeterValue - ShmCsuMeterData->_meter[index].curMeterValue;
  328. }
  329. ShmCsuMeterData->_meter[index].curMeterValue = ShmCsuMeterData->_meter[index].newMeterValue;
  330. }
  331. }
  332. }
  333. }
  334. void SetOutputGpio(byte flash)
  335. {
  336. Gpio_out gpio;
  337. gpio.Button_LED[0] = flash;
  338. gpio.Button_LED[1] = flash;
  339. gpio.System_LED[0] = 0x00;
  340. gpio.System_LED[1] = 0x00;
  341. gpio.System_LED[2] = 0x00;
  342. gpio.System_LED[3] = 0x00;
  343. gpio.AC_Connector = 0x00;
  344. gpio.AC_Breaker = 0x00;
  345. if (Config_Gpio_Output(Uart1Fd, Addr.IoExtend, &gpio) == PASS)
  346. {
  347. //PRINTF_FUNC("SetOutputGpio sucessfully. %d \n", flash);
  348. }
  349. else
  350. {
  351. //PRINTF_FUNC("SetOutputGpio fail. \n");
  352. }
  353. }
  354. void SetRtcData()
  355. {
  356. struct timeb csuTime;
  357. struct tm *tmCSU;
  358. ftime(&csuTime);
  359. tmCSU = localtime(&csuTime.time);
  360. // PRINTF_FUNC("Time : %04d-%02d-%02d %02d:%02d:%02d \n", tmCSU->tm_year + 1900,
  361. // tmCSU->tm_mon + 1, tmCSU->tm_mday, tmCSU->tm_hour, tmCSU->tm_min,
  362. // tmCSU->tm_sec);
  363. rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
  364. rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
  365. rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
  366. rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
  367. rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
  368. rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
  369. rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
  370. rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
  371. rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
  372. rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
  373. rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
  374. rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
  375. rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
  376. rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
  377. if (Config_Rtc_Data(Uart1Fd, Addr.IoExtend, &rtc) == PASS)
  378. {
  379. //PRINTF_FUNC("SetRtc sucessfully. \n");
  380. }
  381. else
  382. {
  383. //PRINTF_FUNC("SetRtc fail. \n");
  384. }
  385. }
  386. void SetModelName()
  387. {
  388. if (Config_Model_Name(Uart1Fd, Addr.IoExtend, ShmSysConfigAndInfo->SysConfig.ModelName) == PASS)
  389. {
  390. }
  391. }
  392. //================================================
  393. // Main process
  394. //================================================
  395. int InitComPort()
  396. {
  397. int fd;
  398. struct termios tios;
  399. fd = open(priPortName, O_RDWR);
  400. if(fd<=0)
  401. {
  402. #ifdef SystemLogMessage
  403. DEBUG_ERROR("open 407 Communication port NG \n");
  404. #endif
  405. return -1;
  406. }
  407. ioctl (fd, TCGETS, &tios);
  408. tios.c_cflag = B115200| CS8 | CLOCAL | CREAD;
  409. tios.c_lflag = 0;
  410. tios.c_iflag = 0;
  411. tios.c_oflag = 0;
  412. tios.c_cc[VMIN]=0;
  413. tios.c_cc[VTIME]=(unsigned char)1;
  414. tios.c_lflag=0;
  415. tcflush(fd, TCIFLUSH);
  416. ioctl (fd, TCSETS, &tios);
  417. return fd;
  418. }
  419. unsigned long GetTimeoutValue(struct timeval _sour_time)
  420. {
  421. struct timeval _end_time;
  422. gettimeofday(&_end_time, NULL);
  423. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  424. }
  425. //================================================
  426. //================================================
  427. // CANBUS receive task
  428. //================================================
  429. //================================================
  430. bool FindChargingInfoData(byte target, struct ChargingInfoData **chargingData)
  431. {
  432. for (byte index = 0; index < CHAdeMO_QUANTITY; index++)
  433. {
  434. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target)
  435. {
  436. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index];
  437. return true;
  438. }
  439. }
  440. for (byte index = 0; index < CCS_QUANTITY; index++)
  441. {
  442. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target)
  443. {
  444. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[index];
  445. return true;
  446. }
  447. }
  448. for (byte index = 0; index < GB_QUANTITY; index++)
  449. {
  450. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target)
  451. {
  452. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[index];
  453. return true;
  454. }
  455. }
  456. return false;
  457. }
  458. void Initialization()
  459. {
  460. bool isPass = false;
  461. while(!isPass)
  462. {
  463. isPass = true;
  464. for (byte _index = 0; _index < gun_count; _index++)
  465. {
  466. if (!FindChargingInfoData(_index, &_chargingData[0]))
  467. {
  468. DEBUG_ERROR("EvComm (main) : FindChargingInfoData false \n");
  469. isPass = false;
  470. break;
  471. }
  472. }
  473. sleep(1);
  474. }
  475. }
  476. int main(void)
  477. {
  478. if(InitShareMemory() == FAIL)
  479. {
  480. #ifdef SystemLogMessage
  481. DEBUG_ERROR("InitShareMemory NG\n");
  482. #endif
  483. if(ShmStatusCodeData!=NULL)
  484. {
  485. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  486. }
  487. sleep(5);
  488. return 0;
  489. }
  490. Uart1Fd = InitComPort();
  491. if(Uart1Fd < 0)
  492. {
  493. #ifdef SystemLogMessage
  494. DEBUG_ERROR("InitComPort (Uart1 : AM3352 - STM32) NG");
  495. #endif
  496. if (ShmStatusCodeData != NULL)
  497. {
  498. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed = 1;
  499. }
  500. sleep(5);
  501. return 0;
  502. }
  503. SetRtcData();
  504. SetModelName();
  505. gettimeofday(&_flash_time, NULL);
  506. gun_count = ShmSysConfigAndInfo->SysConfig.TotalConnectorCount;
  507. Initialization();
  508. byte _count = 0;
  509. for(;;)
  510. {
  511. if (strcmp((char *)ShmSysConfigAndInfo->SysInfo.LcmHwRev, " ") == 0x00)
  512. {
  513. if ((GetTimeoutValue(_flash_time) / 1000) > 1000)
  514. {
  515. if (flash == NO)
  516. flash = YES;
  517. else
  518. flash = NO;
  519. SetOutputGpio(flash);
  520. gettimeofday(&_flash_time, NULL);
  521. }
  522. }
  523. else
  524. {
  525. if ((GetTimeoutValue(_flash_time) / 1000) > 5000)
  526. {
  527. if (flash == NO)
  528. flash = YES;
  529. SetOutputGpio(flash);
  530. gettimeofday(&_flash_time, NULL);
  531. }
  532. }
  533. // 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
  534. // 模組更新 FW 後,需重新做
  535. if(ShmPrimaryMcuData->SelfTest_Comp != PASS)
  536. {
  537. PRINTF_FUNC("(407) Get Fw and Hw Ver. \n");
  538. GetFwAndHwVersion();
  539. sleep(1);
  540. ShmPrimaryMcuData->SelfTest_Comp = PASS;
  541. }
  542. else
  543. {
  544. GetInputGpioStatus();
  545. if(ShmSysConfigAndInfo->SysConfig.ModelName[3] == 'M')
  546. {
  547. GetMeterConsumption(_count);
  548. _count++;
  549. if (_count >= gun_count)
  550. _count = 0;
  551. }
  552. }
  553. usleep(100000);
  554. }
  555. return FAIL;
  556. }