Module_ConfigTools.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566
  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> /*Unix 標準函數定義*/
  26. #include <fcntl.h> /*檔控制定義*/
  27. #include <termios.h> /*PPSIX 終端控制定義*/
  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 0x600000
  52. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  53. struct StatusCodeData *ShmStatusCodeData;
  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 -n \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]ConfigToolsLog",
  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. #ifdef SystemLogMessage
  72. system(Buf);
  73. #endif
  74. #ifdef ConsloePrintLog
  75. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec, buffer);
  76. #endif
  77. return rc;
  78. }
  79. int runShellCmd(const char*cmd)
  80. {
  81. int result = FAIL;
  82. char buf[256];
  83. FILE *fp;
  84. fp = popen(cmd, "r");
  85. if(fp != NULL)
  86. {
  87. while(fgets(buf, sizeof(buf), fp) != NULL)
  88. {
  89. DEBUG_INFO("%s\n", buf);
  90. }
  91. result = PASS;
  92. }
  93. pclose(fp);
  94. return result;
  95. }
  96. int StoreUsrConfigData(struct SysConfigData *UsrData)
  97. {
  98. int result = PASS;
  99. int fd,wrd;
  100. unsigned int i,Chk;
  101. unsigned char *ptr, *BufTmp;
  102. Chk=0;
  103. ptr=(unsigned char *)UsrData;
  104. if((BufTmp=malloc(MtdBlockSize))!=NULL)
  105. {
  106. memset(BufTmp,0,MtdBlockSize);
  107. memcpy(BufTmp,ptr,sizeof(struct SysConfigData));
  108. for(i=0;i<MtdBlockSize-4;i++)
  109. Chk+=*(BufTmp+i);
  110. memcpy(BufTmp+MtdBlockSize-4, &Chk, 4);
  111. // Output configuration to file.
  112. fd = open("/mnt/EvseConfig.bin", O_RDWR|O_CREAT);
  113. if (fd < 0)
  114. {
  115. DEBUG_ERROR("open /mnt/EvseConfig.bin NG\n");
  116. free(BufTmp);
  117. return 0;
  118. }
  119. wrd=write(fd, BufTmp, MtdBlockSize);
  120. close(fd);
  121. if(wrd<MtdBlockSize)
  122. {
  123. DEBUG_ERROR("write /mnt/EvseConfig.bin NG\n");
  124. free(BufTmp);
  125. return 0;
  126. }
  127. DEBUG_INFO("EvseConfig write to file in /mnt OK.\n");
  128. DEBUG_INFO("Erase /dev/mtd10.\n");
  129. runShellCmd("flash_erase /dev/mtd10 0 12");
  130. DEBUG_INFO("Write /dev/mtd10.\n");
  131. runShellCmd("nandwrite -p /dev/mtd10 /mnt/EvseConfig.bin");
  132. DEBUG_INFO("Erase /dev/mtd11.\n");
  133. runShellCmd("flash_erase /dev/mtd11 0 12");
  134. DEBUG_INFO("Write /dev/mtd11.\n");
  135. runShellCmd("nandwrite -p /dev/mtd11 /mnt/EvseConfig.bin");
  136. system("rm -f /mnt/EvseConfig.bin");
  137. DEBUG_INFO("EvseConfig write to flash OK\n");
  138. }
  139. else
  140. {
  141. DEBUG_ERROR("alloc BlockSize NG\r\n");
  142. result = FAIL;
  143. }
  144. if(BufTmp!=NULL)
  145. free(BufTmp);
  146. return result;
  147. }
  148. int InitShareMemory()
  149. {
  150. int result = PASS;
  151. int MeterSMId;
  152. //Initial ShmSysConfigAndInfo
  153. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  154. {
  155. #ifdef SystemLogMessage
  156. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  157. #endif
  158. result = FAIL;
  159. }
  160. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  161. {
  162. #ifdef SystemLogMessage
  163. DEBUG_ERROR("[shmat ShmSysConfigAndInfo NG\n");
  164. #endif
  165. result = FAIL;
  166. }
  167. //Initial ShmStatusCodeData
  168. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  169. {
  170. #ifdef SystemLogMessage
  171. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  172. #endif
  173. result = FAIL;
  174. }
  175. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  176. {
  177. #ifdef SystemLogMessage
  178. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  179. #endif
  180. result = FAIL;
  181. }
  182. return result;
  183. }
  184. int main(void)
  185. {
  186. char cmd[128];
  187. if(InitShareMemory() == FAIL)
  188. {
  189. #ifdef SystemLogMessage
  190. DEBUG_ERROR("InitShareMemory NG\n");
  191. #endif
  192. if(ShmStatusCodeData!=NULL)
  193. {
  194. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  195. }
  196. sleep(5);
  197. return 0;
  198. }
  199. else
  200. {
  201. DEBUG_INFO("InitShareMemory OK.\r\n");
  202. }
  203. for(;;)
  204. {
  205. system("clear");
  206. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  207. printf("\n ===== main menu ===================================");
  208. printf("\n system: system configuration menu.");
  209. printf("\n ocpp: ocpp configuration menu.");
  210. printf("\n network: netwok configuration menu.");
  211. printf("\n upgrade: trigger firmware upgrade.");
  212. printf("\n save: Save config.");
  213. printf("\n exit: Exit config tools.");
  214. printf("\n =================================================");
  215. printf("\n Please input item name to config: ");
  216. scanf("%s", &cmd[0]);
  217. if(strcmp(cmd, "system") == 0)
  218. {
  219. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  220. printf("\n ***** system configuration menu ******************");
  221. printf("\n modelname: EVSE model name.");
  222. printf("\n serialnumber: EVSE serial number.");
  223. printf("\n *************************************************");
  224. printf("\n Please input operation item: ");
  225. scanf("%s", &cmd[0]);
  226. if(strcmp(cmd, "modelname") == 0)
  227. {
  228. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  229. printf("\n *************************************************");
  230. printf("\n Current model name: %s", ShmSysConfigAndInfo->SysConfig.ModelName);
  231. printf("\n 0: Keep current config.");
  232. printf("\n 1: Input new model name.");
  233. printf("\n *************************************************");
  234. printf("\n Please input operation item: ");
  235. scanf("%s", &cmd[0]);
  236. if(atoi(cmd) == 1)
  237. {
  238. printf("\n Please input model name: ");
  239. scanf("%s", &cmd[0]);
  240. memset(&ShmSysConfigAndInfo->SysConfig.ModelName[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.ModelName));
  241. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.ModelName[0], (char*)&cmd[0]);
  242. }
  243. }
  244. else if(strcmp(cmd, "serialnumber") == 0)
  245. {
  246. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  247. printf("\n *************************************************");
  248. printf("\n Current serial number: %s", ShmSysConfigAndInfo->SysConfig.SerialNumber);
  249. printf("\n 0: Keep current config.");
  250. printf("\n 1: Input new serial number.");
  251. printf("\n *************************************************");
  252. printf("\n Please input operation item: ");
  253. scanf("%s", &cmd[0]);
  254. if(atoi(cmd) == 1)
  255. {
  256. printf("\n Please input serial number: ");
  257. scanf("%s", &cmd[0]);
  258. memset(&ShmSysConfigAndInfo->SysConfig.SerialNumber[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SerialNumber));
  259. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.SerialNumber[0], (char*)&cmd[0]);
  260. }
  261. }
  262. }
  263. else if(strcmp(cmd, "ocpp") == 0)
  264. {
  265. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  266. printf("\n *************************************************");
  267. printf("\n ocppurl: OCPP backend server url.");
  268. printf("\n cboxid: Charger box id.");
  269. printf("\n *************************************************");
  270. printf("\n Please input operation item: ");
  271. scanf("%s", &cmd[0]);
  272. if(strcmp(cmd, "ocppurl") == 0)
  273. {
  274. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  275. printf("\n *************************************************");
  276. printf("\n Current OCPP url: %s", ShmSysConfigAndInfo->SysConfig.OcppServerURL);
  277. printf("\n 0: Keep current config.");
  278. printf("\n 1: Input new ocpp url.");
  279. printf("\n *************************************************");
  280. printf("\n Please input operation item: ");
  281. scanf("%s", &cmd[0]);
  282. if(atoi(cmd) == 1)
  283. {
  284. printf("\n Please input ocpp url: ");
  285. scanf("%s", &cmd[0]);
  286. memset(&ShmSysConfigAndInfo->SysConfig.OcppServerURL[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.OcppServerURL));
  287. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.OcppServerURL[0], (char*)&cmd[0]);
  288. }
  289. }
  290. else if(strcmp(cmd, "cboxid") == 0)
  291. {
  292. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  293. printf("\n *************************************************");
  294. printf("\n Current OCPP charger box id: %s", ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
  295. printf("\n 0: Keep current config.");
  296. printf("\n 1: Input new charger box id.");
  297. printf("\n *************************************************");
  298. printf("\n Please input operation item: ");
  299. scanf("%s", &cmd[0]);
  300. if(atoi(cmd) == 1)
  301. {
  302. printf("\n Please input OCPP charger box id: ");
  303. scanf("%s", &cmd[0]);
  304. memset(&ShmSysConfigAndInfo->SysConfig.ChargeBoxId[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.ChargeBoxId));
  305. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId[0], (char*)&cmd[0]);
  306. }
  307. }
  308. }
  309. else if(strcmp(cmd, "network") == 0)
  310. {
  311. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  312. printf("\n *************************************************");
  313. printf("\n ethdhcp: Ethernet DHCP client.");
  314. printf("\n wifimode: WiFi mode.");
  315. printf("\n wifidhcp: WiFi DHCP client.");
  316. printf("\n wificssid: WiFi client SSID.");
  317. printf("\n wificpasswd: WiFi client password.");
  318. printf("\n telemode: Telecomm mode.");
  319. printf("\n teleapn: Telecomm APN.");
  320. printf("\n teleid: Telecomm login id.");
  321. printf("\n telepwd: Telecomm login password.");
  322. printf("\n *************************************************");
  323. printf("\n Please input operation item: ");
  324. scanf("%s", &cmd[0]);
  325. if(strcmp(cmd, "ethdhcp") == 0)
  326. {
  327. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  328. printf("\n *************************************************");
  329. printf("\n 0: Disable.");
  330. printf("\n 1: Enable.");
  331. printf("\n *************************************************");
  332. printf("\n Current ethernet dhcp mode: %d", ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient^1);
  333. printf("\n Please input dhcp mode: ");
  334. scanf("%s", &cmd[0]);
  335. ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd)^1:0);
  336. }
  337. else if(strcmp(cmd, "wifimode") == 0)
  338. {
  339. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  340. printf("\n *************************************************");
  341. printf("\n 0: Disable.");
  342. printf("\n 1: Station.");
  343. printf("\n 2: Access point.");
  344. printf("\n *************************************************");
  345. printf("\n Current WiFi mode: %d", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode);
  346. printf("\n Please input WiFi mode: ");
  347. scanf("%s", &cmd[0]);
  348. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode = ((0<=atoi(cmd))&&(atoi(cmd)<=2)?atoi(cmd):0);
  349. }
  350. else if(strcmp(cmd, "wifidhcp") == 0)
  351. {
  352. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  353. printf("\n *************************************************");
  354. printf("\n 0: Disable.");
  355. printf("\n 1: Enable.");
  356. printf("\n *************************************************");
  357. printf("\n Current WiFi dhcp client mode: %d", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient^1);
  358. printf("\n Please input WiFi mode: ");
  359. scanf("%s", &cmd[0]);
  360. ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd)^1:0);
  361. }
  362. else if(strcmp(cmd, "wificssid") == 0)
  363. {
  364. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  365. printf("\n *************************************************");
  366. printf("\n Current WiFi client SSID: %s", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
  367. printf("\n 0: Keep current config.");
  368. printf("\n 1: Input new WiFi client SSID.");
  369. printf("\n *************************************************");
  370. printf("\n Please input operation item: ");
  371. scanf("%s", &cmd[0]);
  372. if(atoi(cmd) == 1)
  373. {
  374. printf("\n Please input WiFi client SSID: ");
  375. scanf("%s", &cmd[0]);
  376. memset(&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid));
  377. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid[0], (char*)&cmd[0]);
  378. }
  379. }
  380. else if(strcmp(cmd, "wificpasswd") == 0)
  381. {
  382. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  383. printf("\n *************************************************");
  384. printf("\n Current WiFi client password: %s", ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
  385. printf("\n 0: Keep current config.");
  386. printf("\n 1: Input new WiFi client password.");
  387. printf("\n *************************************************");
  388. printf("\n Please input operation item: ");
  389. scanf("%s", &cmd[0]);
  390. if(atoi(cmd) == 1)
  391. {
  392. printf("\n Please input WiFi client password: ");
  393. scanf("%s", &cmd[0]);
  394. memset(&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword));
  395. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword[0], (char*)&cmd[0]);
  396. }
  397. }
  398. else if(strcmp(cmd, "telemode") == 0)
  399. {
  400. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  401. printf("\n *************************************************");
  402. printf("\n 0: Disable.");
  403. printf("\n 1: Enable.");
  404. printf("\n *************************************************");
  405. printf("\n Current telecomm mode: %d", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode^1);
  406. printf("\n Please input telecomm mode: ");
  407. scanf("%s", &cmd[0]);
  408. ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode = ((0<=atoi(cmd))&&(atoi(cmd)<=1)?atoi(cmd)^1:0);
  409. }
  410. else if(strcmp(cmd, "teleapn") == 0)
  411. {
  412. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  413. printf("\n *************************************************");
  414. printf("\n Current telecomm APN: %s", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn);
  415. printf("\n 0: Keep current config.");
  416. printf("\n 1: Input new telecomm APN.");
  417. printf("\n *************************************************");
  418. printf("\n Please input operation item: ");
  419. scanf("%s", &cmd[0]);
  420. if(atoi(cmd) == 1)
  421. {
  422. printf("\n Please input telecomm APN: ");
  423. scanf("%s", &cmd[0]);
  424. memset(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn));
  425. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn[0], (char*)&cmd[0]);
  426. }
  427. }
  428. else if(strcmp(cmd, "teleid") == 0)
  429. {
  430. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  431. printf("\n *************************************************");
  432. printf("\n Current telecomm login id: %s", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId);
  433. printf("\n 0: Keep current config.");
  434. printf("\n 1: Input new telecomm login id.");
  435. printf("\n *************************************************");
  436. printf("\n Please input operation item: ");
  437. scanf("%s", &cmd[0]);
  438. if(atoi(cmd) == 1)
  439. {
  440. printf("\n Please input telecomm login id: ");
  441. scanf("%s", &cmd[0]);
  442. memset(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId));
  443. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId[0], (char*)&cmd[0]);
  444. }
  445. }
  446. else if(strcmp(cmd, "telepwd") == 0)
  447. {
  448. memset(cmd, 0x00, ARRAY_SIZE(cmd));
  449. printf("\n *************************************************");
  450. printf("\n Current telecomm login password: %s", ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd);
  451. printf("\n 0: Keep current config.");
  452. printf("\n 1: Input new telecomm login password.");
  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 telecomm login password: ");
  459. scanf("%s", &cmd[0]);
  460. memset(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd[0], 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd));
  461. strcpy((char*)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd[0], (char*)&cmd[0]);
  462. }
  463. }
  464. }
  465. else if(strcmp(cmd, "upgrade") == 0)
  466. {
  467. printf("\n Firmware upgrade trigger.");
  468. ShmSysConfigAndInfo->SysInfo.FirmwareUpdate = ON;
  469. sleep(2);
  470. }
  471. else if(strcmp(cmd, "save") == 0)
  472. {
  473. if(StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig) != PASS)
  474. {
  475. printf("\n Write configuration fail.\r\n");
  476. }
  477. else
  478. printf("\n Write configuration OK.\r\n");
  479. sleep(2);
  480. }
  481. else if(strcmp(cmd, "exit") == 0)
  482. {
  483. printf("\n exit program.\n\n");
  484. return FAIL;
  485. }
  486. }
  487. return -1;
  488. }