Module_PrimaryComm.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  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 "../Define/define.h"
  31. #include "../Config.h"
  32. #include "PrimaryComm.h"
  33. #include "Module_PrimaryComm.h"
  34. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  35. struct StatusCodeData *ShmStatusCodeData;
  36. struct PrimaryMcuData *ShmPrimaryMcuData;
  37. const char *priPortName = "/dev/ttyS1";
  38. uint8_t gun_count; //DS60-120 add
  39. struct ChargingInfoData *ChargingData[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
  40. //------------------------------------------------------------------------------
  41. int StoreLogMsg(const char *fmt, ...)
  42. {
  43. char Buf[4096 + 256];
  44. char buffer[4096];
  45. va_list args;
  46. struct timeb SeqEndTime;
  47. struct tm *tm;
  48. va_start(args, fmt);
  49. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  50. va_end(args);
  51. memset(Buf, 0, sizeof(Buf));
  52. ftime(&SeqEndTime);
  53. SeqEndTime.time = time(NULL);
  54. tm = localtime(&SeqEndTime.time);
  55. if (ShmSysConfigAndInfo->SysConfig.SwitchDebugFlag == YES) {
  56. sprintf(Buf, "%02d:%02d:%02d:%03d - %s",
  57. tm->tm_hour, tm->tm_min, tm->tm_sec, SeqEndTime.millitm, buffer);
  58. printf("%s \n", Buf);
  59. } else {
  60. sprintf(Buf, "echo \"%04d-%02d-%02d %02d:%02d:%02d:%03d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  61. tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, SeqEndTime.millitm,
  62. buffer,
  63. tm->tm_year + 1900, tm->tm_mon + 1);
  64. system(Buf);
  65. }
  66. return rc;
  67. }
  68. int DiffTimeb(struct timeb ST, struct timeb ET)
  69. {
  70. //return milli-second
  71. unsigned int StartTime, StopTime;
  72. StartTime = (unsigned int)ST.time;
  73. StopTime = (unsigned int)ET.time;
  74. return (StopTime - StartTime) * 1000 + ET.millitm - ST.millitm;
  75. }
  76. //=================================
  77. // Common routine
  78. //=================================
  79. char *getTimeString(void)
  80. {
  81. char *result = malloc(21);
  82. time_t timep;
  83. struct tm *p;
  84. time(&timep);
  85. p = gmtime(&timep);
  86. 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);
  87. return result;
  88. }
  89. //==========================================
  90. // Init all share memory
  91. //==========================================
  92. int InitShareMemory()
  93. {
  94. int result = PASS;
  95. int MeterSMId;
  96. //creat ShmSysConfigAndInfo
  97. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0) {
  98. result = FAIL;
  99. } else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) - 1) {
  100. result = FAIL;
  101. }
  102. //creat ShmStatusCodeData
  103. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0) {
  104. result = FAIL;
  105. } else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) - 1) {
  106. result = FAIL;
  107. }
  108. //creat ShmStatusCodeData
  109. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), 0777)) < 0) {
  110. result = FAIL;
  111. } else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) - 1) {
  112. result = FAIL;
  113. }
  114. return result;
  115. }
  116. //================================================
  117. // Function
  118. //================================================
  119. void GetFwAndHwVersion(int fd)
  120. {
  121. Ver ver = {0};
  122. if (Query_FW_Ver(fd, OP_ADDR_IO_EXTEND, &ver) == PASS) {
  123. //log_info("Primary FW Rev = %s \n", ver.Version_FW);
  124. strcpy((char *)ShmPrimaryMcuData->version, ver.Version_FW);
  125. strcpy((char *) ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, ver.Version_FW);
  126. }
  127. //if (Query_HW_Ver(fd, OP_ADDR_IO_EXTEND, &ver) == PASS)
  128. // ;//log_info("Primary HW Rev = %s \n", ver.Version_HW);
  129. }
  130. void GetInputGpioStatus(int fd)
  131. {
  132. uint8_t dispenserSwTmp = 0;
  133. Gpio_in gpio_in = {0};
  134. static uint8_t dispenserSw = 0;
  135. //log_info("GetInputGpioStatus \n");
  136. if (Query_Gpio_Input(fd, OP_ADDR_IO_EXTEND, &gpio_in) == PASS) {
  137. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  138. static uint8_t _curDeviceStatus[3] = {0};
  139. static uint8_t _reCheckCount[3] = {0};
  140. //DS60-120 add
  141. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] != gpio_in.AC_Connector) {
  142. if (_reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] >= 3) {
  143. _curDeviceStatus[_PRIMARY_CHECK_TAG_AC_CONTACT] = gpio_in.AC_Connector;
  144. ShmSysConfigAndInfo->SysInfo.AcContactorStatus =
  145. ShmPrimaryMcuData->InputDet.bits.AcContactorDetec =
  146. gpio_in.AC_Connector;
  147. } else {
  148. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT]++;
  149. }
  150. } else {
  151. _reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] = 0;
  152. }
  153. if (_curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] != gpio_in.AC_MainBreaker) {
  154. if (_reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] >= 3) {
  155. _curDeviceStatus[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = gpio_in.AC_MainBreaker;
  156. ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec = gpio_in.AC_MainBreaker;
  157. } else {
  158. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER]++;
  159. }
  160. } else {
  161. _reCheckCount[_PRIMARY_CHECK_TAG_MAIN_BREAKER] = 0;
  162. }
  163. //ShmSysConfigAndInfo->SysInfo.AcContactorStatus = ShmPrimaryMcuData->InputDet.bits.AcContactorDetec = gpio_in.AC_Connector;
  164. //ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec = gpio_in.AC_MainBreaker;
  165. #else
  166. if ((strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[7], "V", 1) == 0) ||
  167. (strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[9], "V", 1) == 0) ||
  168. (strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[7], "F", 1) == 0) ||
  169. (strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[9], "F", 1) == 0)
  170. ) {
  171. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning = ~gpio_in.AC_Connector;
  172. ShmStatusCodeData->FaultCode.FaultEvents.bits.CcsLiquidChillerWaterLevelFault = ~gpio_in.AC_MainBreaker;
  173. } else {
  174. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning = gpio_in.AC_Connector;
  175. ShmStatusCodeData->FaultCode.FaultEvents.bits.CcsLiquidChillerWaterLevelFault = gpio_in.AC_MainBreaker;
  176. }
  177. #endif //!defined DD360 && !defined DD360Audi
  178. ShmPrimaryMcuData->InputDet.bits.SpdDetec = gpio_in.SPD;
  179. #if defined DD360 ||defined DD360Audi || defined DD360ComBox
  180. #if defined DD360ComBox
  181. ShmPrimaryMcuData->InputDet.bits.DoorOpen = gpio_in.Door_Open;
  182. #else
  183. ShmPrimaryMcuData->InputDet.bits.DoorOpen = ~gpio_in.Door_Open;
  184. #endif //
  185. ShmPrimaryMcuData->InputDet.bits.Key0 = ~gpio_in.Key[0] & 0x01;
  186. ShmPrimaryMcuData->InputDet.bits.Key1 = ~gpio_in.Key[1] & 0x01;
  187. ShmPrimaryMcuData->InputDet.bits.Key2 = ~gpio_in.Key[2] & 0x01;
  188. ShmPrimaryMcuData->InputDet.bits.Key3 = ~gpio_in.Key[3] & 0x01;
  189. //ShmPrimaryMcuData->InputDet.bits.EmergencyButton = gpio_in.Emergency_Btn;
  190. #else
  191. ShmPrimaryMcuData->InputDet.bits.Key0 = gpio_in.Key[0] & 0x01;
  192. ShmPrimaryMcuData->InputDet.bits.Key1 = gpio_in.Key[1] & 0x01;
  193. ShmPrimaryMcuData->InputDet.bits.Key2 = gpio_in.Key[2] & 0x01;
  194. ShmPrimaryMcuData->InputDet.bits.Key3 = gpio_in.Key[3] & 0x01;
  195. //ShmPrimaryMcuData->InputDet.bits.EmergencyButton = ~gpio_in.Emergency_Btn;
  196. ShmPrimaryMcuData->InputDet.bits.DoorOpen = gpio_in.Door_Open;
  197. #endif //defined DD360 ||defined DD360Audi
  198. #if defined DD360ComBox
  199. ShmPrimaryMcuData->InputDet.bits.EmergencyButton = ~gpio_in.Emergency_Btn;
  200. #else
  201. ShmPrimaryMcuData->InputDet.bits.EmergencyButton = gpio_in.Emergency_Btn;
  202. #endif //
  203. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key0);
  204. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key1 << 1);
  205. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key2 << 2);
  206. dispenserSwTmp |= (ShmPrimaryMcuData->InputDet.bits.Key3 << 3);
  207. if (dispenserSwTmp != dispenserSw) {
  208. dispenserSw = dispenserSwTmp;
  209. log_info("Dispenser switch number = %d, bit = %d, %d, %d, %d\r\n",
  210. dispenserSw,
  211. ShmPrimaryMcuData->InputDet.bits.Key3,
  212. ShmPrimaryMcuData->InputDet.bits.Key2,
  213. ShmPrimaryMcuData->InputDet.bits.Key1,
  214. ShmPrimaryMcuData->InputDet.bits.Key0);
  215. }
  216. ShmPrimaryMcuData->InputDet.bits.Button1 = gpio_in.Button[0];
  217. ShmPrimaryMcuData->InputDet.bits.Button2 = gpio_in.Button[1];
  218. /*printf(" gpio_in.Key[0]~ gpio_in.Key[3]=%d, %d, %d, %d\n",
  219. ShmPrimaryMcuData->InputDet.bits.Key0 , ShmPrimaryMcuData->InputDet.bits.Key1,
  220. ShmPrimaryMcuData->InputDet.bits.Key2,ShmPrimaryMcuData->InputDet.bits.Key3);
  221. printf("ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning=%d\n", ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CcsLiquidChillerWaterLevelWarning);
  222. printf("ShmStatusCodeData->FaultCode.FaultEvents.bits.CcsLiquidChillerWaterLevelFault=%d\n", ShmStatusCodeData->FaultCode.FaultEvents.bits.CcsLiquidChillerWaterLevelFault);
  223. */
  224. //log_info("left = %d \n", ShmPrimaryMcuData->InputDet.bits.Button1);
  225. //log_info("right = %d \n", ShmPrimaryMcuData->InputDet.bits.Button2);
  226. //log_info("ShmSysConfigAndInfo->SysInfo.AcContactorStatus = %d \n", ShmSysConfigAndInfo->SysInfo.AcContactorStatus);
  227. #if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  228. if (ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec == YES) {
  229. log_error("AC Mainbreaker occur. \n");
  230. }
  231. #endif //!defined DD360 && !defined DD360Audi
  232. }
  233. }
  234. static void checkChillerStatus(Gpio_out *gpio)
  235. {
  236. uint8_t gunIndex = 0;
  237. uint8_t chillerCount = 0;
  238. struct ChargingInfoData *pDcChargingInfo = NULL;
  239. static ChillerInfo fChillerInfo[2] = {0}, *pChillerInfo = NULL;
  240. Gpio_out *pGpio = (Gpio_out *)gpio;
  241. if ((strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[7], "V", 1) == 0) ||
  242. (strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[7], "F", 1) == 0)) {
  243. chillerCount++;
  244. }
  245. if ((strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[9], "V", 1) == 0) ||
  246. (strncmp((char *)&ShmSysConfigAndInfo->SysConfig.ModelName[9], "F", 1) == 0)) {
  247. chillerCount++;
  248. }
  249. if (chillerCount == 0) {
  250. pGpio->AC_Connector = 0x00;
  251. return;
  252. }
  253. for (gunIndex = 0; gunIndex < chillerCount; gunIndex++) {
  254. pDcChargingInfo = (struct ChargingInfoData *)ChargingData[gunIndex];
  255. pChillerInfo = (ChillerInfo *)&fChillerInfo[gunIndex];
  256. if ((pDcChargingInfo->PresentChargingCurrent) >= 150) {
  257. pChillerInfo->ChillerSwitch = YES;
  258. pChillerInfo->ChillerOnTime = time((time_t *)NULL);
  259. } else {
  260. if (pChillerInfo->ChillerSwitch == YES) {
  261. if ((pDcChargingInfo->PresentChargingCurrent) >= 100) {
  262. pChillerInfo->ChillerSwitch = YES;
  263. pChillerInfo->ChillerOnTime = time((time_t *)NULL);
  264. } else {
  265. if ((time((time_t *)NULL) - pChillerInfo->ChillerOnTime) >= 600) {
  266. pChillerInfo->ChillerSwitch = NO;
  267. } else {
  268. pChillerInfo->ChillerSwitch = YES;
  269. }
  270. }
  271. } else {
  272. pChillerInfo->ChillerSwitch = NO;
  273. }
  274. }
  275. }
  276. pGpio->AC_Connector = pChillerInfo->ChillerSwitch;//Chiller ON/OFF Control, "0: Chiller disable, 1: Chiller enable"
  277. }
  278. void SetOutputGpio(int fd, uint8_t outputValue)
  279. {
  280. Gpio_out gpio;
  281. LedConfig *pLedConfig = (LedConfig *)&outputValue;
  282. static uint8_t flash = NO;
  283. if (strcmp((char *)ShmSysConfigAndInfo->SysInfo.LcmHwRev, " ") == 0x00) {
  284. if (flash == NO) {
  285. flash = YES;
  286. } else {
  287. flash = NO;
  288. }
  289. } else {
  290. if (flash == NO) {
  291. flash = YES;
  292. }
  293. }
  294. pLedConfig->LeftButtonLed = flash;
  295. pLedConfig->RightButtonLed = flash;
  296. gpio.Button_LED[0] = pLedConfig->LeftButtonLed;
  297. gpio.Button_LED[1] = pLedConfig->RightButtonLed;
  298. gpio.System_LED[0] = pLedConfig->GreenLED;
  299. gpio.System_LED[1] = pLedConfig->YellowLED;
  300. gpio.System_LED[2] = pLedConfig->RedLED;
  301. gpio.System_LED[3] = 0x00;
  302. checkChillerStatus(&gpio);
  303. gpio.AC_Breaker = 0x00;
  304. Config_Gpio_Output(fd, OP_ADDR_IO_EXTEND, &gpio);
  305. }
  306. void SetRtcData(int fd)
  307. {
  308. Rtc rtc = {0};
  309. struct timeb csuTime;
  310. struct tm *tmCSU;
  311. ftime(&csuTime);
  312. tmCSU = localtime(&csuTime.time);
  313. //log_info("Time : %04d-%02d-%02d %02d:%02d:%02d \n",
  314. // tmCSU->tm_year + 1900,
  315. // tmCSU->tm_mon + 1,
  316. // tmCSU->tm_mday,
  317. // tmCSU->tm_hour,
  318. // tmCSU->tm_min,
  319. // tmCSU->tm_sec);
  320. rtc.RtcData[0] = '0' + (tmCSU->tm_year + 1900) / 1000 % 10;
  321. rtc.RtcData[1] = '0' + (tmCSU->tm_year + 1900) / 100 % 10;
  322. rtc.RtcData[2] = '0' + (tmCSU->tm_year + 1900) / 10 % 10;
  323. rtc.RtcData[3] = '0' + (tmCSU->tm_year + 1900) / 1 % 10;
  324. rtc.RtcData[4] = '0' + (tmCSU->tm_mon + 1) / 10 % 10;
  325. rtc.RtcData[5] = '0' + (tmCSU->tm_mon + 1) / 1 % 10;
  326. rtc.RtcData[6] = '0' + (tmCSU->tm_mday) / 10 % 10;
  327. rtc.RtcData[7] = '0' + (tmCSU->tm_mday) / 1 % 10;
  328. rtc.RtcData[8] = '0' + (tmCSU->tm_hour) / 10 % 10;
  329. rtc.RtcData[9] = '0' + (tmCSU->tm_hour) / 1 % 10;
  330. rtc.RtcData[10] = '0' + (tmCSU->tm_min) / 10 % 10;
  331. rtc.RtcData[11] = '0' + (tmCSU->tm_min) / 1 % 10;
  332. rtc.RtcData[12] = '0' + (tmCSU->tm_sec) / 10 % 10;
  333. rtc.RtcData[13] = '0' + (tmCSU->tm_sec) / 1 % 10;
  334. if (Config_Rtc_Data(fd, OP_ADDR_IO_EXTEND, &rtc) == PASS) {
  335. //log_info("SetRtc sucessfully. \n");
  336. } else {
  337. //log_info("SetRtc fail. \n");
  338. }
  339. }
  340. void SetModelName(int fd)
  341. {
  342. if (Config_Model_Name(fd, OP_ADDR_IO_EXTEND, ShmSysConfigAndInfo->SysConfig.ModelName) == PASS) {
  343. }
  344. }
  345. //================================================
  346. // Main process
  347. //================================================
  348. int InitComPort()
  349. {
  350. int fd;
  351. struct termios tios;
  352. fd = open(priPortName, O_RDWR);
  353. if (fd <= 0) {
  354. #ifdef SystemLogMessage
  355. log_error("open 407 Communication port NG \n");
  356. #endif
  357. return -1;
  358. }
  359. ioctl (fd, TCGETS, &tios);
  360. tios.c_cflag = B115200 | CS8 | CLOCAL | CREAD;
  361. tios.c_lflag = 0;
  362. tios.c_iflag = 0;
  363. tios.c_oflag = 0;
  364. tios.c_cc[VMIN] = 0;
  365. tios.c_cc[VTIME] = (uint8_t)1;
  366. tios.c_lflag = 0;
  367. tcflush(fd, TCIFLUSH);
  368. ioctl (fd, TCSETS, &tios);
  369. return fd;
  370. }
  371. unsigned long GetTimeoutValue(struct timeval _sour_time)
  372. {
  373. struct timeval _end_time;
  374. gettimeofday(&_end_time, NULL);
  375. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  376. }
  377. int FindChargingInfoData(uint8_t target, struct ChargingInfoData **chargingData)
  378. {
  379. for (uint8_t index = 0; index < CHAdeMO_QUANTITY; index++) {
  380. if (ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index].Index == target) {
  381. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.ChademoChargingData[index];
  382. return 1;
  383. }
  384. }
  385. for (uint8_t index = 0; index < CCS_QUANTITY; index++) {
  386. if (ShmSysConfigAndInfo->SysInfo.CcsChargingData[index].Index == target) {
  387. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.CcsChargingData[index];
  388. return 1;
  389. }
  390. }
  391. for (uint8_t index = 0; index < GB_QUANTITY; index++) {
  392. if (ShmSysConfigAndInfo->SysInfo.GbChargingData[index].Index == target) {
  393. chargingData[target] = &ShmSysConfigAndInfo->SysInfo.GbChargingData[index];
  394. return 1;
  395. }
  396. }
  397. return 0;
  398. }
  399. void Initialization() //DS60-120 add
  400. {
  401. bool isPass = false;
  402. while (!isPass) {
  403. isPass = true;
  404. for (uint8_t _index = 0; _index < gun_count; _index++) {
  405. if (!FindChargingInfoData(_index, &ChargingData[0])) {
  406. log_error("EvComm (main) : FindChargingInfoData false \n");
  407. isPass = false;
  408. break;
  409. }
  410. }
  411. sleep(1);
  412. }
  413. }
  414. int main(void)
  415. {
  416. int Uart1Fd = -1;
  417. if (InitShareMemory() == FAIL) {
  418. log_error("InitShareMemory NG\r\n");
  419. if (ShmStatusCodeData != NULL) {
  420. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  421. }
  422. sleep(5);
  423. return 0;
  424. }
  425. //DS60-120 remove
  426. //for (uint8_t _index = 0; _index < ShmSysConfigAndInfo->SysConfig.TotalConnectorCount; _index++) {
  427. // if (!FindChargingInfoData(_index, &ChargingData[0])) {
  428. // log_error("FindChargingInfoData false \n");
  429. // break;
  430. // }
  431. //}
  432. Uart1Fd = InitComPort();
  433. //log_info("407 Port id = %d \n", Uart1Fd);
  434. if (Uart1Fd < 0) {
  435. #ifdef SystemLogMessage
  436. log_error("InitComPort (Uart1 : AM3352 - STM32) NG");
  437. #endif
  438. if (ShmStatusCodeData != NULL) {
  439. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed = 1;
  440. }
  441. sleep(5);
  442. return 0;
  443. }
  444. SetRtcData(Uart1Fd);
  445. SetModelName(Uart1Fd);
  446. gun_count = ShmSysConfigAndInfo->SysConfig.TotalConnectorCount;
  447. Initialization();
  448. for (;;) {
  449. // 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
  450. // 模組更新 FW 後,需重新做
  451. if (ShmPrimaryMcuData->SelfTest_Comp != PASS) {
  452. //log_info("(407) Get Fw and Hw Ver. \n");
  453. GetFwAndHwVersion(Uart1Fd);
  454. sleep(1);
  455. ShmPrimaryMcuData->SelfTest_Comp = PASS;
  456. } else {
  457. SetOutputGpio(Uart1Fd, ShmPrimaryMcuData->OutputDrv.OutputDrvValue[0]);
  458. GetInputGpioStatus(Uart1Fd);
  459. }
  460. usleep(50000);
  461. }
  462. return FAIL;
  463. }