浏览代码

[Improve][AW-Regular][main.c]
2022-09-03 / EASON YANG
Action:
1. Improve: Unplug the connector log print out.

File:
1. main.c
Action 1

FIRMWARE VERSION: V0.71.XX.XXXX.PX

8009 2 年之前
父节点
当前提交
eec58c26c7
共有 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))