Browse Source

[Improve][AW-CCS][Module_LcmControl.c]
2022-04-27 / EASON YANG
Action
1.Improve: If the OCPP status is offline, and the system doesn't change to the receipt page.

File
1. Module_LcmControl.c
Action 1

Lcm Version: V0.28
FIRMWARE VERSION: B0.62.XX.XXXX.PX

8009 2 years ago
parent
commit
bb29969dc7
1 changed files with 22 additions and 9 deletions
  1. 22 9
      EVSE/Projects/AW-CCS/Apps/LCM/Module_LcmControl.c

+ 22 - 9
EVSE/Projects/AW-CCS/Apps/LCM/Module_LcmControl.c

@@ -2,9 +2,9 @@
  * Module_LcmControl.c
  *
  * Created on : 2020-10-20
- * Update on : 2022-03-01
+ * Update on : 2022-04-27
  * Author : Folus Wen, Eason Yang
- * Version : V0.27
+ * Version : V0.28
  *
  */
 
@@ -125,7 +125,7 @@ int Uart1Fd;
 //=======================================
 // Record version and date
 //=======================================
-char *FIRMWARE_UPDATE_IMAGE[3] = {"V0.27", "2022-03-01", "REV.03.00"};
+char *FIRMWARE_UPDATE_IMAGE[3] = {"V0.28", "2022-04-27", "REV.03.00"};
 
 //=======================================
 // Common routine
@@ -586,7 +586,7 @@ void page_charging(uint8_t gun_index, uint8_t system_mode)
 
 void page_complete(uint8_t gun_index, uint8_t system_mode)
 {
-	if((strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppReceiptrURL,"") == 0))
+	if((ShmSysConfigAndInfo->SysInfo.OcppConnStatus != ON))
 	{
 		if(getCurrentPage() != SYSTEM_SCREEN_COMPLETE)
 		{
@@ -598,15 +598,28 @@ void page_complete(uint8_t gun_index, uint8_t system_mode)
 	}
 	else
 	{
-		if(getCurrentPage() != SYSTEM_SCREEN_COMPLETE_WITH_QRCODE)
+		if((strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppReceiptrURL,"") == 0))
 		{
-			setCurrentPage(SYSTEM_SCREEN_COMPLETE_WITH_QRCODE);
-			setQRCodeReceipt(gun_index);
-			DEBUG_INFO("Setting page to complete with receipt qr code.\n");
+			if(getCurrentPage() != SYSTEM_SCREEN_COMPLETE)
+			{
+				setCurrentPage(SYSTEM_SCREEN_COMPLETE);
+				DEBUG_INFO("Setting page to complete.\n");
+			}
+			else
+			{}
 		}
 		else
 		{
-			setQRCodeReceipt(gun_index);
+			if(getCurrentPage() != SYSTEM_SCREEN_COMPLETE_WITH_QRCODE)
+			{
+				setCurrentPage(SYSTEM_SCREEN_COMPLETE_WITH_QRCODE);
+				setQRCodeReceipt(gun_index);
+				DEBUG_INFO("Setting page to complete with receipt qr code.\n");
+			}
+			else
+			{
+				setQRCodeReceipt(gun_index);
+			}
 		}
 	}