Browse Source

[Improve][AW-CCS][Main]
2022-03-02 / Eason Yang
Action
1.Improve: Copy StartTransaction idTag into StopTransaction idTag, when stop charging by EVDisconnected and ocpp was offline.

File
1. main.c
Action 1

FIRMWARE VERSION: B0.61.XX.XXXX.PX

8009 3 years ago
parent
commit
639ba89593
1 changed files with 1 additions and 0 deletions
  1. 1 0
      EVSE/Projects/AW-CCS/Apps/main.c

+ 1 - 0
EVSE/Projects/AW-CCS/Apps/main.c

@@ -4527,6 +4527,7 @@ void checkStopReason(uint8_t gun_index)
 		else if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_A)
 		{
 			sprintf((char*)ShmOCPP16Data->StopTransaction[gun_index].StopReason, "EVDisconnected");
+			memcpy((char*)ShmOCPP16Data->StopTransaction[gun_index].IdTag, (char*)ShmOCPP16Data->StartTransaction[gun_index].IdTag, ARRAY_SIZE(ShmOCPP16Data->StopTransaction[gun_index].IdTag));
 		}
 		else if(ShmOCPP16Data->MsMsg.bits.ResetReq)
 		{