Module_LcmControl.c 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539
  1. #include <stdio.h> /*標準輸入輸出定義*/
  2. #include <stdlib.h> /*標準函數庫定義*/
  3. #include <stdint.h>
  4. #include <string.h>
  5. #include <unistd.h>
  6. #include <termios.h>
  7. #include <fcntl.h>
  8. #include <time.h>
  9. #include <sys/ioctl.h>
  10. #include <sys/timeb.h>
  11. #include "Module_LcmControl.h"
  12. #include "../Log/log.h"
  13. #include "../ShareMemory/shmMem.h"
  14. #include "../Define/define.h"
  15. #include "../Config.h"
  16. #include "../SelectGun/SelectGun.h"
  17. #include "../CSU/main.h"
  18. #include "../timeout.h"
  19. #define uSEC_VAL (1000000)
  20. //------------------------------------------------------------------------------
  21. //struct SysConfigAndInfo *ShmSysConfigAndInfo;
  22. //struct StatusCodeData *ShmStatusCodeData;
  23. static struct SysConfigData *pSysConfig = NULL;
  24. static struct SysInfoData *pSysInfo = NULL;
  25. static struct WARNING_CODE_INFO *pSysWarning = NULL;
  26. static struct OCPP16Data *ShmOCPP16Data = NULL;
  27. static struct FanModuleData *ShmFanModuleData;
  28. static struct PrimaryMcuData *ShmPrimaryMcuData;
  29. static SelectGunInfo *ShmSelectGunInfo = NULL;
  30. static struct ChargingInfoData *pDcChargingInfo = NULL;
  31. static DcCommonInfo *ShmDcCommonData = NULL;
  32. //int CardReadFd = -1;
  33. short _currentPage = _PAGE_NONE;
  34. uint8_t _totalCount;
  35. uint8_t _showInformIndex = 0;
  36. float ChargeMaxPower_0 = 0;
  37. float ChargeMaxPower_1 = 0;
  38. bool _battery_display_ani = false;
  39. int _port;
  40. //char* pPortName = "/dev/ttyO2";
  41. char *pPortName = "/dev/ttyS3";
  42. char *moduleName = "DMT80480T070_09WT";
  43. bool is_show = false;
  44. bool is_stop = false;
  45. uint8_t _everyPageRollChange;
  46. uint8_t _btn_press = 0;
  47. short _btn_press_id = 0;
  48. uint8_t _btn_press_count = 0;
  49. int _Text_Running_Count = 1;
  50. int Battery_Test = 0;
  51. extern void UpdateLcmFunction(DcCommonInfo *ShmDcCommonData,int _lcmport);
  52. //==========================================
  53. // Open and Close RS232 and R/W
  54. //==========================================
  55. void AuthorizingStart(void)
  56. {
  57. ShmOCPP16Data->SpMsg.bits.AuthorizeReq = YES;
  58. pSysInfo->AuthorizeFlag = YES;
  59. }
  60. void GetClockTime(struct timespec *_now_time, void *null)
  61. {
  62. clock_gettime(CLOCK_MONOTONIC, _now_time);
  63. }
  64. void StartSystemTimeoutDet(uint8_t flag)
  65. {
  66. if (pSysInfo->SystemTimeoutFlag != flag) {
  67. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  68. }
  69. pSysInfo->SystemTimeoutFlag = flag;
  70. }
  71. void StopSystemTimeoutDet(void)
  72. {
  73. GetClockTime(&pSysInfo->SystemTimeoutTimer, NULL);
  74. pSysInfo->SystemTimeoutFlag = Timeout_None;
  75. }
  76. void StartGunInfoTimeoutDet(uint8_t gunIndex, uint8_t flag)
  77. {
  78. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  79. if (gunIndex < pSysConfig->TotalConnectorCount) {
  80. if (pDcChargingInfo->TimeoutFlag != flag) {
  81. gettimeofday(&pDcChargingInfo->TimeoutTimer, NULL);
  82. }
  83. pDcChargingInfo->TimeoutFlag = flag;
  84. }
  85. }
  86. void StopGunInfoTimeoutDet(uint8_t gunIndex)
  87. {
  88. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  89. if (gunIndex < pSysConfig->TotalConnectorCount) {
  90. pDcChargingInfo->TimeoutFlag = Timeout_None;
  91. }
  92. }
  93. unsigned long GetClockTimeoutValue(struct timespec _start_time)
  94. {
  95. struct timespec ts_end;
  96. unsigned long ret = 0;
  97. clock_gettime(CLOCK_MONOTONIC, &ts_end);
  98. ret = ((unsigned long)(ts_end.tv_sec - _start_time.tv_sec) * 1000000) + ((unsigned long)((ts_end.tv_nsec / 1000) - (_start_time.tv_nsec/ 1000)));
  99. return ret;
  100. }
  101. int CreateCommunicationLcmPort()
  102. {
  103. int fd;
  104. struct termios tios;
  105. fd = open(pPortName, O_RDWR);
  106. if (fd <= 0) {
  107. log_error("open /dev/ttyS3 NG ");
  108. return -1;
  109. }
  110. ioctl(fd, TCGETS, &tios);
  111. tios.c_cflag = B115200 | CS8 | CLOCAL | CREAD;
  112. tios.c_lflag = 0;
  113. tios.c_iflag = 0;
  114. tios.c_oflag = 0;
  115. tios.c_cc[VMIN] = 0;
  116. tios.c_cc[VTIME] = (uint8_t) 5;
  117. tios.c_lflag = 0;
  118. tcflush(fd, TCIFLUSH);
  119. ioctl(fd, TCSETS, &tios);
  120. return fd;
  121. }
  122. void CloseCommunicationLcmPort()
  123. {
  124. close(_port);
  125. }
  126. void setSelGunWaitToAuthor(uint8_t curSel)
  127. {
  128. if (curSel == LEFT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.LeftGun == SEL_GUN_CONFIRM) {
  129. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_ATHOR;
  130. log_info("setSelGunWaitToAuthor left");
  131. } else if (curSel == RIGHT_GUN_NUM && ShmSelectGunInfo->SelGunInfo.RightGun == SEL_GUN_CONFIRM) {
  132. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_ATHOR;
  133. log_info("setSelGunWaitToAuthor right");
  134. }
  135. }
  136. void confirmSelGun(uint8_t selGun)
  137. {
  138. if (selGun == LEFT_GUN_NUM) {
  139. ShmSelectGunInfo->SelGunInfo.LeftGun = SEL_GUN_CONFIRM;
  140. //printf("confirmSelGun left");
  141. } else if (selGun == RIGHT_GUN_NUM) {
  142. ShmSelectGunInfo->SelGunInfo.RightGun = SEL_GUN_CONFIRM;
  143. //printf("confirmSelGun right");
  144. }
  145. //changeLcmPage(_PAGE_PLUGIN);
  146. //StartGunInfoTimeoutDet(selGun, Timeout_SelectGun);
  147. //StartSystemTimeoutDet(Timeout_ReturnViewPage);
  148. }
  149. void GetDeviceInfoStatus(short address, uint8_t len)
  150. {
  151. uint8_t cmd[8];
  152. memset(cmd, 0x00, sizeof(cmd));
  153. uint8_t msg[11];
  154. memset(msg, 0x00, sizeof(msg));
  155. cmd[0] = CMD_TITLE_1;
  156. cmd[1] = CMD_TITLE_2;
  157. cmd[2] = 0x04;
  158. cmd[3] = CMD_MULTI_READ;
  159. cmd[4] = (address >> 8) & 0xff;
  160. cmd[5] = (address >> 0) & 0xff;
  161. cmd[6] = len;
  162. WriteCmdToLcm(cmd, ARRAY_SIZE(cmd));
  163. usleep(1000);
  164. ReadMsgFromLcm(msg, ARRAY_SIZE(msg));
  165. }
  166. void WriteCmdToLcm(uint8_t *cmd, uint8_t cmdLen)
  167. {
  168. int len = write(_port, cmd, cmdLen);
  169. if (len < sizeof(cmd)) {
  170. log_error("Write cmd to LCM Failure. ");
  171. }
  172. }
  173. void CheckIdlePress()
  174. {
  175. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  176. log_info("IDLE Enter Select Gun Page");
  177. }
  178. void CheckReturnPress()
  179. {
  180. int i;
  181. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  182. //pDcChargingInfo->SystemStatus = S_IDLE;
  183. StopSystemTimeoutDet();
  184. if ( pDcChargingInfo->SystemStatus == S_AUTHORIZING ) {
  185. if (pSysInfo->SystemPage == _PAGE_AUTHORIZE) {
  186. pSysInfo->SystemPage = _PAGE_SELECT_PAY;
  187. }
  188. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  189. ShmDcCommonData->PreAuth_Result = 0;
  190. for(i=0;i<=30;i++) {
  191. if(ShmDcCommonData->PreAuth_Result != 0)
  192. break;
  193. sleep(1);
  194. }
  195. ShmDcCommonData->PreAuth_Result = 0;
  196. pDcChargingInfo->SystemStatus = S_IDLE;
  197. strcpy((char *)pSysConfig->UserId, "");
  198. return;
  199. }
  200. if ( pSysInfo->SystemPage == _PAGE_EXIT ) {
  201. pDcChargingInfo->SystemStatus = S_IDLE;
  202. pSysInfo->SystemPage = _PAGE_IDLE;
  203. return;
  204. }
  205. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  206. }
  207. void CheckStopPress()
  208. {
  209. is_stop = TRUE;
  210. //ChangeDisplay2Value(_ConfirmStopIcon,is_stop);
  211. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM)
  212. pSysInfo->SystemPage = _PAGE_STOP_CONFIRM_LEFT;
  213. else
  214. pSysInfo->SystemPage = _PAGE_STOP_CONFIRM_RIGHT;
  215. }
  216. void CheckStopConfirmPress()
  217. {
  218. int result;
  219. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  220. pDcChargingInfo->SystemStatus = S_TERMINATING;
  221. pSysInfo->SystemPage = _PAGE_PAYING;
  222. is_stop = FALSE;
  223. ShmDcCommonData->StopCharge[pSysInfo->CurGunSelected] = TRUE;
  224. StartGunInfoTimeoutDet(pSysInfo->CurGunSelected,Timeout_FinalCost);
  225. /*
  226. ShmDcCommonData->PreAuth_Config = _CREDITCARD_CANCEL;
  227. ShmDcCommonData->PreAuth_Result = 0;
  228. */
  229. }
  230. void CheckStopCancelPress()
  231. {
  232. is_stop = FALSE;
  233. //ChangeDisplay2Value(_ConfirmStopIcon,is_stop);
  234. pSysInfo->SystemPage = _PAGE_CHARGING;
  235. }
  236. void CheckConfirmGun(uint8_t gunIndex)
  237. {
  238. pSysInfo->CurGunSelected = gunIndex;
  239. pSysInfo->SystemPage = _PAGE_BILL;
  240. }
  241. void CheckDonateBill(uint8_t gunIndex)
  242. {
  243. if (gunIndex == LEFT_GUN_NUM) {
  244. pSysInfo->SystemPage = _PAGE_DONATE_LEFT;
  245. } else
  246. pSysInfo->SystemPage = _PAGE_DONATE_RIGHT;
  247. }
  248. void CheckDonateYes()
  249. {
  250. pSysInfo->SystemPage = _PAGE_SELECT_PAY;
  251. ShmDcCommonData->donate_flag[pSysInfo->CurGunSelected] = TRUE;
  252. }
  253. void CheckDonateNo()
  254. {
  255. pSysInfo->SystemPage = _PAGE_BILL;
  256. ShmDcCommonData->donate_flag[pSysInfo->CurGunSelected] = FALSE;
  257. }
  258. void CheckPayCreditCard()
  259. {
  260. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  261. if (pDcChargingInfo->SystemStatus == S_IDLE) {
  262. confirmSelGun(pSysInfo->CurGunSelected);
  263. setSelGunWaitToAuthor(pSysInfo->CurGunSelected);
  264. pSysInfo->SystemPage = _PAGE_AUTHORIZE;
  265. //pDcChargingInfo->SystemStatus = S_AUTHORIZING;
  266. //
  267. AuthorizingStart();
  268. }
  269. }
  270. void CheckPayIcash()
  271. {
  272. }
  273. void CheckPayLinePay()
  274. {
  275. }
  276. void CheckTouchPress(short id)
  277. {
  278. GetDeviceInfoStatus(id,1);
  279. if (_btn_press >= 1 && _btn_press_id == id ) {
  280. _btn_press_count++;
  281. }
  282. if (_btn_press >= 1 && _btn_press_id == id && _btn_press_count >= 3) {
  283. ChangeDisplay2Value(id, 0);
  284. //log_info("Press id : 0x%04x",id);
  285. _btn_press_count = 0;
  286. switch (id) {
  287. case _Touch_Show_Left:
  288. if (pSysInfo->SystemPage >= _PAGE_ADD_FRIEND && pSysInfo->SystemPage <= _PAGE_PLUGIN) {
  289. log_info("Authorize Process can't select gun");
  290. return;
  291. }
  292. // Show log
  293. if(pSysInfo->CurGunSelected != LEFT_GUN_NUM) {
  294. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(LEFT_GUN_NUM);
  295. pSysInfo->CurGunSelected = LEFT_GUN_NUM;
  296. if(pDcChargingInfo->SystemStatus == S_IDLE) {
  297. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  298. }
  299. log_info("LCM left Gun down...............................%x %x %x",
  300. pSysInfo->CurGunSelected,pDcChargingInfo->SystemStatus,pSysInfo->SystemPage);
  301. }
  302. if (pSysInfo->SystemPage == _PAGE_CHARGING || pSysInfo->SystemPage == _PAGE_COMPLETE ||
  303. pSysInfo->SystemPage == _PAGE_PAYFAIL) {
  304. StopSystemTimeoutDet();
  305. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  306. }
  307. break;
  308. case _Touch_Show_Right:
  309. if (pSysInfo->SystemPage >= _PAGE_ADD_FRIEND && pSysInfo->SystemPage <= _PAGE_PLUGIN) {
  310. log_info("Authorize Process can't select gun");
  311. return;
  312. }
  313. // Show log
  314. if(pSysInfo->CurGunSelected != RIGHT_GUN_NUM) {
  315. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(RIGHT_GUN_NUM);
  316. pSysInfo->CurGunSelected = RIGHT_GUN_NUM;
  317. if(pDcChargingInfo->SystemStatus == S_IDLE) {
  318. pSysInfo->SystemPage = _PAGE_SELECT_GUN;
  319. }
  320. log_info("LCM Right Gun down...............................%x %x %x",
  321. pSysInfo->CurGunSelected,pDcChargingInfo->SystemStatus,pSysInfo->SystemPage);
  322. }
  323. if (pSysInfo->SystemPage == _PAGE_CHARGING || pSysInfo->SystemPage == _PAGE_COMPLETE ||
  324. pSysInfo->SystemPage == _PAGE_PAYFAIL) {
  325. StopSystemTimeoutDet();
  326. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  327. }
  328. break;
  329. case _Touch_Return:
  330. if (pSysInfo->SystemPage == _PAGE_AUTHORIZE)
  331. pSysInfo->SystemPage = _PAGE_SELECT_PAY;
  332. CheckReturnPress();
  333. break;
  334. case _Touch_IDLE:
  335. CheckIdlePress();
  336. break;
  337. case _Touch_StopCharge:
  338. CheckStopPress();
  339. is_stop = TRUE;
  340. break;
  341. case _Touch_Stop_Confirm:
  342. CheckStopConfirmPress();
  343. is_stop = FALSE;
  344. break;
  345. case _Touch_Stop_Cancel:
  346. CheckStopCancelPress();
  347. is_stop = FALSE;
  348. break;
  349. case _Touch_Select_Left:
  350. CheckConfirmGun(LEFT_GUN_NUM);
  351. break;
  352. case _Touch_Select_Right:
  353. CheckConfirmGun(RIGHT_GUN_NUM);
  354. break;
  355. case _Touch_DonateBill:
  356. StopSystemTimeoutDet();
  357. CheckDonateBill(pSysInfo->CurGunSelected);
  358. break;
  359. case _Touch_DonateYes:
  360. CheckDonateYes();
  361. break;
  362. case _Touch_DonateNo:
  363. StartSystemTimeoutDet(Timeout_AddLine);
  364. CheckDonateNo();
  365. break;
  366. case _Touch_Pay_CreditCard:
  367. CheckPayCreditCard();
  368. break;
  369. case _Touch_Pay_Icash:
  370. CheckPayIcash();
  371. break;
  372. case _Touch_Pay_LinePay:
  373. CheckPayLinePay();
  374. break;
  375. } // switch
  376. } //if (_btn_press >= 3)
  377. }
  378. void CheckLCMPressed()
  379. {
  380. int i;
  381. pid_t Pid = fork();
  382. if ( Pid == 0 ) {
  383. while (1) {
  384. if (pSysInfo->SystemPage != _PAGE_SELECT_GUN) {
  385. CheckTouchPress(_Touch_Show_Left);
  386. CheckTouchPress(_Touch_Show_Right);
  387. }
  388. switch (pSysInfo->SystemPage) {
  389. case _PAGE_IDLE:
  390. CheckTouchPress(_Touch_IDLE);
  391. break;
  392. case _PAGE_SELECT_GUN:
  393. CheckTouchPress(_Touch_Select_Left);
  394. CheckTouchPress(_Touch_Select_Right);
  395. break;
  396. case _PAGE_BILL:
  397. CheckTouchPress(_Touch_Return);
  398. CheckTouchPress(_Touch_DonateBill);
  399. break;
  400. case _PAGE_ADD_FRIEND:
  401. CheckTouchPress(_Touch_Return);
  402. CheckTouchPress(_Touch_DonateBill);
  403. break;
  404. case _PAGE_DONATE_LEFT:
  405. case _PAGE_DONATE_RIGHT:
  406. CheckTouchPress(_Touch_Return);
  407. CheckTouchPress(_Touch_DonateYes);
  408. CheckTouchPress(_Touch_DonateNo);
  409. break;
  410. case _PAGE_SELECT_PAY:
  411. CheckTouchPress(_Touch_Return);
  412. CheckTouchPress(_Touch_Pay_CreditCard);
  413. break;
  414. case _PAGE_PLUGIN:
  415. CheckTouchPress(_Touch_Return);
  416. break;
  417. ///*
  418. case _PAGE_CHARGING:
  419. CheckTouchPress(_Touch_StopCharge);
  420. break;
  421. case _PAGE_AUTHORIZE:
  422. CheckTouchPress(_Touch_Return);
  423. break;
  424. case _PAGE_STOP_CONFIRM_LEFT:
  425. case _PAGE_STOP_CONFIRM_RIGHT:
  426. StopSystemTimeoutDet();
  427. CheckTouchPress(_Touch_Stop_Confirm);
  428. CheckTouchPress(_Touch_Stop_Cancel);
  429. break;
  430. case _PAGE_EXIT:
  431. CheckTouchPress(_Touch_Return);
  432. break;
  433. case _PAGE_AUTHORIZE_FAIL:
  434. CheckTouchPress(_Touch_Return);
  435. break;
  436. } // switch
  437. usleep(5000);
  438. } //while
  439. } // if pid
  440. log_info("Create LCM fork:%d",Pid);
  441. }
  442. void ReadMsgFromLcm(uint8_t *msg, uint8_t readLen)
  443. {
  444. read(_port, msg, readLen);
  445. // 5a : CMD_TITLE_1
  446. // a5 : CMD_TITLE_2
  447. // 5
  448. // 81 : CMD_WRITE
  449. // 3 : CMD_REGISTER
  450. // 2 : Data length
  451. // 0 : High byte
  452. // 1 : Low byte
  453. // printf("-------------------------------------------- \n");
  454. // printf("msg = %x \n", *msg); // A5
  455. // printf("msg = %x \n", *(msg + 1)); // 5A
  456. // printf("msg = %x \n", *(msg + 2)); // Len : [3] ~ [6] + Data Len
  457. // printf("msg = %x \n", *(msg + 3)); // cmd : 0x83
  458. // printf("msg = %x \n", *(msg + 4)); // addr : H
  459. // printf("msg = %x \n", *(msg + 5)); // addr : L
  460. // printf("msg = %x \n", *(msg + 6)); // Data Len
  461. //
  462. // printf("msg = %x \n", *(msg + 7));
  463. // printf("msg = %x \n", *(msg + 8));
  464. // printf("msg = %x \n", *(msg + 9));
  465. // printf("msg = %x \n", *(msg + 10));
  466. // printf("msg = %x \n", *(msg + 11));
  467. // printf("msg = %x \n", *(msg + 12));
  468. // printf("msg = %x \n", *(msg + 13));
  469. // printf("msg = %x \n", *(msg + 14));
  470. /*
  471. for(uint8_t i = 0 ; i<readLen+3; i++) {
  472. log_info("Read data[%d]:0x%x",i,msg[i]);
  473. }*/
  474. if(*msg == CMD_TITLE_1 && *(msg + 1) == CMD_TITLE_2)
  475. {
  476. if(*(msg + 3) == CMD_WRITE)
  477. {
  478. switch (*(msg + 4))
  479. {
  480. case CMD_REGISTER:
  481. {
  482. // 頁面
  483. if(strcmp((char *)pSysInfo->LcmHwRev, "") != EQUAL)
  484. strcpy((char *)pSysInfo->LcmHwRev, moduleName);
  485. _currentPage = *(msg + 7);
  486. log_info("Current Page:%d",_currentPage);
  487. // if (_currentPage != 1 && _currentPage != 5 && _currentPage != 6 && _currentPage != 7 && _currentPage != 8)
  488. // printf("_currentPage = %d \n", _currentPage);
  489. }
  490. break;
  491. }
  492. }
  493. else if (*(msg + 3) == CMD_MULTI_READ)
  494. {
  495. short key = ((short)(*(msg + 4) << 8) + *(msg + 5));
  496. if(strcmp((char *)pSysInfo->LcmHwRev, "") != EQUAL)
  497. strcpy((char *)pSysInfo->LcmHwRev, moduleName);
  498. if (key == 0x0014)
  499. _currentPage = *(msg + 8);
  500. if ( key >= _Touch_IDLE && key <=_Touch_Pay_LinePay ) {
  501. _btn_press_id = key;
  502. _btn_press = *(msg + 8);
  503. }
  504. // switch ((unsigned short) (*(msg + 4) << 8) + (unsigned short) *(msg + 5))
  505. // {
  506. // case BUTTON_GUN_INDEX:
  507. // {
  508. // // 當前選的槍號
  509. // _curGunIndex = (*(msg + 8));
  510. // }
  511. // break;
  512. // }
  513. }
  514. }
  515. }
  516. void GetHrFormTimeString(char* time,char* hr)
  517. {
  518. //char tm[] = "2021-12-06 17:29:08:084";
  519. for(int i = 0 ; i < 2 ; i++) {
  520. hr[i] = time[i+11];
  521. }
  522. if( atoi(hr) == NULL ) {
  523. strcmp(hr,"");
  524. }
  525. }
  526. void GetMinFormTimeString(char* time,char* min)
  527. {
  528. //char tm[] = "2021-12-06 17:29:08:084";
  529. for(int i = 0 ; i < 2 ; i++) {
  530. min[i] = time[i+14];
  531. }
  532. if( atoi(min) == NULL || atoi(min) > 60) {
  533. strcmp(min,"");
  534. }
  535. }
  536. //================================================
  537. // Function
  538. //================================================
  539. void ChangeToOtherPage(short newPage)
  540. {
  541. uint8_t cmd[10];
  542. memset(cmd, 0x00, sizeof(cmd));
  543. uint8_t msg[9];
  544. memset(msg, 0x00, sizeof(msg));
  545. cmd[0] = CMD_TITLE_1;
  546. cmd[1] = CMD_TITLE_2;
  547. cmd[2] = 0x07;
  548. cmd[3] = 0x82;
  549. cmd[4] = 0x00;
  550. cmd[5] = 0x84;
  551. cmd[6] = 0x5A;
  552. cmd[7] = 0x01;
  553. cmd[8] = newPage >> 8;
  554. cmd[9] = newPage & 0x00FF;
  555. WriteCmdToLcm(cmd, ARRAY_SIZE(cmd));
  556. usleep(5000);
  557. ReadMsgFromLcm(msg, ARRAY_SIZE(msg));
  558. }
  559. void ChangeBackLight(bool islight)
  560. {
  561. uint8_t value = 0x01;
  562. uint8_t msg[9];
  563. memset(msg, 0x00, sizeof(msg));
  564. // 0x00 ~ 0x40
  565. if (islight)
  566. {
  567. value = 0x20;
  568. }
  569. uint8_t cmd[7];
  570. memset(cmd, 0x00, sizeof(cmd));
  571. cmd[0] = CMD_TITLE_1;
  572. cmd[1] = CMD_TITLE_2;
  573. cmd[2] = 0x03;
  574. cmd[3] = CMD_READ;
  575. cmd[4] = CMD_BACKLIGHT;
  576. cmd[5] = value;
  577. WriteCmdToLcm(cmd, ARRAY_SIZE(cmd));
  578. usleep(10000);
  579. ReadMsgFromLcm(msg, ARRAY_SIZE(msg));
  580. }
  581. void GetCurrentPage()
  582. {
  583. uint8_t cmd[7];
  584. memset(cmd, 0x00, sizeof(cmd));
  585. uint8_t msg[9];
  586. memset(msg, 0x00, sizeof(msg));
  587. cmd[0] = CMD_TITLE_1;
  588. cmd[1] = CMD_TITLE_2;
  589. cmd[2] = 0x04; // 底下總長度
  590. cmd[3] = 0x83;
  591. cmd[4] = 0x00;
  592. cmd[5] = 0x14;
  593. cmd[6] = 0x01;
  594. WriteCmdToLcm(cmd, ARRAY_SIZE(cmd));
  595. usleep(5000);
  596. ReadMsgFromLcm(msg, ARRAY_SIZE(msg));
  597. }
  598. void DisplayValueToLcm(short address, uint8_t *data, uint8_t len)
  599. {
  600. uint8_t cmd[256];
  601. memset(cmd, 0x00, sizeof(cmd));
  602. uint8_t msg[9];
  603. memset(msg, 0x00, sizeof(msg));
  604. cmd[0] = CMD_TITLE_1;
  605. cmd[1] = CMD_TITLE_2;
  606. cmd[2] = 0x03 + len;
  607. cmd[3] = CMD_MULTI_WRITE;
  608. cmd[4] = address >> 8;
  609. cmd[5] = address & 0x00FF;
  610. for(uint8_t count = 0; count < len; count++)
  611. {
  612. cmd[6 + count] = *(data + count);
  613. }
  614. WriteCmdToLcm(cmd, cmd[2] + 3);
  615. usleep(10000);
  616. ReadMsgFromLcm(msg, ARRAY_SIZE(msg));
  617. }
  618. void ChangeDisplay2Value(short address, short value)
  619. {
  620. uint8_t data[2];
  621. data[0] = value >> 8;
  622. data[1] = value & 0x00FF;
  623. //log_info("Addr:0x%x, value:%d",address,value);
  624. DisplayValueToLcm(address, data, sizeof(data));
  625. }
  626. //================================================
  627. // Warning process
  628. //================================================
  629. void string2ByteArray(uint8_t *input, uint8_t *output)
  630. {
  631. int loop;
  632. int i;
  633. loop = 0;
  634. i = 0;
  635. while (input[loop] != '\0') {
  636. output[i++] = input[loop++];
  637. }
  638. output[loop] = '\0';
  639. }
  640. void RefreshProgressAnimation()
  641. {
  642. _everyPageRollChange >= 30 ? _everyPageRollChange = 0 : _everyPageRollChange++;
  643. }
  644. //================================================
  645. // Change current page
  646. //================================================
  647. void ChangeCurPage()
  648. {
  649. //log_info("cur = %d ,system = %d, lcm = %d ",_currentPage, pSysInfo->SystemPage, pSysInfo->PageIndex);
  650. pSysInfo->PageIndex = pSysInfo->SystemPage;
  651. if (_currentPage != pSysInfo->PageIndex) {
  652. switch (pSysInfo->SystemPage) {
  653. case _PAGE_AUTHORIZE:
  654. break;
  655. case _PAGE_PLUGIN:
  656. break;
  657. case _PAGE_PRECHARGE:
  658. break;
  659. case _PAGE_CHARGING:
  660. is_stop = false;
  661. break;
  662. case _PAGE_COMPLETE:
  663. break;
  664. }
  665. _currentPage = pSysInfo->PageIndex;
  666. //log_info("Chagne Page:%d",pSysInfo->PageIndex);
  667. ChangeToOtherPage(pSysInfo->PageIndex);
  668. }
  669. }
  670. /*
  671. * View Page
  672. *
  673. */
  674. unsigned long GetTimeoutValue(struct timeval _sour_time)
  675. {
  676. struct timeval _end_time;
  677. gettimeofday(&_end_time, NULL);
  678. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  679. }
  680. void showGunWorkingType()
  681. {
  682. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM) {
  683. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(LEFT_GUN_NUM);
  684. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  685. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  686. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CCS1_On);
  687. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  688. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  689. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CCS2_On);
  690. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  691. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CHAdeMo_On);
  692. }
  693. // Set Right Gun
  694. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(RIGHT_GUN_NUM);
  695. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  696. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  697. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CCS1_Off);
  698. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  699. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  700. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CCS2_Off);
  701. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  702. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CHAdeMo_Off);
  703. }
  704. } else if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM){
  705. // Left Gun
  706. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(LEFT_GUN_NUM);
  707. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  708. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  709. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CCS1_Off);
  710. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  711. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  712. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CCS2_Off);
  713. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  714. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CHAdeMo_Off);
  715. }
  716. // Right Gun
  717. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(RIGHT_GUN_NUM);
  718. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  719. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  720. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CCS1_On);
  721. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  722. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  723. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CCS2_On);
  724. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  725. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CHAdeMo_On);
  726. }
  727. }
  728. }
  729. void ClearQrCode()
  730. {
  731. char cmd[200];
  732. memset(cmd,0,200);
  733. DisplayValueToLcm(_QRCode_AddLine, cmd, 200);
  734. }
  735. void ChangeQrCode_Idle(char *input)
  736. {
  737. char cmd[256];
  738. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  739. // https://nhoatcc.lineapid.tw/web/tologin?sn=ABC123&cid=2
  740. memset(cmd,0,256);
  741. int len = sprintf(cmd,"https://nhoatcc.lineapid.tw/web/tologin?sn=%s&cid=%d",input,ShmDcCommonData->ConnectorID[pSysInfo->CurGunSelected]);
  742. //log_info("QR Code:URL:%s",cmd);
  743. if (pSysInfo->SystemPage == _PAGE_BILL)
  744. DisplayValueToLcm(_QRCode_AddLine, cmd, len+1);
  745. }
  746. /*
  747. void ChangeRemainTime(int sec)
  748. {
  749. int h, m, s;
  750. uint8_t cmd[10];
  751. uint8_t value[10];
  752. memset(cmd, 0x00, sizeof(cmd));
  753. // srand(time(NULL));
  754. // int min = 0;
  755. // int max = 65536;
  756. // sec = rand() % (max - min + 1) + min;
  757. h = (sec / 3600);
  758. m = (sec - (3600 * h)) / 60;
  759. s = (sec - (3600 * h) - (m * 60));
  760. sprintf((char *)value, "%02d:%02d:%02d", h, m, s);
  761. string2ByteArray(value, cmd);
  762. DisplayValueToLcm(_Text_Time, cmd, sizeof(cmd));
  763. }
  764. */
  765. void ShowSelectGun()
  766. {
  767. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(LEFT_GUN_NUM);
  768. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  769. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  770. ChangeDisplay2Value(_Icon_Select_Left,_TCC_SelectLeft_CCS1);
  771. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  772. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  773. ChangeDisplay2Value(_Icon_Select_Left,_TCC_SelectLeft_CCS2);
  774. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  775. ChangeDisplay2Value(_Icon_Select_Left,_TCC_SelectLeft_CHAdeMo);
  776. }
  777. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(RIGHT_GUN_NUM);
  778. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  779. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  780. ChangeDisplay2Value(_Icon_Select_Right,_TCC_SelectRight_CCS1);
  781. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  782. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  783. ChangeDisplay2Value(_Icon_Select_Right,_TCC_SelectRight_CCS2);
  784. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  785. ChangeDisplay2Value(_Icon_Select_Right,_TCC_SelectRight_CHAdeMo);
  786. }
  787. }
  788. void ChangeChargingPowerValue(float pow)
  789. {
  790. uint8_t cmd[10];
  791. uint8_t value[10];
  792. memset(cmd, 0x00, sizeof(cmd));
  793. sprintf((char *) value, "%d",(int)pow);
  794. string2ByteArray(value, cmd);
  795. DisplayValueToLcm(_String_ChargePower, cmd, sizeof(cmd));
  796. }
  797. void ChangeChargingFeeValue(float fee)
  798. {
  799. uint8_t cmd[10];
  800. uint8_t value[10];
  801. memset(cmd, 0x00, sizeof(cmd));
  802. sprintf((char *) value, "%d", (int)fee);
  803. string2ByteArray(value, cmd);
  804. DisplayValueToLcm(_String_Money, cmd, sizeof(cmd));
  805. }
  806. void ChangeCarBonValue(float data)
  807. {
  808. uint8_t cmd[10];
  809. uint8_t value[10];
  810. float _carbon = 0;
  811. memset(cmd, 0x00, sizeof(cmd));
  812. _carbon = (data*9)/10*2.36 - data*0.637;
  813. //log_info("Carbon:%d",(int)_carbon);
  814. if (_carbon < 10)
  815. sprintf((char *) value, "%.1f", _carbon);
  816. else
  817. sprintf((char *) value, "%d", (int)_carbon);
  818. string2ByteArray(value, cmd);
  819. DisplayValueToLcm(_String_Carbon, cmd, sizeof(cmd));
  820. }
  821. void ChangeChargingEnergyValue(float energy)
  822. {
  823. uint8_t cmd[10];
  824. uint8_t value[10];
  825. memset(cmd, 0x00, sizeof(cmd));
  826. if (energy >= 0.05) {
  827. energy -= 0.05;
  828. }
  829. if (energy < 0 )
  830. ChangeDisplay2Value(_Icon_ChargeBar,_TCC_Charging_Bar0);
  831. else if (energy > 100)
  832. ChangeDisplay2Value(_Icon_ChargeBar,_TCC_Charging_Bar0+100);
  833. else
  834. ChangeDisplay2Value(_Icon_ChargeBar,(int)energy+_TCC_Charging_Bar0);
  835. sprintf((char *) value, "%.1f", energy);
  836. string2ByteArray(value, cmd);
  837. DisplayValueToLcm(_Strting_Energy, cmd, sizeof(cmd));
  838. }
  839. uint8_t _battery_display_count = 0;
  840. void ChangeBattMapAndValue(int soc)
  841. {
  842. int i = (soc*36)/100;
  843. uint8_t cmd[5];
  844. uint8_t value[5];
  845. _battery_display_count++;
  846. if (_battery_display_count == 3 ) {
  847. if (_battery_display_ani == 0)
  848. _battery_display_ani= TRUE;
  849. else
  850. _battery_display_ani= FALSE ;
  851. _battery_display_count = 0;
  852. }
  853. if (pSysInfo->SystemPage == _PAGE_CHARGING) {
  854. if (i>=36)
  855. ChangeDisplay2Value(_Icon_ChargeCircle,_TCC_Charging_Circle0+36);
  856. else {
  857. if (_battery_display_ani) {
  858. ChangeDisplay2Value(_Icon_ChargeCircle, _TCC_Charging_Circle0+i);
  859. } else {
  860. ChangeDisplay2Value(_Icon_ChargeCircle, _TCC_Charging_Circle0+i+1);
  861. }
  862. }
  863. } else if (pSysInfo->SystemPage == _PAGE_COMPLETE)
  864. ChangeDisplay2Value(_Icon_CompleteCircle, _TCC_CompleteCircle0+i);
  865. else
  866. ChangeDisplay2Value(_Icon_CompleteCircle, _TCC_CompleteCircle0+i);
  867. memset(cmd, 0x00, sizeof(cmd));
  868. memset(value, 0x00, sizeof(value));
  869. sprintf((char *)value, "%d", soc);
  870. string2ByteArray(value, cmd);
  871. DisplayValueToLcm(_String_Battery, cmd, sizeof(cmd));
  872. }
  873. unsigned long GetPreChargeTimeoutValue(struct timeval _sour_time)
  874. {
  875. struct timeval _end_time;
  876. gettimeofday(&_end_time, NULL);
  877. return 1000000 * (_end_time.tv_sec - _sour_time.tv_sec) + _end_time.tv_usec - _sour_time.tv_usec;
  878. }
  879. void ChangeTimeValue(int time)
  880. {
  881. uint8_t cmd[6];
  882. uint8_t value[6];
  883. memset(cmd, 0x00, sizeof(cmd));
  884. sprintf((char *) value, "%d", time);
  885. string2ByteArray(value, cmd);
  886. DisplayValueToLcm(_String_ChargeTime, cmd, sizeof(cmd));
  887. }
  888. void changeWeatherValue(int _weather)
  889. {
  890. switch (_weather) {
  891. case _WEATHER_TYPE_SUN:
  892. ChangeDisplay2Value(_Icon_Weather,_TCC_Sun);
  893. break;
  894. case _WEATHER_TYPE_CLOUDY:
  895. ChangeDisplay2Value(_Icon_Weather,_TCC_Cloudy);
  896. break;
  897. case _WEATHER_TYPE_RAIN:
  898. ChangeDisplay2Value(_Icon_Weather,_TCC_Rain);
  899. break;
  900. case _WEATHER_TYPE_THUNDER:
  901. ChangeDisplay2Value(_Icon_Weather,_TCC_Thunder);
  902. break;
  903. case _WEATHER_TYPE_SNOW:
  904. ChangeDisplay2Value(_Icon_Weather,_TCC_Snow);
  905. break;
  906. case _WEATHER_TYPE_FOG:
  907. ChangeDisplay2Value(_Icon_Weather,_TCC_Fog);
  908. break;
  909. }
  910. }
  911. void changeWeekValue(int _week)
  912. {
  913. time_t t = time(NULL);
  914. struct tm *now = localtime(&t);
  915. _week = now->tm_wday;
  916. if (_week == 0 )
  917. _week = 7;
  918. ChangeDisplay2Value(_Icon_Week,_week);
  919. }
  920. void changeDegreeValue(int _degree)
  921. {
  922. char value[16];
  923. memset(value, 0x00, sizeof(value));
  924. sprintf((char *)value,"%d",_degree);
  925. DisplayValueToLcm(_String_Tempture, (uint8_t *)value, sizeof(value));
  926. }
  927. void changeDateValue(char* _date)
  928. {
  929. char value[16];
  930. memset(value, 0x00, sizeof(value));
  931. sprintf((char *)value,"%s",_date);
  932. DisplayValueToLcm(_String_Date, (uint8_t *)value, sizeof(value));
  933. }
  934. void changeLocationValue(int _location)
  935. {
  936. //_location+=1000;
  937. //log_info("location:%d",_location);
  938. ChangeDisplay2Value(_Icon_Location,(short)_location);
  939. }
  940. int old_money = 0;
  941. int ClearQR_flag[2];
  942. void ProcessPageInfo()
  943. {
  944. // Show Gun Working and Type
  945. if (pSysInfo->SystemPage == _PAGE_IDLE) {
  946. changeWeatherValue(ShmDcCommonData->WeatherID);
  947. changeWeekValue(0);
  948. changeDegreeValue((int)ShmDcCommonData->Temperature);
  949. changeDateValue(&ShmDcCommonData->PresentTime[0]);
  950. changeLocationValue(ShmDcCommonData->Location);
  951. return;
  952. }
  953. if (pSysInfo->SystemPage == _PAGE_MAINTAIN) {
  954. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(LEFT_GUN_NUM);
  955. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  956. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  957. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CCS1_Off);
  958. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  959. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  960. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CCS2_Off);
  961. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  962. ChangeDisplay2Value(_Icon_ShowLeft,_TCC_ShowLeft_CHAdeMo_Off);
  963. }
  964. // Set Right Gun
  965. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(RIGHT_GUN_NUM);
  966. if (pDcChargingInfo->CCSGunType == _TYPE_CCS1_Liquid ||
  967. pDcChargingInfo->CCSGunType == _TYPE_CCS1_Natural) {
  968. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CCS1_Off);
  969. } else if (pDcChargingInfo->CCSGunType == _TYPE_CCS2_Liquid ||
  970. pDcChargingInfo->CCSGunType == _TYPE_CCS2_Natural) {
  971. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CCS2_Off);
  972. } else if (pDcChargingInfo->Type == _Type_Chademo) {
  973. ChangeDisplay2Value(_Icon_ShowRight,_TCC_ShowRight_CHAdeMo_Off);
  974. }
  975. return;
  976. }
  977. showGunWorkingType();
  978. for (uint8_t i = 0; i < pSysConfig->TotalConnectorCount; i++) {
  979. if (pSysInfo->CurGunSelected == i) {
  980. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  981. switch (pSysInfo->SystemPage) {
  982. case _PAGE_IDLE:
  983. break;
  984. case _PAGE_SELECT_PAY:
  985. if (ShmDcCommonData->donate_flag[i] == TRUE) {
  986. ChangeDisplay2Value(_Icon_WordAddFriend,_ICON_Empty);
  987. } else
  988. ChangeDisplay2Value(_Icon_WordAddFriend,_TCC_SelectPayMode);
  989. StartSystemTimeoutDet(Timeout_SelectPayMode);
  990. break;
  991. case _PAGE_SELECT_GUN:
  992. ShowSelectGun();
  993. ClearQR_flag[i] = FALSE;
  994. break;
  995. case _PAGE_BILL:
  996. if(ClearQR_flag[i] == FALSE) {
  997. ClearQrCode();
  998. ClearQR_flag[i] = TRUE;
  999. }
  1000. ChangeQrCode_Idle((char *)pSysConfig->SystemId);
  1001. break;
  1002. case _PAGE_AUTHORIZE:
  1003. /*
  1004. int card_result = CreditCardPreAuth(CardReadFd, PREAUTHMONEY,"TCC Test", &ShmDcCommonData->pCreditCard[pSysInfo->CurGunSelected]);
  1005. if (card_result > 0 ) {
  1006. strcpy((char *)pSysConfig->UserId, (char *)ShmDcCommonData->pCreditCard[pSysInfo->CurGunSelected].CardNo);
  1007. } else if (card_result < 0) {
  1008. pSysInfo->SystemPage = _PAGE_AUTHORIZE_FAIL;
  1009. }*/
  1010. //ChangeDisplay2Value(_Icon_Precharge,0);
  1011. //ChangeDisplay2Value(_Icon_Precharge,1);
  1012. _Text_Running_Count = 1;
  1013. break;
  1014. case _PAGE_PLUGIN:
  1015. _everyPageRollChange = 0;
  1016. break;
  1017. case _PAGE_PRECHARGE:
  1018. //ChangeDisplay2Value(_Icon_Precharge,1);
  1019. RefreshProgressAnimation();
  1020. if (_everyPageRollChange == 0) {
  1021. ChangeDisplay2Value(_Icon_Precharge,_Text_Running_Count);
  1022. _Text_Running_Count >= 24 ? _Text_Running_Count = 24 : _Text_Running_Count++;
  1023. }
  1024. break;
  1025. case _PAGE_CHARGING:
  1026. if (pDcChargingInfo->PresentChargingPower >= 0 &&
  1027. pDcChargingInfo->PresentChargingPower <= POWER_MAX_KW) {
  1028. ChangeChargingPowerValue(pDcChargingInfo->PresentChargingPower);
  1029. } else {
  1030. ChangeChargingPowerValue(0);
  1031. }
  1032. if (pDcChargingInfo->PresentChargedEnergy >= 0.1 &&
  1033. pDcChargingInfo->PresentChargedEnergy <= ENERGY_MAX_KWH) {
  1034. ChangeChargingEnergyValue(pDcChargingInfo->PresentChargedEnergy);
  1035. } else {
  1036. ChangeChargingEnergyValue(0);
  1037. }
  1038. if ( pDcChargingInfo->ChargingFee >= 0) {
  1039. ChangeChargingFeeValue(pDcChargingInfo->ChargingFee);
  1040. }
  1041. if (pDcChargingInfo->RemainChargingDuration >= 0 &&
  1042. pDcChargingInfo->RemainChargingDuration <= TIME_MAX_SEC) {
  1043. ChangeTimeValue(pDcChargingInfo->RemainChargingDuration/60);
  1044. } else {
  1045. ChangeTimeValue(0);
  1046. }
  1047. ChangeBattMapAndValue(pDcChargingInfo->EvBatterySoc);
  1048. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  1049. break;
  1050. case _PAGE_COMPLETE:
  1051. case _PAGE_PAYFAIL:
  1052. if (pDcChargingInfo->PresentChargedEnergy >= 0.1 &&
  1053. pDcChargingInfo->PresentChargedEnergy <= ENERGY_MAX_KWH) {
  1054. ChangeChargingEnergyValue(pDcChargingInfo->PresentChargedEnergy);
  1055. } else {
  1056. ChangeChargingEnergyValue(0);
  1057. }
  1058. if ( ShmDcCommonData->finalcost[i] >= 0 && ShmDcCommonData->finalcost_flag[i] == TRUE) {
  1059. StopGunInfoTimeoutDet(i);
  1060. ChangeChargingFeeValue(ShmDcCommonData->finalcost[i]);
  1061. //ShmDcCommonData->finalcost_flag[i] = FALSE;
  1062. }
  1063. ChangeCarBonValue(pDcChargingInfo->PresentChargedEnergy);
  1064. ChangeBattMapAndValue(pDcChargingInfo->EvBatterySoc);
  1065. //StartSystemTimeoutDet(Timeout_ReturnViewPage);
  1066. break;
  1067. case _PAGE_PLUGOUT:
  1068. /*
  1069. if (pSysConfig->isQRCode) {
  1070. if (pSysConfig->QRCodeMadeMode == NO) {
  1071. //uint8_t len = strlen((char *)pSysConfig->SystemId);
  1072. ChangeQrCode_Idle((char *)pSysConfig->SystemId);
  1073. } else {
  1074. //uint8_t len = strlen((char *)pSysConfig->QRCodeContent);
  1075. ChangeQrCode_Idle((char *)pSysConfig->QRCodeContent);
  1076. }
  1077. //ChangeQrCode_Idle((char *)pSysConfig->SystemId);
  1078. }*/
  1079. break;
  1080. case _PAGE_PAYING:
  1081. break;
  1082. }
  1083. }
  1084. }
  1085. }
  1086. void ChangeWarningFunc()
  1087. {
  1088. uint8_t cmd[7] = {0};
  1089. uint8_t i = 0;
  1090. //uint8_t j = 0;
  1091. //log_info("ChangeWarningFunc ");
  1092. // 最多一次五筆
  1093. //log_info("LCM PageIndex = %d ", pSysWarning->PageIndex);
  1094. //log_info("WarningCount = %d ", pSysWarning->WarningCount);
  1095. //#if !defined DD360 && !defined DD360Audi && !defined DD360ComBox
  1096. for (i = 0; (i + pSysWarning->PageIndex * 5) < pSysWarning->WarningCount; i++) {
  1097. log_info("Warming Code[%d]:%s",i,&pSysWarning->WarningCode[i][0]);
  1098. memset(cmd, 0x00, sizeof(cmd));
  1099. if ((i) >= 5) {
  1100. break;
  1101. }
  1102. //error code
  1103. string2ByteArray(&pSysWarning->WarningCode[i + pSysWarning->PageIndex * 5][0], cmd);
  1104. DisplayValueToLcm(_Strting_Warming0 + ((i) * 0x10), cmd, sizeof(cmd));
  1105. //警告標示
  1106. memset(cmd, 0x00, sizeof(cmd));
  1107. cmd[0] = 0x00;
  1108. cmd[1] = 1;
  1109. DisplayValueToLcm(_Icon_Warming0 + ((i) * 2), cmd, 2);
  1110. }
  1111. memset(cmd, 0x00, sizeof(cmd));
  1112. for (; i < 5; i++) {
  1113. DisplayValueToLcm(_Strting_Warming0 + ((i) * 0x10), cmd, sizeof(cmd));
  1114. DisplayValueToLcm(_Icon_Warming0 + ((i) * 2), cmd, 2);
  1115. }
  1116. }
  1117. void ShowCabientVersionDefaultText()
  1118. {
  1119. char value[16];
  1120. memset(value, 0x00, sizeof(value));
  1121. sprintf((char *)value,"%s","Cabient:");
  1122. DisplayValueToLcm(_Version_Cabient_Name_Text, (uint8_t *)value, sizeof(value));
  1123. sprintf((char *)value,"%s","BootLoader:");
  1124. DisplayValueToLcm(_Version_Cabient_BootLoader_Text, (uint8_t *)value, sizeof(value));
  1125. sprintf((char *)value,"%s","Kernel Fw:");
  1126. DisplayValueToLcm(_Version_Cabient_Kernel_Text, (uint8_t *)value, sizeof(value));
  1127. sprintf((char *)value,"%s","CSU Fw:");
  1128. DisplayValueToLcm(_Version_Cabient_CSU_Text, (uint8_t *)value, sizeof(value));
  1129. sprintf((char *)value,"%s","Priamry Fw:");
  1130. DisplayValueToLcm(_Version_Cabient_Priamry_Text, (uint8_t *)value, sizeof(value));
  1131. sprintf((char *)value,"%s","Relay(0) Fw:");
  1132. DisplayValueToLcm(_Version_Cabient_Relay0_Text, (uint8_t *)value, sizeof(value));
  1133. sprintf((char *)value,"%s","Relay(1) Fw:");
  1134. DisplayValueToLcm(_Version_Cabient_Relay1_Text, (uint8_t *)value, sizeof(value));
  1135. sprintf((char *)value,"%s","Fan Fw:");
  1136. DisplayValueToLcm(_Version_Cabient_Fan_Text, (uint8_t *)value, sizeof(value));
  1137. sprintf((char *)value,"%s","IP Addr:");
  1138. DisplayValueToLcm(_Version_Cabient_IPAddr_Text, (uint8_t *)value, sizeof(value));
  1139. if (ShmDcCommonData->PSU_Number > 0 && ShmDcCommonData->PSU_Number <= 12) {
  1140. sprintf((char *)value,"%s","Primary");
  1141. DisplayValueToLcm(_Version_Cabient_Primary_Text, (uint8_t *)value, sizeof(value));
  1142. sprintf((char *)value,"%s","Secondary");
  1143. DisplayValueToLcm(_Version_Cabient_Secondary_Text, (uint8_t *)value, sizeof(value));
  1144. for(uint8_t i = 0 ; i < ShmDcCommonData->PSU_Number ; i++) {
  1145. sprintf((char *)value,"PSU(%d):",i+1);
  1146. DisplayValueToLcm(_Version_Cabient_PSU1_Text+i*0x10, (uint8_t *)value, sizeof(value));
  1147. }
  1148. }
  1149. }
  1150. void ShowDispenserVersionDefautlText()
  1151. {
  1152. char value[16];
  1153. memset(value, 0x00, sizeof(value));
  1154. sprintf((char *)value,"%s","Dispenser:");
  1155. DisplayValueToLcm(_Version_Dispenser_Name_Text, (uint8_t *)value, sizeof(value));
  1156. sprintf((char *)value,"%s","BootLoader:");
  1157. DisplayValueToLcm(_Version_Dispenser_BootLoader_Text, (uint8_t *)value, sizeof(value));
  1158. sprintf((char *)value,"%s","Kernel Fw:");
  1159. DisplayValueToLcm(_Version_Dispenser_Kernel_Text, (uint8_t *)value, sizeof(value));
  1160. sprintf((char *)value,"%s","CSU Fw:");
  1161. DisplayValueToLcm(_Version_Dispenser_CSU_Text, (uint8_t *)value, sizeof(value));
  1162. sprintf((char *)value,"%s","Relay Fw:");
  1163. DisplayValueToLcm(_Version_Dispenser_Relay_Text, (uint8_t *)value, sizeof(value));
  1164. sprintf((char *)value,"%s","Fan Fw:");
  1165. DisplayValueToLcm(_Version_Dispenser_Fan_Text, (uint8_t *)value, sizeof(value));
  1166. sprintf((char *)value,"%s","Prim Fw:");
  1167. DisplayValueToLcm(_Version_Dispenser_Priamry_Text, (uint8_t *)value, sizeof(value));
  1168. sprintf((char *)value,"%s","LCM Hw:");
  1169. DisplayValueToLcm(_Version_Dispenser_LCM_Text, (uint8_t *)value, sizeof(value));
  1170. sprintf((char *)value,"%s","LED Fw:");
  1171. DisplayValueToLcm(_Version_Dispenser_LED_Text, (uint8_t *)value, sizeof(value));
  1172. sprintf((char *)value,"%s","Connector(0):");
  1173. DisplayValueToLcm(_Version_Dispenser_Connector0_Text, (uint8_t *)value, sizeof(value));
  1174. sprintf((char *)value,"%s","Connector(1):");
  1175. DisplayValueToLcm(_Version_Dispenser_Connector1_Text, (uint8_t *)value, sizeof(value));
  1176. sprintf((char *)value,"%s","IP Addr:");
  1177. DisplayValueToLcm(_Version_Dispenser_IPAddr_Text, (uint8_t *)value, sizeof(value));
  1178. }
  1179. void ShowCabientVersion()
  1180. {
  1181. char value[16];
  1182. memset(value, 0x00, sizeof(value));
  1183. sprintf((char *)value,"%s",ShmDcCommonData->CabinetModelName);
  1184. DisplayValueToLcm(_Version_Cabient_Model_value, (uint8_t *)value, sizeof(value));
  1185. sprintf((char *)value,"%s",ShmDcCommonData->CabinetBoolLoaderVersion);
  1186. DisplayValueToLcm(_Version_Cabient_BootLoader_value, (uint8_t *)value, sizeof(value));
  1187. sprintf((char *)value,"%s",ShmDcCommonData->CabinetKernelVersion);
  1188. DisplayValueToLcm(_Version_Cabient_Kernel_value, (uint8_t *)value, sizeof(value));
  1189. sprintf((char *)value,"%s",ShmDcCommonData->CabinetRFSystemVersion);
  1190. DisplayValueToLcm(_Version_Cabient_CSU_value, (uint8_t *)value, sizeof(value));
  1191. sprintf((char *)value,"%s",ShmDcCommonData->CabinetPrimaryVersion);
  1192. DisplayValueToLcm(_Version_Cabient_Priamry_value, (uint8_t *)value, sizeof(value));
  1193. sprintf((char *)value,"%s",ShmDcCommonData->CabinetRelay0Version);
  1194. DisplayValueToLcm(_Version_Cabient_Relay0_value, (uint8_t *)value, sizeof(value));
  1195. sprintf((char *)value,"%s",ShmDcCommonData->CabinetRelay1Version);
  1196. DisplayValueToLcm(_Version_Cabient_Relay1_value, (uint8_t *)value, sizeof(value));
  1197. sprintf((char *)value,"%s",ShmDcCommonData->CabinetFanVersion);
  1198. DisplayValueToLcm(_Version_Cabient_Fan_value, (uint8_t *)value, sizeof(value));
  1199. sprintf((char *)value,"%s",ShmDcCommonData->CabinetIPAddr);
  1200. DisplayValueToLcm(_Version_Cabient_IPAddr_value, (uint8_t *)value, sizeof(value));
  1201. if (ShmDcCommonData->PSU_Number > 0 && ShmDcCommonData->PSU_Number < 12) {
  1202. for(uint8_t i = 0 ; i < ShmDcCommonData->PSU_Number ; i++) {
  1203. if (i>=6) {
  1204. sprintf((char *)value,"%s",ShmDcCommonData->PsuVer[(i-6)].DCVersion);
  1205. DisplayValueToLcm(_Version_Cabient_PSU_Prim7_value+(i-6)*0x10, (uint8_t *)value, sizeof(value));
  1206. sprintf((char *)value,"%s",ShmDcCommonData->PsuVer[(i-6)].FPCVersion);
  1207. DisplayValueToLcm(_Version_Cabient_PSU_Sec7_value+(i-6)*0x10, (uint8_t *)value, sizeof(value));
  1208. continue;
  1209. }
  1210. sprintf((char *)value,"%s",ShmDcCommonData->PsuVer[i].DCVersion);
  1211. DisplayValueToLcm(_Version_Cabient_PSU_Prim1_value+i*0x10, (uint8_t *)value, sizeof(value));
  1212. sprintf((char *)value,"%s",ShmDcCommonData->PsuVer[i].FPCVersion);
  1213. DisplayValueToLcm(_Version_Cabient_PSU_Sec1_value+i*0x10, (uint8_t *)value, sizeof(value));
  1214. }
  1215. }
  1216. }
  1217. void ShowDispenserVersion()
  1218. {
  1219. char value[32];
  1220. memset(value, 0x00, sizeof(value));
  1221. sprintf((char *)value,"%s",pSysConfig->ModelName);
  1222. DisplayValueToLcm(_Version_Dispenser_Model_value, (uint8_t *)value, sizeof(value));
  1223. sprintf((char *)value,"%s",pSysInfo->CsuBootLoadFwRev);
  1224. DisplayValueToLcm(_Version_Dispenser_BootLoader_value, (uint8_t *)value, sizeof(value));
  1225. sprintf((char *)value,"%s",pSysInfo->CsuKernelFwRev);
  1226. DisplayValueToLcm(_Version_Dispenser_Kernel_value, (uint8_t *)value, sizeof(value));
  1227. sprintf((char *)value,"%s",pSysInfo->CsuRootFsFwRev);
  1228. DisplayValueToLcm(_Version_Dispenser_CSU_value, (uint8_t *)value, sizeof(value));
  1229. sprintf((char *)value,"%s",pSysInfo->RelayModuleFwRev);
  1230. DisplayValueToLcm(_Version_Dispenser_Relay_value, (uint8_t *)value, sizeof(value));
  1231. sprintf((char *)value,"%s",pSysInfo->FanModuleFwRev);
  1232. DisplayValueToLcm(_Version_Dispenser_Fan_value, (uint8_t *)value, sizeof(value));
  1233. sprintf((char *)value,"%s",pSysInfo->CsuPrimFwRev);
  1234. DisplayValueToLcm(_Version_Dispenser_Priamry_value, (uint8_t *)value, sizeof(value));
  1235. sprintf((char *)value,"%s",pSysInfo->LcmHwRev);
  1236. DisplayValueToLcm(_Version_Dispenser_LCM_value, (uint8_t *)value, sizeof(value));
  1237. sprintf((char *)value,"%s",pSysInfo->LedModuleFwRev);
  1238. DisplayValueToLcm(_Version_Dispenser_LED_value, (uint8_t *)value, sizeof(value));
  1239. sprintf((char *)value,"%s",pSysInfo->Connector1FwRev);
  1240. DisplayValueToLcm(_Version_Dispenser_Connector0_value, (uint8_t *)value, sizeof(value));
  1241. sprintf((char *)value,"%s",pSysInfo->Connector2FwRev);
  1242. DisplayValueToLcm(_Version_Dispenser_Connector1_value, (uint8_t *)value, sizeof(value));
  1243. sprintf((char *)value,"%s",pSysConfig->Eth0Interface.EthIpAddress);
  1244. DisplayValueToLcm(_Version_Dispenser_IPAddr_value, (uint8_t *)value, sizeof(value));
  1245. }
  1246. /*
  1247. void InformationShow()
  1248. {
  1249. is_show = true;
  1250. if (_showInformIndex == 0 ) {
  1251. pSysInfo->PageIndex = __SHOW_CABIENT_VERSION;
  1252. } else {
  1253. pSysInfo->PageIndex = __SHOW_DISPENSER_VERASION;
  1254. ShowDispenserVersion();
  1255. }
  1256. }
  1257. */
  1258. void DefautLayOut()
  1259. {
  1260. int i;
  1261. for (i = 0 ; i <= 0x5C ; i+=2 ) {
  1262. ChangeDisplay2Value(0x1000+i,1);
  1263. if (i==0x28 || i ==0x2A)
  1264. continue;
  1265. }
  1266. ChangeDisplay2Value(_Icon_MobilePay,0);
  1267. ChangeDisplay2Value(_Icon_CardPay,0);
  1268. ChangeDisplay2Value(0x5000,1);
  1269. ShowSelectGun();
  1270. }
  1271. /*
  1272. static int InitialRfidPort(void)
  1273. {
  1274. int fd = open(rfidPortName, O_RDWR);
  1275. struct termios tios;
  1276. struct AlarmCodeData *pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  1277. if (fd != FAIL) {
  1278. ioctl (fd, TCGETS, &tios);
  1279. tios.c_cflag = B115200 | CS8 | CLOCAL | CREAD;
  1280. tios.c_lflag = 0;
  1281. tios.c_iflag = 0;
  1282. tios.c_oflag = 0;
  1283. tios.c_cc[VMIN] = 0;
  1284. tios.c_cc[VTIME] = (uint8_t) 1;
  1285. tios.c_lflag = 0;
  1286. tcflush(fd, TCIFLUSH);
  1287. ioctl(fd, TCSETS, &tios);
  1288. }
  1289. if (fd < 0) {
  1290. pAlarmCode->AlarmEvents.bits.RfidModuleCommFail = 1;
  1291. }
  1292. return fd;
  1293. }
  1294. */
  1295. int main(void)
  1296. {
  1297. bool defaulttext = false;
  1298. if (CreateAllCsuShareMemory() == FAIL) {
  1299. log_error("create share memory error");
  1300. return FAIL;
  1301. }
  1302. MappingGunChargingInfo("LCM Control Task");
  1303. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  1304. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  1305. pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  1306. ShmFanModuleData = (struct FanModuleData *)GetShmFanModuleData();;
  1307. ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  1308. ShmSelectGunInfo = (SelectGunInfo *)GetShmSelectGunInfo();
  1309. ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  1310. ShmOCPP16Data = (struct OCPP16Data *)GetShmOCPP16Data();
  1311. struct StatusCodeData *ShmStatusCodeData = (struct StatusCodeData *)GetShmStatusCodeData();;
  1312. _port = CreateCommunicationLcmPort();
  1313. uint8_t changeWarningPriority = 0;
  1314. uint8_t curWarningCount = 255;
  1315. ChangeBackLight(true);
  1316. _totalCount = pSysConfig->TotalConnectorCount;
  1317. _everyPageRollChange = 0;
  1318. //Initialization();
  1319. //printf("_LCM_COMPLETE ");
  1320. //ChangeToOtherPage(_LCM_COMPLETE);
  1321. DefautLayOut();
  1322. //return 0;
  1323. //uint8_t index = 1;
  1324. int result = 0;
  1325. ShmDcCommonData->PSU_Number = 12;
  1326. /*
  1327. CardReadFd = InitialRfidPort();
  1328. if (CardReadFd <0) {
  1329. log_info("Card Read Port open fail!");
  1330. }*/
  1331. CheckLCMPressed();
  1332. while (_port != -1) {
  1333. if (strcmp((char *)pSysInfo->LcmHwRev, moduleName) != 0x00) {
  1334. GetCurrentPage();
  1335. sleep(1);
  1336. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.LcmModuleCommFail = true;
  1337. } else {
  1338. UpdateLcmFunction(ShmDcCommonData,_port);
  1339. ///*
  1340. // Warning 處理
  1341. if (curWarningCount != pSysWarning->WarningCount) {
  1342. changeWarningPriority = 0;
  1343. pSysWarning->PageIndex = 0;
  1344. curWarningCount = pSysWarning->WarningCount;
  1345. ChangeWarningFunc();
  1346. } else if (pSysWarning->WarningCount > 5 && changeWarningPriority == 0) {
  1347. // 當有兩頁 Warning 則每隔三秒改變一次
  1348. if (pSysWarning->PageIndex == 0) {
  1349. pSysWarning->PageIndex = 1;
  1350. } else {
  1351. pSysWarning->PageIndex = 0;
  1352. }
  1353. ChangeWarningFunc();
  1354. }
  1355. ///*
  1356. // Show Default Text
  1357. if (!defaulttext) {
  1358. ShowCabientVersionDefaultText();
  1359. ShowDispenserVersionDefautlText();
  1360. defaulttext = true;
  1361. }
  1362. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.LcmModuleCommFail = false;
  1363. // 頁面資訊處理
  1364. ProcessPageInfo();
  1365. // 換頁處理
  1366. //GetCurrentPage(); //DS60-120 add
  1367. /*
  1368. if (pSysConfig->ShowInformation == YES && pSysInfo->SystemPage == _PAGE_AUTHORIZE) {
  1369. InformationShow();
  1370. ChangeToOtherPage(pSysInfo->PageIndex);
  1371. usleep(100000);
  1372. continue;
  1373. } else {
  1374. if (is_show)
  1375. _showInformIndex >= 1 ? _showInformIndex = 0 : _showInformIndex++;
  1376. is_show = false;
  1377. }*/
  1378. GetCurrentPage(); //DS60-120 add
  1379. ChangeCurPage();
  1380. changeWarningPriority >= 30 ? changeWarningPriority = 0 : changeWarningPriority++;
  1381. usleep(10000); //*/
  1382. /*
  1383. ProcessPageInfo();
  1384. GetCurrentPage();
  1385. ChangeCurPage();
  1386. usleep(10000);
  1387. //*/
  1388. }
  1389. } //while
  1390. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.LcmModuleCommFail = true;
  1391. log_info("Close LCM Uart Port");
  1392. CloseCommunicationLcmPort();
  1393. return FAIL;
  1394. }