|
@@ -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);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|