Module_ConfigTools.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  1. /*
  2. * Module_ConfigTools.c
  3. *
  4. * Created on: 2020¦~6¤ë22¤é
  5. * Author: foluswen
  6. */
  7. #include <sys/types.h>
  8. #include <sys/stat.h>
  9. #include <sys/time.h>
  10. #include <sys/timeb.h>
  11. #include <sys/types.h>
  12. #include <sys/ioctl.h>
  13. #include <sys/socket.h>
  14. #include <sys/ipc.h>
  15. #include <sys/shm.h>
  16. #include <sys/mman.h>
  17. #include <linux/wireless.h>
  18. #include <arpa/inet.h>
  19. #include <netinet/in.h>
  20. #include <dirent.h>
  21. #include <unistd.h>
  22. #include <stdarg.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <unistd.h>
  26. #include <fcntl.h>
  27. #include <termios.h>
  28. #include <errno.h>
  29. #include <errno.h>
  30. #include <string.h>
  31. #include <time.h>
  32. #include <ctype.h>
  33. #include <ifaddrs.h>
  34. #include <stdbool.h>
  35. #include <stddef.h>
  36. #include <stdint.h>
  37. #include "define.h"
  38. //=================================
  39. // System basic sample constant
  40. //=================================
  41. #define DEBUG_INFO(format, args...) StoreLogMsg("[%s:%d][%s][Info] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  42. #define DEBUG_WARN(format, args...) StoreLogMsg("[%s:%d][%s][Warn] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  43. #define DEBUG_ERROR(format, args...) StoreLogMsg("[%s:%d][%s][Error] "format, __FILE__, __LINE__, __FUNCTION__, ##args)
  44. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  45. #define PASS 1
  46. #define FAIL -1
  47. #define YES 1
  48. #define NO 0
  49. #define ON 1
  50. #define OFF 0
  51. #define MtdBlockSize 0x300000
  52. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  53. struct StatusCodeData *ShmStatusCodeData;
  54. struct OCPP16Data *ShmOCPP16Data;
  55. int StoreLogMsg(const char *fmt, ...)
  56. {
  57. char Buf[4096+256];
  58. char buffer[4096];
  59. time_t CurrentTime;
  60. struct tm *tm;
  61. struct timeval tv;
  62. va_list args;
  63. va_start(args, fmt);
  64. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  65. va_end(args);
  66. memset(Buf,0,sizeof(Buf));
  67. CurrentTime = time(NULL);
  68. tm=localtime(&CurrentTime);
  69. gettimeofday(&tv, NULL); // get microseconds, 10^-6
  70. sprintf(Buf,"echo -n \"[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s\" >> /Storage/SystemLog/[%04d.%02d]ConfigToolsLog",
  71. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec,
  72. buffer,
  73. tm->tm_year+1900,tm->tm_mon+1);
  74. #ifdef SystemLogMessage
  75. system(Buf);
  76. #endif
  77. #ifdef ConsloePrintLog
  78. printf("[%04d.%02d.%02d %02d:%02d:%02d.%06ld]%s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,tv.tv_usec, buffer);
  79. #endif
  80. return rc;
  81. }
  82. int runShellCmd(const char*cmd)
  83. {
  84. int result = FAIL;
  85. char buf[256];
  86. FILE *fp;
  87. fp = popen(cmd, "r");
  88. if(fp != NULL)
  89. {
  90. while(fgets(buf, sizeof(buf), fp) != NULL)
  91. {
  92. DEBUG_INFO("%s\n", buf);
  93. }
  94. result = PASS;
  95. }
  96. pclose(fp);
  97. return result;
  98. }
  99. int StoreUsrConfigData(struct SysConfigData *UsrData)
  100. {
  101. int result = PASS;
  102. int fd,wrd;
  103. unsigned int i,Chk;
  104. unsigned char *ptr, *BufTmp;
  105. Chk=0;
  106. ptr=(unsigned char *)UsrData;
  107. if((BufTmp=malloc(MtdBlockSize))!=NULL)
  108. {
  109. memset(BufTmp,0,MtdBlockSize);
  110. memcpy(BufTmp,ptr,sizeof(struct SysConfigData));
  111. for(i=ARRAY_SIZE(UsrData->CsuBootLoadFwRev);i<MtdBlockSize-4;i++)
  112. Chk+=*(BufTmp+i);
  113. memcpy(BufTmp+MtdBlockSize-4, &Chk, 4);
  114. // Output configuration to file.
  115. fd = open("/mnt/EvseConfig.bin", O_RDWR|O_CREAT);
  116. if (fd < 0)
  117. {
  118. DEBUG_ERROR("open /mnt/EvseConfig.bin NG\n");
  119. free(BufTmp);
  120. return 0;
  121. }
  122. wrd=write(fd, BufTmp, MtdBlockSize);
  123. close(fd);
  124. if(wrd<MtdBlockSize)
  125. {
  126. DEBUG_ERROR("write /mnt/EvseConfig.bin NG\n");
  127. free(BufTmp);
  128. return 0;
  129. }
  130. DEBUG_INFO("EvseConfig write to file in /mnt OK.\n");
  131. DEBUG_INFO("Erase /dev/mtd10.\n");
  132. runShellCmd("flash_erase /dev/mtd10 0 0");
  133. DEBUG_INFO("Write /dev/mtd10.\n");
  134. runShellCmd("nandwrite -p /dev/mtd10 /mnt/EvseConfig.bin");
  135. DEBUG_INFO("Erase /dev/mtd11.\n");
  136. runShellCmd("flash_erase /dev/mtd11 0 0");
  137. DEBUG_INFO("Write /dev/mtd11.\n");
  138. runShellCmd("nandwrite -p /dev/mtd11 /mnt/EvseConfig.bin");
  139. system("rm -f /mnt/EvseConfig.bin");
  140. DEBUG_INFO("EvseConfig write to flash OK\n");
  141. }
  142. else
  143. {
  144. DEBUG_ERROR("alloc BlockSize NG\r\n");
  145. result = FAIL;
  146. }
  147. if(BufTmp!=NULL)
  148. free(BufTmp);
  149. return result;
  150. }
  151. int InitShareMemory()
  152. {
  153. int result = PASS;
  154. int MeterSMId;
  155. //Initial ShmSysConfigAndInfo
  156. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  157. {
  158. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  159. result = FAIL;
  160. }
  161. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  162. {
  163. DEBUG_ERROR("[shmat ShmSysConfigAndInfo NG\n");
  164. result = FAIL;
  165. }
  166. else
  167. {}
  168. //Initial ShmStatusCodeData
  169. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  170. {
  171. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  172. result = FAIL;
  173. }
  174. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  175. {
  176. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  177. result = FAIL;
  178. }
  179. else
  180. {}
  181. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  182. {
  183. DEBUG_ERROR("shmget ShmOCPP16Data NG\n");
  184. result = FAIL;
  185. }
  186. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  187. {
  188. DEBUG_ERROR("shmat ShmOCPP16Data NG\n");
  189. result = FAIL;
  190. }
  191. else
  192. {}
  193. return result;
  194. }
  195. int main(void)
  196. {
  197. char cmd[128];
  198. if(InitShareMemory() == FAIL)
  199. {
  200. #ifdef SystemLogMessage
  201. DEBUG_ERROR("InitShareMemory NG\n");
  202. #endif
  203. if(ShmStatusCodeData!=NULL)
  204. {
  205. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  206. }
  207. sleep(5);
  208. return 0;
  209. }
  210. else
  211. {
  212. DEBUG_INFO("InitShareMemory OK.\r\n");
  213. }
  214. for(;;)
  215. {
  216. system("clear");
  217. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  218. printf("\n ===== main menu ===================================");
  219. printf("\n system: system configuration menu.");
  220. printf("\n ocpp: ocpp configuration menu.");
  221. printf("\n network: netwok configuration menu.");
  222. printf("\n test: charger start/stop test.");
  223. printf("\n upgrade: trigger firmware upgrade.");
  224. printf("\n save: Save config.");
  225. printf("\n exit: Exit config tools.");
  226. printf("\n =================================================");
  227. printf("\n Please input item name to config: ");
  228. scanf("%s", &cmd[0]);
  229. if(strcmp(cmd, "system") == 0)
  230. {
  231. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  232. printf("\n ***** system configuration menu ******************");
  233. printf("\n modelname: EVSE model name.");
  234. printf("\n serialnumber: EVSE serial number.");
  235. printf("\n authentication: Authentication function.");
  236. printf("\n rfidendian: RFID read endian.");
  237. printf("\n *************************************************");
  238. printf("\n Please input operation item: ");
  239. scanf("%s", &cmd[0]);
  240. if(strcmp(cmd, "modelname") == 0)
  241. {
  242. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  243. printf("\n *************************************************");
  244. printf("\n Current model name: %s", ShmSysConfigAndInfo->SysConfig.ModelName);
  245. printf("\n 0: Keep current config.");
  246. printf("\n 1: Input new model name.");
  247. printf("\n *************************************************");
  248. printf("\n Please input operation item: ");
  249. scanf("%s", &cmd[0]);
  250. if(atoi(cmd) == 1)
  251. {
  252. printf("\n Please input model name: ");
  253. scanf("%s", &cmd[0]);
  254. memset(&ShmSysConfigAndInfo->SysConfig.ModelName[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.ModelName));
  255. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.ModelName[0], (char*)&cmd[0]);
  256. }
  257. }
  258. else if(strcmp(cmd, "serialnumber") == 0)
  259. {
  260. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  261. printf("\n *************************************************");
  262. printf("\n Current serial number: %s", ShmSysConfigAndInfo->SysConfig.SerialNumber);
  263. printf("\n 0: Keep current config.");
  264. printf("\n 1: Input new serial number.");
  265. printf("\n *************************************************");
  266. printf("\n Please input operation item: ");
  267. scanf("%s", &cmd[0]);
  268. if(atoi(cmd) == 1)
  269. {
  270. printf("\n Please input serial number: ");
  271. scanf("%s", &cmd[0]);
  272. memset(&ShmSysConfigAndInfo->SysConfig.SerialNumber[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SerialNumber));
  273. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.SerialNumber[0], (char*)&cmd[0]);
  274. }
  275. }
  276. else if(strcmp(cmd, "authentication") == 0)
  277. {
  278. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  279. printf("\n *************************************************");
  280. printf("\n 0: Enable.");
  281. printf("\n 1: Disable.");
  282. printf("\n *************************************************");
  283. printf("\n Current mode: %d", ShmSysConfigAndInfo->SysConfig.AuthorisationMode);
  284. printf("\n Please input authentication mode: ");
  285. scanf("%s", &cmd[0]);
  286. ShmSysConfigAndInfo->SysConfig.AuthorisationMode = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd):0);
  287. }
  288. else if(strcmp(cmd, "rfidendian") == 0)
  289. {
  290. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  291. printf("\n *************************************************");
  292. printf("\n 0: Little endian.");
  293. printf("\n 1: Big endian.");
  294. printf("\n *************************************************");
  295. printf("\n Current mode: %d", ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian);
  296. printf("\n Please input rfid endian mode: ");
  297. scanf("%s", &cmd[0]);
  298. ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd):0);
  299. }
  300. }
  301. else if(strcmp(cmd, "ocpp") == 0)
  302. {
  303. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  304. printf("\n *************************************************");
  305. printf("\n ocppurl: OCPP backend server url.");
  306. printf("\n cboxid: Charger box id.");
  307. printf("\n vender: Charger point vender.");
  308. printf("\n offlinepolicy: Charger off line policy.");
  309. printf("\n localloadbalance: Charger local load balance.");
  310. printf("\n *************************************************");
  311. printf("\n Please input operation item: ");
  312. scanf("%s", &cmd[0]);
  313. if(strcmp(cmd, "ocppurl") == 0)
  314. {
  315. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  316. printf("\n *************************************************");
  317. printf("\n Current OCPP url: %s", ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  318. printf("\n 0: Keep current config.");
  319. printf("\n 1: Input new ocpp url.");
  320. printf("\n *************************************************");
  321. printf("\n Please input operation item: ");
  322. scanf("%s", &cmd[0]);
  323. if(atoi(cmd) == 1)
  324. {
  325. printf("\n Please input ocpp url: ");
  326. scanf("%s", &cmd[0]);
  327. memset(&ShmSysConfigAndInfo->SysConfig.OcppServerURL[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.OcppServerURL));
  328. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.OcppServerURL[0], (char*)&cmd[0]);
  329. }
  330. }
  331. else if(strcmp(cmd, "cboxid") == 0)
  332. {
  333. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  334. printf("\n *************************************************");
  335. printf("\n Current OCPP charger box id: %s", ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  336. printf("\n 0: Keep current config.");
  337. printf("\n 1: Input new charger box id.");
  338. printf("\n *************************************************");
  339. printf("\n Please input operation item: ");
  340. scanf("%s", &cmd[0]);
  341. if(atoi(cmd) == 1)
  342. {
  343. printf("\n Please input OCPP charger box id: ");
  344. scanf("%s", &cmd[0]);
  345. memset(&ShmSysConfigAndInfo->SysConfig.ChargeBoxId[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.ChargeBoxId));
  346. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId[0], (char*)&cmd[0]);
  347. }
  348. }
  349. else if(strcmp(cmd, "vender") == 0)
  350. {
  351. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  352. printf("\n *************************************************");
  353. printf("\n Current OCPP vender: %s", ShmSysConfigAndInfo->SysConfig.chargePointVendor);
  354. printf("\n 0: Keep current config.");
  355. printf("\n 1: Input new charger box id.");
  356. printf("\n *************************************************");
  357. printf("\n Please input operation item: ");
  358. scanf("%s", &cmd[0]);
  359. if(atoi(cmd) == 1)
  360. {
  361. printf("\n Please input OCPP vender: ");
  362. scanf("%s", &cmd[0]);
  363. memset(&ShmSysConfigAndInfo->SysConfig.chargePointVendor[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.chargePointVendor));
  364. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.chargePointVendor[0], (char*)&cmd[0]);
  365. }
  366. }
  367. else if(strcmp(cmd, "offlinepolicy") == 0)
  368. {
  369. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  370. printf("\n *************************************************");
  371. printf("\n 0: Local list.");
  372. printf("\n 2: Free charging.");
  373. printf("\n 3: Deny charging.");
  374. printf("\n *************************************************");
  375. printf("\n Current mode: %d", ShmSysConfigAndInfo->SysConfig.OfflinePolicy);
  376. printf("\n Please input off line policy mode: ");
  377. scanf("%s", &cmd[0]);
  378. ShmSysConfigAndInfo->SysConfig.OfflinePolicy = ((0<=atoi(cmd))&&(atoi(cmd)<=3)&&(atoi(cmd)!=1)?atoi(cmd):0);
  379. }
  380. else if(strcmp(cmd, "localloadbalance") == 0)
  381. {
  382. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  383. printf("\n *************************************************");
  384. printf("\n 0: Disable.");
  385. printf("\n 1: Enable.");
  386. printf("\n *************************************************");
  387. printf("\n Current mode: %d", ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharging);
  388. printf("\n Please input local load balance mode: ");
  389. scanf("%s", &cmd[0]);
  390. ShmSysConfigAndInfo->SysConfig.isEnableLocalPowerSharging = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd):0);
  391. }
  392. }
  393. else if(strcmp(cmd, "network") == 0)
  394. {
  395. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  396. printf("\n *************************************************");
  397. printf("\n ethdhcp: Ethernet DHCP client.");
  398. printf("\n wifimode: WiFi mode.");
  399. printf("\n wifidhcp: WiFi DHCP client.");
  400. printf("\n wificssid: WiFi client SSID.");
  401. printf("\n wificpasswd: WiFi client password.");
  402. printf("\n telemode: Telecomm mode.");
  403. printf("\n teleapn: Telecomm APN.");
  404. printf("\n teleid: Telecomm login id.");
  405. printf("\n telepwd: Telecomm login password.");
  406. printf("\n *************************************************");
  407. printf("\n Please input operation item: ");
  408. scanf("%s", &cmd[0]);
  409. if(strcmp(cmd, "ethdhcp") == 0)
  410. {
  411. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  412. printf("\n *************************************************");
  413. printf("\n 0: Disable.");
  414. printf("\n 1: Enable.");
  415. printf("\n *************************************************");
  416. printf("\n Current ethernet dhcp mode: %d", ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient^1);
  417. printf("\n Please input dhcp mode: ");
  418. scanf("%s", &cmd[0]);
  419. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd)^1:0);
  420. }
  421. else if(strcmp(cmd, "wifimode") == 0)
  422. {
  423. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  424. printf("\n *************************************************");
  425. printf("\n 0: Disable.");
  426. printf("\n 1: Station.");
  427. printf("\n 2: Access point.");
  428. printf("\n *************************************************");
  429. printf("\n Current WiFi mode: %d", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode);
  430. printf("\n Please input WiFi mode: ");
  431. scanf("%s", &cmd[0]);
  432. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode = ((0<=atoi(cmd))&&(atoi(cmd)<=2)?atoi(cmd):0);
  433. }
  434. else if(strcmp(cmd, "wifidhcp") == 0)
  435. {
  436. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  437. printf("\n *************************************************");
  438. printf("\n 0: Disable.");
  439. printf("\n 1: Enable.");
  440. printf("\n *************************************************");
  441. printf("\n Current WiFi dhcp client mode: %d", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient^1);
  442. printf("\n Please input WiFi mode: ");
  443. scanf("%s", &cmd[0]);
  444. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd)^1:0);
  445. }
  446. else if(strcmp(cmd, "wificssid") == 0)
  447. {
  448. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  449. printf("\n *************************************************");
  450. printf("\n Current WiFi client SSID: %s", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  451. printf("\n 0: Keep current config.");
  452. printf("\n 1: Input new WiFi client SSID.");
  453. printf("\n *************************************************");
  454. printf("\n Please input operation item: ");
  455. scanf("%s", &cmd[0]);
  456. if(atoi(cmd) == 1)
  457. {
  458. printf("\n Please input WiFi client SSID: ");
  459. scanf("%s", &cmd[0]);
  460. memset(&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid));
  461. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid[0], (char*)&cmd[0]);
  462. }
  463. }
  464. else if(strcmp(cmd, "wificpasswd") == 0)
  465. {
  466. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  467. printf("\n *************************************************");
  468. printf("\n Current WiFi client password: %s", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  469. printf("\n 0: Keep current config.");
  470. printf("\n 1: Input new WiFi client password.");
  471. printf("\n *************************************************");
  472. printf("\n Please input operation item: ");
  473. scanf("%s", &cmd[0]);
  474. if(atoi(cmd) == 1)
  475. {
  476. printf("\n Please input WiFi client password: ");
  477. scanf("%s", &cmd[0]);
  478. memset(&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword));
  479. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword[0], (char*)&cmd[0]);
  480. }
  481. }
  482. else if(strcmp(cmd, "telemode") == 0)
  483. {
  484. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  485. printf("\n *************************************************");
  486. printf("\n 0: Disable.");
  487. printf("\n 1: Enable.");
  488. printf("\n *************************************************");
  489. printf("\n Current telecomm mode: %d", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode^1);
  490. printf("\n Please input telecomm mode: ");
  491. scanf("%s", &cmd[0]);
  492. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd)^1:0);
  493. }
  494. else if(strcmp(cmd, "teleapn") == 0)
  495. {
  496. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  497. printf("\n *************************************************");
  498. printf("\n Current telecomm APN: %s", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn);
  499. printf("\n 0: Keep current config.");
  500. printf("\n 1: Input new telecomm APN.");
  501. printf("\n *************************************************");
  502. printf("\n Please input operation item: ");
  503. scanf("%s", &cmd[0]);
  504. if(atoi(cmd) == 1)
  505. {
  506. printf("\n Please input telecomm APN: ");
  507. scanf("%s", &cmd[0]);
  508. memset(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn));
  509. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn[0], (char*)&cmd[0]);
  510. }
  511. }
  512. else if(strcmp(cmd, "teleid") == 0)
  513. {
  514. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  515. printf("\n *************************************************");
  516. printf("\n Current telecomm login id: %s", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId);
  517. printf("\n 0: Keep current config.");
  518. printf("\n 1: Input new telecomm login id.");
  519. printf("\n *************************************************");
  520. printf("\n Please input operation item: ");
  521. scanf("%s", &cmd[0]);
  522. if(atoi(cmd) == 1)
  523. {
  524. printf("\n Please input telecomm login id: ");
  525. scanf("%s", &cmd[0]);
  526. memset(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId));
  527. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId[0], (char*)&cmd[0]);
  528. }
  529. }
  530. else if(strcmp(cmd, "telepwd") == 0)
  531. {
  532. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  533. printf("\n *************************************************");
  534. printf("\n Current telecomm login password: %s", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd);
  535. printf("\n 0: Keep current config.");
  536. printf("\n 1: Input new telecomm login password.");
  537. printf("\n *************************************************");
  538. printf("\n Please input operation item: ");
  539. scanf("%s", &cmd[0]);
  540. if(atoi(cmd) == 1)
  541. {
  542. printf("\n Please input telecomm login password: ");
  543. scanf("%s", &cmd[0]);
  544. memset(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd));
  545. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd[0], (char*)&cmd[0]);
  546. }
  547. }
  548. }
  549. else if(strcmp(cmd, "test") == 0)
  550. {
  551. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  552. printf("\n ***** test menu ******************");
  553. printf("\n start: EVSE start charging request.");
  554. printf("\n stop: EVSE stop charging request.");
  555. printf("\n auth: Authorize request.");
  556. printf("\n cancel: return to main menu.");
  557. printf("\n *************************************************");
  558. printf("\n Please input operation item: ");
  559. scanf("%s", &cmd[0]);
  560. if(strcmp(cmd, "start") == 0)
  561. {
  562. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  563. printf("\n Please input gun index(1~2): ");
  564. scanf("%s", &cmd[0]);
  565. if((0 < atoi(cmd)) && (atoi(cmd) < 3))
  566. {
  567. ShmSysConfigAndInfo->SysInfo.AcChargingData[atoi(cmd)-1].schedule.isTriggerStart = ON;
  568. }
  569. else
  570. {
  571. printf("\n Invalid input gun_index.");
  572. }
  573. }
  574. else if(strcmp(cmd, "stop") == 0)
  575. {
  576. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  577. printf("\n Please input gun index(1~2): ");
  578. scanf("%s", &cmd[0]);
  579. if((0 < atoi(cmd)) && (atoi(cmd) < 3))
  580. {
  581. ShmSysConfigAndInfo->SysInfo.AcChargingData[atoi(cmd)-1].schedule.isTriggerStop = ON;
  582. }
  583. else
  584. {
  585. printf("\n Invalid input gun_index.");
  586. }
  587. }
  588. else if(strcmp(cmd, "auth") == 0)
  589. {
  590. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  591. printf("\n Please input idtag: ");
  592. scanf("%s", &cmd[0]);
  593. sprintf((char*)ShmSysConfigAndInfo->SysConfig.UserId, "%s", cmd);
  594. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = 1;
  595. }
  596. else if(strcmp(cmd, "cancel") == 0)
  597. {}
  598. }
  599. else if(strcmp(cmd, "upgrade") == 0)
  600. {
  601. printf("\n Firmware upgrade trigger.");
  602. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate = ON;
  603. sleep(2);
  604. }
  605. else if(strcmp(cmd, "save") == 0)
  606. {
  607. if(StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig) != PASS)
  608. {
  609. printf("\n Write configuration fail.\r\n");
  610. }
  611. else
  612. printf("\n Write configuration OK.\r\n");
  613. sleep(2);
  614. }
  615. else if(strcmp(cmd, "exit") == 0)
  616. {
  617. printf("\n exit program.\n\n");
  618. return FAIL;
  619. }
  620. }
  621. return -1;
  622. }