Przeglądaj źródła

2021-11-16 / Eason Yang
Action:
1. Bugfix : Preparing to charging logic fixed.

File:
1. main.c
Action 1

Firmware version: V0.70.XX.XXXX.XX

8009 3 lat temu
rodzic
commit
afac5061fc
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      EVSE/Projects/AW-Regular/Apps/main.c

+ 2 - 1
EVSE/Projects/AW-Regular/Apps/main.c

@@ -4260,12 +4260,13 @@ int main(void)
 					}
 					else if((ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_B) || (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C))
 					{
+						setRequest(gun_index,ON);
 						ftime(&startTime[gun_index][TMR_IDX_HANDSHAKING]);
 						ShmCharger->gun_info[gun_index].isGunPlugged = YES;
 						
 						// Set relay on when the system is state C
 						if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_C)
-							setRequest(gun_index,ON);
+							setRelay(gun_index, ON);
 						
 						if((ShmCharger->gun_info[gun_index].primaryMcuState.relay_state == ON) || (ShmCharger->gun_info[gun_index].targetCurrent == 0))
 						{