|
@@ -4929,8 +4929,11 @@ int main(void)
|
|
|
// If unplug the connector during a session, the system must stop charging and stop session.
|
|
|
if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A)
|
|
|
{
|
|
|
- ShmCharger->gun_info[gun_index].isGunUnpluggedBefore = YES;
|
|
|
- DEBUG_INFO("The connector was unplugged under CHARGING.\n");
|
|
|
+ if(ShmCharger->gun_info[gun_index].isGunUnpluggedBefore != YES)
|
|
|
+ {
|
|
|
+ ShmCharger->gun_info[gun_index].isGunUnpluggedBefore = YES;
|
|
|
+ DEBUG_INFO("The connector was unplugged under CHARGING.\n");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if((ShmCharger->gun_info[gun_index].isGunUnpluggedBefore == YES) ||
|
|
@@ -5224,8 +5227,11 @@ int main(void)
|
|
|
// If unplug the connector during a session, the system must stop charging and stop session.
|
|
|
if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A)
|
|
|
{
|
|
|
- ShmCharger->gun_info[gun_index].isGunUnpluggedBefore = YES;
|
|
|
- DEBUG_INFO("The connector was unplugged under TERMINATING.\n");
|
|
|
+ if(ShmCharger->gun_info[gun_index].isGunUnpluggedBefore != YES)
|
|
|
+ {
|
|
|
+ ShmCharger->gun_info[gun_index].isGunUnpluggedBefore = YES;
|
|
|
+ DEBUG_INFO("The connector was unplugged under TERMINATING.\n");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
// End authorize pass
|
|
@@ -5474,7 +5480,12 @@ int main(void)
|
|
|
if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A))
|
|
|
{
|
|
|
setRequest(gun_index,OFF);
|
|
|
- ShmCharger->gun_info[gun_index].isGunUnpluggedBefore = YES;
|
|
|
+
|
|
|
+ if(ShmCharger->gun_info[gun_index].isGunUnpluggedBefore != YES)
|
|
|
+ {
|
|
|
+ ShmCharger->gun_info[gun_index].isGunUnpluggedBefore = YES;
|
|
|
+ DEBUG_INFO("The connector was unplugged under ALARM.\n");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if((ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode == 0))
|