瀏覽代碼

Merge branch 'AW-Regular' of https://git.phihong.com.tw:30000/system_integration/csu3_am335x into AW-Regular

Folus Wen 2 年之前
父節點
當前提交
07279029b6
共有 1 個文件被更改,包括 16 次插入5 次删除
  1. 16 5
      EVSE/Projects/AW-Regular/Apps/main.c

+ 16 - 5
EVSE/Projects/AW-Regular/Apps/main.c

@@ -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))