Module_PrimaryComm.c 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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 Debug
  33. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  34. #define PASS 1
  35. #define FAIL -1
  36. #define YES 1
  37. #define NO 0
  38. typedef unsigned char byte;
  39. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  40. struct StatusCodeData *ShmStatusCodeData;
  41. struct PrimaryMcuData *ShmPrimaryMcuData;
  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. int StoreLogMsg(const char *fmt, ...);
  51. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  52. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  53. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  54. int StoreLogMsg(const char *fmt, ...)
  55. {
  56. char Buf[4096+256];
  57. char buffer[4096];
  58. time_t CurrentTime;
  59. struct tm *tm;
  60. va_list args;
  61. va_start(args, fmt);
  62. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  63. va_end(args);
  64. memset(Buf,0,sizeof(Buf));
  65. CurrentTime = time(NULL);
  66. tm=localtime(&CurrentTime);
  67. sprintf(Buf,"echo \"%04d-%02d-%02d %02d:%02d:%02d - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  68. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  69. buffer,
  70. tm->tm_year+1900,tm->tm_mon+1);
  71. system(Buf);
  72. return rc;
  73. }
  74. int DiffTimeb(struct timeb ST, struct timeb ET)
  75. {
  76. //return milli-second
  77. unsigned int StartTime,StopTime;
  78. StartTime=(unsigned int)ST.time;
  79. StopTime=(unsigned int)ET.time;
  80. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  81. }
  82. //=================================
  83. // Common routine
  84. //=================================
  85. char* getTimeString(void)
  86. {
  87. char *result=malloc(21);
  88. time_t timep;
  89. struct tm *p;
  90. time(&timep);
  91. p=gmtime(&timep);
  92. 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);
  93. return result;
  94. }
  95. void trim(char *s)
  96. {
  97. int i=0, j, k, l=0;
  98. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  99. i++;
  100. j = strlen(s)-1;
  101. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  102. j--;
  103. if(i==0 && j==strlen(s)-1) { }
  104. else if(i==0) s[j+1] = '\0';
  105. else {
  106. for(k=i; k<=j; k++) s[l++] = s[k];
  107. s[l] = '\0';
  108. }
  109. }
  110. int mystrcmp(char *p1,char *p2)
  111. {
  112. while(*p1==*p2)
  113. {
  114. if(*p1=='\0' || *p2=='\0')
  115. break;
  116. p1++;
  117. p2++;
  118. }
  119. if(*p1=='\0' && *p2=='\0')
  120. return(PASS);
  121. else
  122. return(FAIL);
  123. }
  124. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  125. {
  126. strncpy(dest, src + start, cnt);
  127. dest[cnt] = 0;
  128. }
  129. void split(char **arr, char *str, const char *del)
  130. {
  131. char *s = strtok(str, del);
  132. while(s != NULL)
  133. {
  134. *arr++ = s;
  135. s = strtok(NULL, del);
  136. }
  137. }
  138. //==========================================
  139. // Init all share memory
  140. //==========================================
  141. int InitShareMemory()
  142. {
  143. int result = PASS;
  144. int MeterSMId;
  145. //creat ShmSysConfigAndInfo
  146. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  147. {
  148. #ifdef SystemLogMessage
  149. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  150. #endif
  151. result = FAIL;
  152. }
  153. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  154. {
  155. #ifdef SystemLogMessage
  156. DEBUG_ERROR("shmat ShmSysConfigAndInfo NG\n");
  157. #endif
  158. result = FAIL;
  159. }
  160. //creat ShmStatusCodeData
  161. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  162. {
  163. #ifdef SystemLogMessage
  164. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  165. #endif
  166. result = FAIL;
  167. }
  168. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  169. {
  170. #ifdef SystemLogMessage
  171. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  172. #endif
  173. result = FAIL;
  174. }
  175. //creat ShmStatusCodeData
  176. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), 0777)) < 0)
  177. {
  178. #ifdef SystemLogMessage
  179. DEBUG_ERROR("shmget ShmPrimaryMcuData NG\n");
  180. #endif
  181. result = FAIL;
  182. }
  183. else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  184. {
  185. #ifdef ShmPrimaryMcuData
  186. DEBUG_ERROR("shmat ShmPrimaryMcuData NG\n");
  187. #endif
  188. result = FAIL;
  189. }
  190. return result;
  191. }
  192. //================================================
  193. // Function
  194. //================================================
  195. void GetFwAndHwVersion()
  196. {
  197. if(Query_FW_Ver(Uart1Fd, Addr.IoExtend, &ver) == PASS)
  198. {
  199. printf("s1 = %s \n", ver.Version_FW);
  200. strcpy((char *)ShmPrimaryMcuData->version, ver.Version_FW);
  201. }
  202. if (Query_HW_Ver(Uart1Fd, Addr.IoExtend, &ver) == PASS)
  203. printf("s2 = %s \n", ver.Version_HW);
  204. }
  205. void GetInputGpioStatus()
  206. {
  207. //printf("GetInputGpioStatus \n");
  208. if (Query_Gpio_Input(Uart1Fd, Addr.IoExtend, &gpio_in) == PASS)
  209. {
  210. ShmSysConfigAndInfo->SysInfo.AcContactorStatus = ShmPrimaryMcuData->InputDet.bits.AcContactorDetec = gpio_in.AC_Connector;
  211. ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec = gpio_in.AC_MainBreaker;
  212. ShmPrimaryMcuData->InputDet.bits.SpdDetec = gpio_in.SPD;
  213. ShmPrimaryMcuData->InputDet.bits.DoorOpen = gpio_in.Door_Open;
  214. ShmPrimaryMcuData->InputDet.bits.Button1 = gpio_in.Button[0];
  215. ShmPrimaryMcuData->InputDet.bits.Button2 = gpio_in.Button[1];
  216. ShmPrimaryMcuData->InputDet.bits.EmergencyButton = gpio_in.Emergency_Btn;
  217. //printf("left = %d \n", ShmPrimaryMcuData->InputDet.bits.Button1);
  218. //printf("right = %d \n", ShmPrimaryMcuData->InputDet.bits.Button2);
  219. //printf("ShmSysConfigAndInfo->SysInfo.AcContactorStatus = %d \n", ShmSysConfigAndInfo->SysInfo.AcContactorStatus);
  220. if (ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec == YES)
  221. DEBUG_ERROR("AC Mainbreaker occur. \n");
  222. }
  223. }
  224. void SetOutputGpio()
  225. {
  226. Gpio_out gpio;
  227. gpio.Button_LED[0] = 0x01;
  228. gpio.Button_LED[1] = 0x01;
  229. gpio.System_LED[0] = 0x00;
  230. gpio.System_LED[1] = 0x00;
  231. gpio.System_LED[2] = 0x00;
  232. gpio.System_LED[3] = 0x00;
  233. gpio.AC_Connector = 0x00;
  234. gpio.AC_Breaker = 0x00;
  235. if (Config_Gpio_Output(Uart1Fd, Addr.IoExtend, &gpio) == PASS)
  236. printf("SetOutputGpio sucessfully. \n");
  237. else
  238. printf("SetOutputGpio fail. \n");
  239. }
  240. //================================================
  241. // Main process
  242. //================================================
  243. int InitComPort()
  244. {
  245. int fd;
  246. struct termios tios;
  247. fd = open(priPortName, O_RDWR);
  248. if(fd<=0)
  249. {
  250. #ifdef SystemLogMessage
  251. DEBUG_ERROR("open 407 Communication port NG \n");
  252. #endif
  253. return -1;
  254. }
  255. ioctl (fd, TCGETS, &tios);
  256. tios.c_cflag = B115200| CS8 | CLOCAL | CREAD;
  257. tios.c_lflag = 0;
  258. tios.c_iflag = 0;
  259. tios.c_oflag = 0;
  260. tios.c_cc[VMIN]=0;
  261. tios.c_cc[VTIME]=(unsigned char)1;
  262. tios.c_lflag=0;
  263. tcflush(fd, TCIFLUSH);
  264. ioctl (fd, TCSETS, &tios);
  265. return fd;
  266. }
  267. int main(void)
  268. {
  269. if(InitShareMemory() == FAIL)
  270. {
  271. #ifdef SystemLogMessage
  272. DEBUG_ERROR("InitShareMemory NG\n");
  273. #endif
  274. if(ShmStatusCodeData!=NULL)
  275. {
  276. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory = 1;
  277. }
  278. sleep(5);
  279. return 0;
  280. }
  281. Uart1Fd = InitComPort();
  282. printf("407 Port id = %d \n", Uart1Fd);
  283. if(Uart1Fd < 0)
  284. {
  285. #ifdef SystemLogMessage
  286. DEBUG_ERROR("InitComPort (Uart1 : AM3352 - STM32) NG");
  287. #endif
  288. if (ShmStatusCodeData != NULL)
  289. {
  290. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed = 1;
  291. }
  292. sleep(5);
  293. return 0;
  294. }
  295. SetOutputGpio();
  296. for(;;)
  297. {
  298. // 程序開始之前~ 必須先確定 FW 版本與硬體版本,確認後!!~ 該模組才算是真正的 Initial Comp.
  299. // 模組更新 FW 後,需重新做
  300. if(ShmPrimaryMcuData->SelfTest_Comp != PASS)
  301. {
  302. printf("(407) Get Fw and Hw Ver. \n");
  303. GetFwAndHwVersion();
  304. usleep(1000000);
  305. ShmPrimaryMcuData->SelfTest_Comp = PASS;
  306. }
  307. else
  308. {
  309. GetInputGpioStatus();
  310. }
  311. usleep(100000);
  312. }
  313. return FAIL;
  314. }