PrimaryComm.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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 "PrimaryComm.h"
  30. #define PASS 1
  31. #define FAIL -1
  32. struct Address Addr={0x01,0x02,0x03,0x04,0xFF};
  33. struct Command Cmd={0x01,0x02,0x0a,0x86,0xe0,0xe1,0xe2,0xe3};
  34. int tranceive(int fd, unsigned char* cmd, unsigned char cmd_len, unsigned char* rx)
  35. {
  36. int len;
  37. //sleep(2); //required to make flush work, for some reason
  38. tcflush(fd,TCIOFLUSH);
  39. if(write(fd, cmd, cmd_len) >= cmd_len)
  40. {
  41. usleep(50000);
  42. len = read(fd, rx, 512);
  43. }
  44. else
  45. {
  46. #ifdef SystemLogMessage
  47. DEBUG_ERROR("Serial command %s response fail.\n", cmd);
  48. #endif
  49. }
  50. return len;
  51. }
  52. unsigned char Query_FW_Ver(unsigned char fd, unsigned char targetAddr, Ver *Ret_Buf)
  53. {
  54. unsigned char result = FAIL;
  55. unsigned char tx[7] = {0xaa, 0x00, targetAddr, Cmd.query_FW_Ver, 0x00, 0x00, 0x00};
  56. unsigned char rx[512];
  57. unsigned char chksum = 0x00;
  58. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  59. if(len > 0)
  60. {
  61. for(int idx = 0; idx < (rx[4] | rx[5]<<8); idx++)
  62. {
  63. chksum ^= rx[6+idx];
  64. }
  65. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  66. (rx[2] == tx[1]) &&
  67. (rx[1] == tx[2]) &&
  68. (rx[3] == tx[3]))
  69. {
  70. memcpy(Ret_Buf->Version_FW, (char *)rx+6, (rx[4] | rx[5]<<8));
  71. *(Ret_Buf->Version_FW + 8) = 0x00;
  72. result = PASS;
  73. }
  74. }
  75. return result;
  76. }
  77. unsigned char Query_HW_Ver(unsigned char fd, unsigned char targetAddr, Ver *Ret_Buf)
  78. {
  79. unsigned char result = FAIL;
  80. unsigned char tx[7] = {0xaa, 0x00, targetAddr, Cmd.query_HW_Ver, 0x00, 0x00, 0x00};
  81. unsigned char rx[512];
  82. unsigned char chksum = 0x00;
  83. if(tranceive(fd, tx, sizeof(tx), rx) >0)
  84. {
  85. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  86. {
  87. chksum ^= rx[6+idx];
  88. }
  89. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  90. (rx[2] == tx[1]) &&
  91. (rx[1] == tx[2]) &&
  92. (rx[3] == tx[3]))
  93. {
  94. memcpy(Ret_Buf->Version_HW, (char *)rx+6, (rx[4] | rx[5]<<8));
  95. //*(Ret_Buf->Version_HW + 8) = 0x00;
  96. result = PASS;
  97. }
  98. }
  99. return result;
  100. }
  101. unsigned char Query_Gpio_Input(unsigned char fd, unsigned char targetAddr, Gpio_in *Ret_Buf)
  102. {
  103. unsigned char result = FAIL;
  104. unsigned char tx[7] = {0xaa, 0x00, targetAddr, Cmd.query_Gpio_In, 0x00, 0x00, 0x00};
  105. unsigned char rx[512];
  106. unsigned char chksum = 0x00;
  107. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  108. if(len > 0)
  109. {
  110. for (int idx = 0; idx < (rx[4] | rx[5] << 8); idx++)
  111. {
  112. chksum ^= rx[6+idx];
  113. }
  114. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  115. (rx[2] == tx[1]) &&
  116. (rx[1] == tx[2]) &&
  117. (rx[3] == tx[3]))
  118. {
  119. Ret_Buf->AC_Connector = (rx[6] >> 0) & 0x01;
  120. Ret_Buf->AC_MainBreaker = (rx[6] >> 1) & 0x01;
  121. Ret_Buf->SPD = (rx[6] >> 2) & 0x01;
  122. Ret_Buf->Door_Open = (rx[6] >> 3) & 0x01;
  123. Ret_Buf->GFD[0] = (rx[6] >> 4) & 0x01;
  124. Ret_Buf->GFD[1] = (rx[6] >> 5) & 0x01;
  125. Ret_Buf->AC_Drop = (rx[6] >> 6) & 0x01;
  126. Ret_Buf->Emergency_IO = (rx[6] >> 7) & 0x01;
  127. Ret_Buf->Emergency_Btn = (rx[7] >> 0) & 0x01;
  128. Ret_Buf->Button[0] = (rx[7] >> 1) & 0x01;
  129. Ret_Buf->Button[1] = (rx[7] >> 2) & 0x01;
  130. Ret_Buf->Key[0] = (rx[7] >> 3) & 0x01;
  131. Ret_Buf->Key[1] = (rx[7] >> 4) & 0x01;
  132. Ret_Buf->Key[2] = (rx[7] >> 5) & 0x01;
  133. Ret_Buf->Key[3] = (rx[7] >> 6) & 0x01;
  134. result = PASS;
  135. }
  136. }
  137. return result;
  138. }
  139. unsigned char Config_Gpio_Output(unsigned char fd, unsigned char targetAddr, Gpio_out *Set_Buf)
  140. {
  141. unsigned char result = FAIL;
  142. unsigned char tx[9] = {0xaa, 0x00, targetAddr, Cmd.config_Gpio_Output, 0x01, 0x00, 0x00, 0x00};
  143. unsigned char rx[512];
  144. unsigned char chksum = 0x00;
  145. tx[6] |= (Set_Buf->AC_Connector?0x01:0x00);
  146. for (int idx = 0; idx < 2; idx++)
  147. tx[6] |= (Set_Buf->Button_LED[idx] ? 0x01:0x00) << (1+idx);
  148. for (int idx = 0; idx < 4; idx++)
  149. tx[6] |= (Set_Buf->System_LED[idx]?0x01:0x00)<<(3+idx);
  150. tx[6] |= (Set_Buf->AC_Breaker?0x01:0x00);
  151. for (int idx = 0; idx < (tx[4] | tx[5] << 8); idx++)
  152. chksum ^= tx[6+idx];
  153. tx[7] = chksum;
  154. if (tranceive(fd, tx, sizeof(tx), rx) > 0)
  155. {
  156. chksum = 0x00;
  157. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  158. {
  159. chksum ^= rx[6+idx];
  160. }
  161. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  162. (rx[2] == tx[1]) &&
  163. (rx[1] == tx[2]) &&
  164. (rx[3] == tx[3]) &&
  165. (rx[6] == tx[6]))
  166. {
  167. result = PASS;
  168. }
  169. }
  170. return result;
  171. }
  172. unsigned char Update_Start(unsigned char fd, unsigned char targetAddr, unsigned int crc32)
  173. {
  174. unsigned char result = FAIL;
  175. unsigned char tx[11] = {0xaa, 0x00, targetAddr, Cmd.update_Start, 0x04, 0x00, (crc32>>0)&0xff, (crc32>>8)&0xff, (crc32>>16)&0xff, (crc32>>24)&0xff, 0x00};
  176. unsigned char rx[512];
  177. unsigned char chksum = 0x00;
  178. for (int idx = 0; idx < (tx[4] | tx[5] << 8); idx++)
  179. chksum ^= tx[6+idx];
  180. tx[10] = chksum;
  181. if(tranceive(fd, tx, sizeof(tx), rx) >0)
  182. {
  183. chksum = 0x00;
  184. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  185. {
  186. chksum ^= rx[6+idx];
  187. }
  188. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  189. (rx[2] == tx[1]) &&
  190. (rx[1] == tx[2]) &&
  191. (rx[3] == tx[3]) &&
  192. (rx[6] == 0x00))
  193. {
  194. result = PASS;
  195. }
  196. }
  197. return result;
  198. }
  199. unsigned char Update_Abord(unsigned char fd, unsigned char targetAddr)
  200. {
  201. unsigned char result = FAIL;
  202. unsigned char tx[7] = {0xaa, 0x00, targetAddr, Cmd.update_Start, 0x04, 0x00, 0x00};
  203. unsigned char rx[512];
  204. unsigned char chksum = 0x00;
  205. if(tranceive(fd, tx, sizeof(tx), rx) >0)
  206. {
  207. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  208. {
  209. chksum ^= rx[6+idx];
  210. }
  211. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  212. (rx[2] == tx[1]) &&
  213. (rx[1] == tx[2]) &&
  214. (rx[3] == tx[3]) &&
  215. (rx[6] == 0x00))
  216. {
  217. result = PASS;
  218. }
  219. }
  220. return result;
  221. }
  222. unsigned char Update_Transfer(unsigned char fd, unsigned char targetAddr, unsigned int startAddr, unsigned char *data, unsigned short int length)
  223. {
  224. unsigned char result = FAIL;
  225. unsigned char tx[11 + length];
  226. unsigned char rx[512];
  227. unsigned char chksum = 0x00;
  228. tx[0] = 0xaa;
  229. tx[1] = 0x00;
  230. tx[2] = targetAddr;
  231. tx[3] = Cmd.update_Transfer;
  232. tx[4] = (4 + length) & 0xff;
  233. tx[5] = ((4 + length)>>8) & 0xff;
  234. tx[6] = (startAddr>>0) & 0xff;
  235. tx[7] = (startAddr>>8) & 0xff;
  236. tx[8] = (startAddr>>16) & 0xff;
  237. tx[9] = (startAddr>>24) & 0xff;
  238. memcpy(tx+10, data, length);
  239. for (int idx = 0; idx < (tx[4] | tx[5] << 8); idx++)
  240. chksum ^= tx[6+idx];
  241. tx[sizeof(tx)-1] = chksum;
  242. if(tranceive(fd, tx, sizeof(tx), rx) >0)
  243. {
  244. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  245. {
  246. chksum ^= rx[6+idx];
  247. }
  248. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  249. (rx[2] == tx[1]) &&
  250. (rx[1] == tx[2]) &&
  251. (rx[3] == tx[3]) &&
  252. (rx[6] == 0x00))
  253. {
  254. result = PASS;
  255. }
  256. }
  257. return result;
  258. }
  259. unsigned char Update_Finish(unsigned char fd, unsigned char targetAddr)
  260. {
  261. unsigned char result = FAIL;
  262. unsigned char tx[7] = {0xaa, 0x00, targetAddr, Cmd.update_Finish, 0x04, 0x00, 0x00};
  263. unsigned char rx[512];
  264. unsigned char chksum = 0x00;
  265. if(tranceive(fd, tx, sizeof(tx), rx) >0)
  266. {
  267. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  268. {
  269. chksum ^= rx[6+idx];
  270. }
  271. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  272. (rx[2] == tx[1]) &&
  273. (rx[1] == tx[2]) &&
  274. (rx[3] == tx[3]) &&
  275. (rx[6] == 0x00))
  276. {
  277. result = PASS;
  278. }
  279. }
  280. return result;
  281. }