|
@@ -2,9 +2,9 @@
|
|
|
* Module_LcmControl.c
|
|
|
*
|
|
|
* Created on : 2020-10-20
|
|
|
- * Update on : 2021-12-06
|
|
|
+ * Update on : 2021-12-14
|
|
|
* Author : Folus Wen, Eason Yang
|
|
|
- * Version : V0.23
|
|
|
+ * Version : V0.24
|
|
|
*
|
|
|
*/
|
|
|
|
|
@@ -55,12 +55,12 @@ void setWarningStatus(uint8_t gun_index);
|
|
|
void setQRCodeReceipt(uint8_t gun_index);
|
|
|
void setCurrencyFromWebsite(uint8_t unit);
|
|
|
void setPriceFromWebsite(float monry_rate);
|
|
|
-void setPlugAndChargeAnim(uint8_t gun_index);
|
|
|
void setAuthorizationPage(uint8_t gun_index);
|
|
|
float getPresentFinalCost(uint8_t gun_index);
|
|
|
void setGunPluginAnimation(uint8_t gun_index);
|
|
|
void setPresentChargedEnergy(uint8_t gun_index);
|
|
|
void setPresentChargedgPower(uint8_t gun_index);
|
|
|
+void setPlugAndChargeAnimation(uint8_t gun_index);
|
|
|
void setPresentChargedDuration(uint8_t gun_index);
|
|
|
void setPresentPowerConsumption(uint8_t gun_index);
|
|
|
void setFinalCost(uint8_t gun_index, uint8_t type);
|
|
@@ -113,7 +113,7 @@ int Uart1Fd;
|
|
|
//=======================================
|
|
|
// Record version and date
|
|
|
//=======================================
|
|
|
-char *FIRMWARE_UPDATE_IMAGE[3] = {"V0.23", "2021-12-06", "REV.02.00"};
|
|
|
+char *FIRMWARE_UPDATE_IMAGE[3] = {"V0.24", "2021-12-14", "REV.02.00"};
|
|
|
|
|
|
//=======================================
|
|
|
// Common routine
|
|
@@ -334,7 +334,7 @@ void page_idle(uint8_t gun_index, uint8_t system_mode)
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- setPlugAndChargeAnim(gun_index);
|
|
|
+ setPlugAndChargeAnimation(gun_index);
|
|
|
}
|
|
|
}
|
|
|
else
|
|
@@ -1327,9 +1327,11 @@ void setFinalCost(uint8_t gun_index, uint8_t type)
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- // DISAPPEAR COST ICON AND COST TEXT
|
|
|
- setDisplayValue(ICON_CHARGING_COST, DISAPPEAR);
|
|
|
- setDisplayValue(TEXT_CHARGING_COST, DISAPPEAR);
|
|
|
+ setDisplayValue(ICON_CHARGING_COST, APPEAR);
|
|
|
+
|
|
|
+ strcpy((char*)cost_empty, "-----");
|
|
|
+ string2ByteArray(cost_empty, output_data);
|
|
|
+ lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_CHARGING_COST, output_data, ARRAY_SIZE(output_data));
|
|
|
}
|
|
|
}
|
|
|
break;
|
|
@@ -1342,7 +1344,6 @@ void setFinalCost(uint8_t gun_index, uint8_t type)
|
|
|
string2ByteArray(balance_empty, output_data);
|
|
|
|
|
|
lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_REMAINING_ACCOUNT_BALANCE, output_data, ARRAY_SIZE(output_data));
|
|
|
- lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_USER_ACCOUNT_BALANCE, output_data, ARRAY_SIZE(output_data));
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -1359,16 +1360,15 @@ void setFinalCost(uint8_t gun_index, uint8_t type)
|
|
|
trim_string(input_data,length);
|
|
|
memcpy(output_data ,input_data, strlen(input_data));
|
|
|
lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_REMAINING_ACCOUNT_BALANCE, output_data, ARRAY_SIZE(output_data));
|
|
|
- lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_USER_ACCOUNT_BALANCE, output_data, ARRAY_SIZE(output_data));
|
|
|
}
|
|
|
else
|
|
|
- {
|
|
|
- /*
|
|
|
- * 1. DISAPPEAR ACCOUNT BALANCE WHEN THE SYSTEM IS COMPLETE MODE
|
|
|
- * 2. DISAPPEAR ACCOUNT ICON WHEN THE SYSTEM IS COMPLETE MODE
|
|
|
- */
|
|
|
- setDisplayValue(ICON_COMPLETE_WALLET, DISAPPEAR);
|
|
|
- setDisplayValue(TEXT_REMAINING_ACCOUNT_BALANCE, DISAPPEAR);
|
|
|
+ {
|
|
|
+ setDisplayValue(ICON_COMPLETE_WALLET, APPEAR);
|
|
|
+
|
|
|
+ strcpy((char*)balance_empty, "-----");
|
|
|
+ string2ByteArray(balance_empty, output_data);
|
|
|
+
|
|
|
+ lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_REMAINING_ACCOUNT_BALANCE, output_data, ARRAY_SIZE(output_data));
|
|
|
}
|
|
|
}
|
|
|
break;
|
|
@@ -1430,9 +1430,11 @@ void setRunningCost(uint8_t gun_index, uint8_t type)
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- // DISAPPEAR COST ICON AND COST TEXT
|
|
|
- setDisplayValue(ICON_CHARGING_COST, DISAPPEAR);
|
|
|
- setDisplayValue(TEXT_CHARGING_COST, DISAPPEAR);
|
|
|
+ setDisplayValue(ICON_CHARGING_COST, APPEAR);
|
|
|
+
|
|
|
+ strcpy((char*)cost_empty, "-----");
|
|
|
+ string2ByteArray(cost_empty, output_data);
|
|
|
+ lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_CHARGING_COST, output_data, ARRAY_SIZE(output_data));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -1857,7 +1859,7 @@ void setGunPluginAnimation(uint8_t gun_index)
|
|
|
//=======================================
|
|
|
// Setting [ Plug & Charge ] Animation
|
|
|
//=======================================
|
|
|
-void setPlugAndChargeAnim(uint8_t gun_index)
|
|
|
+void setPlugAndChargeAnimation(uint8_t gun_index)
|
|
|
{
|
|
|
if((GUN_PLUGING_LEVEL_STATUS == GUN_PLUGING_LEVEL_0) && (DiffTimebWithNow(startTime[gun_index][TMR_IDX_PLUGIN]) > (TIME_ANIMATION_PLUGIN)))
|
|
|
{
|
|
@@ -1884,6 +1886,7 @@ void setPresentConnectionTimeout(uint8_t gun_index)
|
|
|
|
|
|
memset(data, 0x00, ARRAY_SIZE(data));
|
|
|
memset(conntectionTimeout, 0x00, ARRAY_SIZE(conntectionTimeout));
|
|
|
+ memset(not_counting, 0x00, ARRAY_SIZE(not_counting));
|
|
|
|
|
|
if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_B) ||
|
|
|
(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C) ||
|
|
@@ -1896,9 +1899,18 @@ void setPresentConnectionTimeout(uint8_t gun_index)
|
|
|
else
|
|
|
{
|
|
|
time = ShmCharger->timeoutSpec.Handshake_Timeout;
|
|
|
- sprintf((char *)conntectionTimeout, "%03d ", time);
|
|
|
- string2ByteArray(conntectionTimeout, data);
|
|
|
- lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_PREPARING_CONNECTION_TIMER, data, ARRAY_SIZE(data));
|
|
|
+ if(time <= 0)
|
|
|
+ {
|
|
|
+ strcpy((char*)not_counting, "000");
|
|
|
+ string2ByteArray(not_counting, data);
|
|
|
+ lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_PREPARING_CONNECTION_TIMER, data, ARRAY_SIZE(data));
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ sprintf((char *)conntectionTimeout, "%03d ", time);
|
|
|
+ string2ByteArray(conntectionTimeout, data);
|
|
|
+ lcdRegisterWrite(Uart1Fd, REG_TYPE_RAM, TEXT_PREPARING_CONNECTION_TIMER, data, ARRAY_SIZE(data));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2581,7 +2593,7 @@ int main(void)
|
|
|
page_authorizing(ShmCharger->gun_selectd);
|
|
|
ShmCharger->gun_info[ShmCharger->gun_selectd].isHandshakeTimerRefresh = YES;
|
|
|
}
|
|
|
- else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[ShmCharger->gun_selectd].SystemStatus == SYS_MODE_IDLE) && (ShmCharger->gun_info[ShmCharger->gun_selectd].resultAuthorization == VALIDATED_RFID))
|
|
|
+ else if(((ShmSysConfigAndInfo->SysInfo.AcChargingData[ShmCharger->gun_selectd].SystemStatus == SYS_MODE_IDLE) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[ShmCharger->gun_selectd].SystemStatus == SYS_MODE_RESERVATION)) && (ShmCharger->gun_info[ShmCharger->gun_selectd].resultAuthorization == VALIDATED_RFID))
|
|
|
{
|
|
|
page_preparing(ShmCharger->gun_selectd, ShmSysConfigAndInfo->SysInfo.AcChargingData[ShmCharger->gun_selectd].SystemStatus);
|
|
|
ShmCharger->gun_info[ShmCharger->gun_selectd].isHandshakeTimerRefresh = NO;
|