Primary.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. #include <stdio.h> /*標準輸入輸出定義*/
  2. #include <stdlib.h> /*標準函數庫定義*/
  3. #include <string.h>
  4. #include <stdint.h>
  5. #include "../Config.h"
  6. #include "../Log/log.h"
  7. #include "../Define/define.h"
  8. #include "../ShareMemory/shmMem.h"
  9. #include "../SelectGun/SelectGun.h"
  10. #include "main.h"
  11. #include "../timeout.h"
  12. struct SysInfoData *pSysInfo = NULL;
  13. struct ChargingInfoData *pDcChargingInfo = NULL;
  14. struct SysConfigData *pSysConfig = NULL;
  15. //------------------------------------------------------------------------------
  16. typedef struct StLedConfig {
  17. //OutputDrvValue[0]
  18. uint8_t LeftButtonLed: 1; //bit 0, H: ON, L:OFF
  19. uint8_t RightButtonLed: 1; //bit 1, H: ON, L:OFF
  20. uint8_t GreenLED: 1; //bit 2, H: ON, L:OFF
  21. uint8_t YellowLED: 1; //bit 3, H: ON, L:OFF
  22. uint8_t RedLED: 1; //bit 4, H: ON, L:OFF
  23. uint8_t SystemLed4: 1; //bit 5, H: ON, L:OFF
  24. uint8_t AcContactor: 1; //bit 6, H: ON, L:OFF
  25. uint8_t Reserved: 1; //bit 7 reserved
  26. } LedConfig;
  27. //------------------------------------------------------------------------------
  28. void ChangeLCM(uint8_t page)
  29. {
  30. pSysInfo->SystemPage = page;
  31. }
  32. // ***********************************
  33. // Enter LCM Page
  34. // ***********************************
  35. void EnterViewPage()
  36. {
  37. ChangeLCM(_LCM_VIEW);
  38. StopSystemTimeoutDet();
  39. }
  40. void EnterAuthorizePage(uint8_t gunIndex)
  41. {
  42. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  43. log_info("Select Gun(%d) in Authorizing",gunIndex);
  44. ClearDetectPluginFlag();
  45. ChangeGunSelectByIndex(gunIndex);
  46. confirmSelGun(gunIndex);
  47. ChangeLCM(_LCM_START_SCAN);
  48. strcpy((char *)pSysConfig->UserId, "");
  49. setChargerMode(gunIndex,MODE_AUTHORIZING);
  50. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  51. }
  52. void EnterLinkErrorPage()
  53. {
  54. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  55. //ClearDetectPluginFlag();
  56. StopSystemTimeoutDet();
  57. //StopGunInfoTimeoutDet(pSysInfo->CurGunSelected);
  58. ChangeLCM(_LCM_LINK_ERROR);
  59. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  60. //StartGunInfoTimeoutDet(pSysInfo->CurGunSelected,Timeout_LinkError);
  61. }
  62. /*
  63. void EnterDetailViewPage(uint8_t gunIndex)
  64. {
  65. log_info("Show Gun(%d) Detail View",gunIndex);
  66. ChangeGunSelectByIndex(gunIndex);
  67. ChangeLCM(_LCM_DETAIL_VIEW);
  68. StopGunInfoTimeoutDet(gunIndex);
  69. StartGunInfoTimeoutDet(gunIndex,Timeout_DetailView);
  70. }
  71. void EnterAuthorizeStopPage()
  72. {
  73. log_info("Select Gun(%d) in Stopping",pSysInfo->CurGunSelected);
  74. StopGunInfoTimeoutDet(pSysInfo->CurGunSelected);
  75. StopSystemTimeoutDet();
  76. strcpy((char *)pSysConfig->UserId, "");
  77. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  78. if (pDcChargingInfo->isRemoteStart) {
  79. pSysInfo->SystemPage = _LCM_STOP_APP;
  80. } else {
  81. pSysInfo->SystemPage = _LCM_STOP_RFID;
  82. }
  83. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  84. }
  85. */
  86. void StopChargingBtn(uint8_t gunIndex)
  87. {
  88. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(gunIndex);
  89. pDcChargingInfo->SystemStatus = S_TERMINATING;
  90. log_info("Press Button to Stop Charging");
  91. }
  92. void EnterSummaryPage()
  93. {
  94. StopSystemTimeoutDet();
  95. log_info("Showing Summary Page");
  96. pSysInfo->SystemPage = _LCM_SUMMARY;
  97. }
  98. // *****************************
  99. // Enter System status
  100. // *****************************
  101. void ReturnIDLE(uint8_t gunIndex)
  102. {
  103. log_info("Gun(%d) return to IDLE",gunIndex);
  104. pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(gunIndex);
  105. StopSystemTimeoutDet();
  106. StopGunInfoTimeoutDet(gunIndex);
  107. setChargerMode(gunIndex,MODE_IDLE);
  108. EnterViewPage();
  109. //destroySelGun(gunIndex);
  110. }
  111. void ReturnAuthorize()
  112. {
  113. StopSystemTimeoutDet();
  114. EnterAuthorizePage(pSysInfo->CurGunSelected);
  115. }
  116. void showConfirmStopPage(uint8_t gunIndex)
  117. {
  118. StopSystemTimeoutDet();
  119. ChangeGunSelectByIndex(gunIndex);
  120. log_info("Enter Confirm stop Page");
  121. pSysInfo->SystemPage = _LCM_CONFIRM_STOP;
  122. StartSystemTimeoutDet(Timeout_ReturnViewPage);
  123. }
  124. void CheckLeftButton()
  125. {
  126. DcCommonInfo* ShmDcCommonData = (DcCommonInfo*)GetShmDcCommonData();
  127. uint8_t gunIndex = 0;
  128. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(LEFT_GUN_NUM);
  129. switch (pSysInfo->SystemPage) {
  130. case _LCM_VIEW:
  131. pSysInfo->CurGunSelected = LEFT_GUN_NUM;
  132. if(pDcChargingInfo->SystemStatus == S_IDLE || pDcChargingInfo->SystemStatus == S_RESERVATION) {
  133. EnterAuthorizePage(LEFT_GUN_NUM);
  134. pSysInfo->SystemPage = _LCM_START_SCAN;
  135. } else if (pDcChargingInfo->SystemStatus == S_CHARGING) {
  136. showConfirmStopPage(LEFT_GUN_NUM);
  137. } else if (pDcChargingInfo->SystemStatus == S_ALARM ||
  138. pDcChargingInfo->SystemStatus == S_COMPLETE) {
  139. // 有進入充電時
  140. if (ShmDcCommonData->isIntoCharge[LEFT_GUN_NUM]) {
  141. pSysInfo->SystemPage = _LCM_SUMMARY;
  142. } else {
  143. // 未進入充電時顯示連線錯誤
  144. StopSystemTimeoutDet();
  145. StartSystemTimeoutDet(Timeout_LinkError);
  146. pSysInfo->SystemPage = _LCM_LINK_ERROR;
  147. }
  148. }
  149. break;
  150. case _LCM_START_SCAN:
  151. case _LCM_START_AUTHORIZE_FAIL:
  152. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM) {
  153. ReturnIDLE(LEFT_GUN_NUM);
  154. }
  155. break;
  156. case _LCM_LINK_ERROR:
  157. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM) {
  158. if (pDcChargingInfo->ConnectorPlugIn) {
  159. pSysInfo->SystemPage = _LCM_VIEW;
  160. } else
  161. ReturnIDLE(LEFT_GUN_NUM);
  162. }
  163. break;
  164. case _LCM_SUMMARY:
  165. if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM)
  166. break;
  167. if (pDcChargingInfo->ConnectorPlugIn) {
  168. pSysInfo->SystemPage = _LCM_VIEW;
  169. } else {
  170. log_info("Return View Page");
  171. ReturnIDLE(LEFT_GUN_NUM);
  172. }
  173. break;
  174. case _LCM_ERROR:
  175. if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM)
  176. break;
  177. if (pDcChargingInfo->ConnectorPlugIn)
  178. pSysInfo->SystemPage = _LCM_VIEW;
  179. else
  180. pSysInfo->SystemPage = _LCM_SUMMARY;
  181. break;
  182. case _LCM_CONFIRM_STOP:
  183. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM) {
  184. StopChargingBtn(LEFT_GUN_NUM);
  185. } else {
  186. EnterViewPage();
  187. }
  188. break;
  189. case _LCM_WAIT_PLUGIN:
  190. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM)
  191. ReturnIDLE(LEFT_GUN_NUM);
  192. break;
  193. case _LCM_WAIT_PLUGOUT:
  194. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM) {
  195. if (pDcChargingInfo->ConnectorPlugIn && pDcChargingInfo->SystemStatus == S_ALARM) {
  196. pSysInfo->SystemPage = _LCM_VIEW;
  197. }
  198. }
  199. break;
  200. }
  201. }
  202. void CheckRightButton()
  203. {
  204. uint8_t gunIndex = 0;
  205. DcCommonInfo* ShmDcCommonData = (DcCommonInfo*)GetShmDcCommonData();
  206. pDcChargingInfo = (struct ChargingInfoData*)GetDcChargingInfoData(RIGHT_GUN_NUM);
  207. switch (pSysInfo->SystemPage) {
  208. case _LCM_VIEW:
  209. pSysInfo->CurGunSelected = RIGHT_GUN_NUM;
  210. if(pDcChargingInfo->SystemStatus == S_IDLE || pDcChargingInfo->SystemStatus == S_RESERVATION) {
  211. EnterAuthorizePage(RIGHT_GUN_NUM);
  212. pSysInfo->SystemPage = _LCM_START_SCAN;
  213. } else if (pDcChargingInfo->SystemStatus == S_CHARGING) {
  214. //EnterDetailViewPage(RIGHT_GUN_NUM);
  215. showConfirmStopPage(RIGHT_GUN_NUM);
  216. } else if (pDcChargingInfo->SystemStatus == S_ALARM ||
  217. pDcChargingInfo->SystemStatus == S_COMPLETE) {
  218. // 有進入充電時
  219. if (ShmDcCommonData->isIntoCharge[RIGHT_GUN_NUM]) {
  220. pSysInfo->SystemPage = _LCM_SUMMARY;
  221. } else {
  222. // 未進入充電時顯示連線錯誤
  223. StopSystemTimeoutDet();
  224. StartSystemTimeoutDet(Timeout_LinkError);
  225. pSysInfo->SystemPage = _LCM_LINK_ERROR;
  226. }
  227. }
  228. break;
  229. case _LCM_START_SCAN:
  230. if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM)
  231. ReturnIDLE(pSysInfo->CurGunSelected);
  232. break;
  233. case _LCM_START_AUTHORIZE_FAIL:
  234. if (pSysInfo->SystemPage == _LCM_START_AUTHORIZE_FAIL && pSysInfo->CurGunSelected == LEFT_GUN_NUM)
  235. break;
  236. ReturnAuthorize();
  237. break;
  238. case _LCM_WAIT_PLUGIN:
  239. if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM)
  240. ReturnIDLE(RIGHT_GUN_NUM);
  241. break;
  242. case _LCM_LINK_ERROR:
  243. if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM) {
  244. if (pDcChargingInfo->ConnectorPlugIn) {
  245. pSysInfo->SystemPage = _LCM_VIEW;
  246. } else
  247. ReturnIDLE(RIGHT_GUN_NUM);
  248. }
  249. break;
  250. /*
  251. case _LCM_DETAIL_VIEW:
  252. EnterAuthorizeStopPage();
  253. break;
  254. case _LCM_STOP_RFID_FAIL:
  255. EnterAuthorizeStopPage();
  256. break;
  257. */
  258. case _LCM_WAIT_PLUGOUT:
  259. if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM) {
  260. if (pDcChargingInfo->ConnectorPlugIn && pDcChargingInfo->SystemStatus == S_ALARM) {
  261. pSysInfo->SystemPage = _LCM_VIEW;
  262. }
  263. }
  264. break;
  265. case _LCM_ERROR:
  266. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM)
  267. break;
  268. if (pDcChargingInfo->ConnectorPlugIn)
  269. pSysInfo->SystemPage = _LCM_VIEW;
  270. else
  271. pSysInfo->SystemPage = _LCM_SUMMARY;
  272. break;
  273. case _LCM_CONFIRM_STOP:
  274. if (pSysInfo->CurGunSelected == RIGHT_GUN_NUM) {
  275. StopChargingBtn(RIGHT_GUN_NUM);
  276. } else {
  277. EnterViewPage();
  278. }
  279. break;
  280. case _LCM_SUMMARY:
  281. if (pSysInfo->CurGunSelected == LEFT_GUN_NUM)
  282. break;
  283. if (pDcChargingInfo->ConnectorPlugIn) {
  284. pSysInfo->SystemPage = _LCM_VIEW;
  285. } else {
  286. log_info("Return View Page");
  287. ReturnIDLE(RIGHT_GUN_NUM);
  288. }
  289. break;
  290. }
  291. }
  292. void CheckPrimaryWarm(void)
  293. {
  294. uint8_t i = 0;
  295. uint8_t Rtn = 0;
  296. struct WARNING_CODE_INFO *pSysWarning = (struct WARNING_CODE_INFO *)GetShmSysWarningInfo();
  297. struct PrimaryMcuData *ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  298. struct AlarmCodeData *pAlarmCode = (struct AlarmCodeData *)GetShmAlarmCodeData();
  299. DcCommonInfo *ShmDcCommonData = (DcCommonInfo *)GetShmDcCommonData();
  300. if (pSysWarning->WarningCount > 0) {
  301. Rtn = 0;
  302. for (i = 0; i < pSysWarning->WarningCount; i++) {
  303. if (memcmp(&pSysWarning->WarningCode[i][0], "042251", 6) == 0) {
  304. EmcOccureByString("042251");
  305. ShmDcCommonData->PowerAlarmState.StatusBit.EmergencyStop = YES;
  306. Rtn = 1;
  307. } else if (memcmp(&pSysWarning->WarningCode[i][0], "042252", 6) == 0) {
  308. ShmDcCommonData->PowerAlarmState.StatusBit.DoorOpen = YES;
  309. EmcOccureByString("042252");
  310. Rtn = 1;
  311. } else if (memcmp(&pSysWarning->WarningCode[i][0], "042327", 6) == 0) {
  312. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputOVP = YES;
  313. EmcOccureByString("042327");
  314. Rtn = 1;
  315. } else if (memcmp(&pSysWarning->WarningCode[i][0], "042328", 6) == 0) {
  316. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputUVP = YES;
  317. EmcOccureByString("042328");
  318. Rtn = 1;
  319. } else if (memcmp(&pSysWarning->WarningCode[i][0], "042200", 6) == 0) {
  320. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL1InputOVP = YES;
  321. EmcOccureByString("042200");
  322. Rtn = 1;
  323. } else if (memcmp(&pSysWarning->WarningCode[i][0], "042201", 6) == 0) {
  324. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL2InputOVP = YES;
  325. EmcOccureByString("042201");
  326. Rtn = 1;
  327. } else if (memcmp(&pSysWarning->WarningCode[i][0], "042202", 6) == 0) {
  328. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL3InputOVP = YES;
  329. EmcOccureByString("042202");
  330. Rtn = 1;
  331. } else if (memcmp(&pSysWarning->WarningCode[i][0], "042267", 6) == 0) {
  332. ShmDcCommonData->PowerAlarmState.StatusBit.PsuFailure = YES;
  333. EmcOccureByString("042267");
  334. Rtn = 1;
  335. } else if (memcmp(&pSysWarning->WarningCode[i][0], "012304", 6) == 0) {
  336. EmcOccureByString("012304");
  337. Rtn = 1;
  338. }
  339. }
  340. if (Rtn == 0) {
  341. ShmDcCommonData->PowerAlarmState.StatusBit.EmergencyStop = NO;
  342. ShmDcCommonData->PowerAlarmState.StatusBit.DoorOpen = NO;
  343. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputOVP = NO;
  344. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputUVP = NO;
  345. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL1InputOVP = NO;
  346. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL2InputOVP = NO;
  347. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL3InputOVP = NO;
  348. ShmDcCommonData->PowerAlarmState.StatusBit.PsuFailure = NO;
  349. ReleaseEmsOccureByString(0, "042251");
  350. ReleaseEmsOccureByString(0, "042252");
  351. ReleaseEmsOccureByString(0, "042200");
  352. ReleaseEmsOccureByString(0, "042327");
  353. ReleaseEmsOccureByString(0, "042328");
  354. ReleaseEmsOccureByString(0, "042201");
  355. ReleaseEmsOccureByString(0, "042202");
  356. ReleaseEmsOccureByString(0, "042267");
  357. ReleaseEmsOccureByString(0, "012304");
  358. }
  359. } else {
  360. ShmDcCommonData->PowerAlarmState.StatusBit.EmergencyStop = NO;
  361. ShmDcCommonData->PowerAlarmState.StatusBit.DoorOpen = NO;
  362. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputOVP = NO;
  363. ShmDcCommonData->PowerAlarmState.StatusBit.DcInputUVP = NO;
  364. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL1InputOVP = NO;
  365. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL2InputOVP = NO;
  366. ShmDcCommonData->PowerAlarmState.StatusBit.SystemL3InputOVP = NO;
  367. ShmDcCommonData->PowerAlarmState.StatusBit.PsuFailure = NO;
  368. ReleaseEmsOccureByString(0, "042251");
  369. ReleaseEmsOccureByString(0, "042252");
  370. ReleaseEmsOccureByString(0, "042200");
  371. ReleaseEmsOccureByString(0, "042327");
  372. ReleaseEmsOccureByString(0, "042328");
  373. ReleaseEmsOccureByString(0, "042201");
  374. ReleaseEmsOccureByString(0, "042202");
  375. ReleaseEmsOccureByString(0, "042267");
  376. ReleaseEmsOccureByString(0, "012304");
  377. }
  378. if (ShmPrimaryMcuData->InputDet.bits.EmergencyButton == ABNORMAL) {
  379. pAlarmCode->AlarmEvents.bits.EmergencyStopTrip = YES;
  380. EmcOccureByString("012251");
  381. } else {
  382. ReleaseEmsOccureByString(0, "012251");
  383. }
  384. if (ShmPrimaryMcuData->InputDet.bits.AcMainBreakerDetec == ABNORMAL) {
  385. pAlarmCode->AlarmEvents.bits.MainPowerBreakerTrip = YES;
  386. EmcOccureByString("012238");
  387. } else {
  388. ReleaseEmsOccureByString(0, "012238");
  389. }
  390. if (ShmPrimaryMcuData->InputDet.bits.SpdDetec == ABNORMAL) {
  391. pAlarmCode->AlarmEvents.bits.SpdTrip = YES;
  392. } else {
  393. pAlarmCode->AlarmEvents.bits.SpdTrip = NO;
  394. }
  395. if (ShmPrimaryMcuData->InputDet.bits.DoorOpen == ABNORMAL) {
  396. pAlarmCode->AlarmEvents.bits.DoorOpen = YES;
  397. EmcOccureByString("012252");
  398. } else {
  399. ReleaseEmsOccureByString(0, "012252");
  400. }
  401. }
  402. void ChkPrimaryStatus(void)
  403. {
  404. static bool leftBtnPush = false;
  405. static bool rightBtnPush = false;
  406. pSysInfo = (struct SysInfoData *)GetShmSysInfoData();
  407. struct PrimaryMcuData *ShmPrimaryMcuData = (struct PrimaryMcuData *)GetShmPrimaryMcuData();
  408. struct ChargingInfoData *pDcChargingInfo = (struct ChargingInfoData *)GetDcChargingInfoData(pSysInfo->CurGunSelected);
  409. pSysConfig = (struct SysConfigData *)GetShmSysConfigData();
  410. // Check Primary Board status
  411. CheckPrimaryWarm();
  412. if ((pDcChargingInfo->SystemStatus == S_IDLE || pDcChargingInfo->SystemStatus == S_RESERVATION)
  413. && pSysConfig->OfflinePolicy == _OFFLINE_POLICY_NO_CHARGING) {
  414. log_info("Offline policy no charge");
  415. return;;
  416. }
  417. // Show Version
  418. if (ShmPrimaryMcuData->InputDet.bits.Button1 == BTN_PRESS &&
  419. ShmPrimaryMcuData->InputDet.bits.Button2 == BTN_PRESS )
  420. pSysConfig->ShowInformation = YES;
  421. else
  422. pSysConfig->ShowInformation = NO;
  423. if (pSysConfig->ShowInformation)
  424. return;
  425. // Press Left Button
  426. if (ShmPrimaryMcuData->InputDet.bits.Button1 == BTN_PRESS && !leftBtnPush ) {
  427. leftBtnPush = true;
  428. CheckLeftButton();
  429. log_info("left btn down...............................%d %d %d",
  430. pSysInfo->CurGunSelected,pDcChargingInfo->SystemStatus,pSysInfo->SystemPage);
  431. } else if (ShmPrimaryMcuData->InputDet.bits.Button1 == BTN_RELEASE && leftBtnPush) {
  432. leftBtnPush = false;
  433. }
  434. // Press Right Button
  435. if (ShmPrimaryMcuData->InputDet.bits.Button2 == BTN_PRESS && !rightBtnPush ) {
  436. rightBtnPush = true;
  437. CheckRightButton();
  438. log_info("right btn down...............................%d %d %d",
  439. pSysInfo->CurGunSelected,pDcChargingInfo->SystemStatus, pSysInfo->SystemPage);
  440. } else if (ShmPrimaryMcuData->InputDet.bits.Button2 == BTN_RELEASE && rightBtnPush) {
  441. rightBtnPush = false;
  442. }
  443. }