Module_PrimaryComm.c 21 KB

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