Module_PrimaryComm.c 16 KB

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