|
@@ -1,6 +1,7 @@
|
|
|
#include "define.h"
|
|
|
#include "main.h"
|
|
|
|
|
|
+
|
|
|
//==========================
|
|
|
// System basic sample constant
|
|
|
//==========================
|
|
@@ -4200,7 +4201,6 @@ int main(void)
|
|
|
else
|
|
|
{
|
|
|
ShmCharger->gun_info[gun_index].resultAuthorization = UNVALIDATED_RFID;
|
|
|
-
|
|
|
DEBUG_INFO("Authorize fail.\n");
|
|
|
setSpeaker(ON,SPEAKER_INTERVAL_3COUNT);
|
|
|
setLedMotion(gun_index,LED_ACTION_RFID_FAIL);
|
|
@@ -4376,6 +4376,7 @@ int main(void)
|
|
|
memcpy((char*)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, ShmSysConfigAndInfo->SysConfig.UserId, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
|
|
|
ocpp_copy_userid_to_starttransaction(gun_index);
|
|
|
ocpp_set_starttransaction_req(gun_index, ON);
|
|
|
+ ftime(&startChargingTime[gun_index]);
|
|
|
|
|
|
setChargerMode(gun_index, SYS_MODE_CHARGING);
|
|
|
}
|
|
@@ -4478,6 +4479,7 @@ int main(void)
|
|
|
ocpp_set_starttransaction_req(gun_index, ON);
|
|
|
ShmCharger->gun_info[gun_index].isCCSStartTransation = OFF;
|
|
|
setChargerMode(gun_index, SYS_MODE_CHARGING);
|
|
|
+ ftime(&startChargingTime[gun_index]);
|
|
|
ftime(&startTime[gun_index][TMR_IDX_CCS_HEARTBEAT_COUNT_RESET]);
|
|
|
}
|
|
|
|
|
@@ -4518,7 +4520,7 @@ int main(void)
|
|
|
setRelay(gun_index,ON);
|
|
|
ocpp_copy_userid_to_starttransaction(gun_index);
|
|
|
ocpp_set_starttransaction_req(gun_index, ON);
|
|
|
-
|
|
|
+ ftime(&startChargingTime[gun_index]);
|
|
|
setChargerMode(gun_index, SYS_MODE_CHARGING);
|
|
|
}
|
|
|
|
|
@@ -4580,7 +4582,7 @@ int main(void)
|
|
|
if(isModeChange(gun_index))
|
|
|
{
|
|
|
ShmCharger->gun_info[gun_index].rfidReq = OFF;
|
|
|
- ftime(&startChargingTime[gun_index]);
|
|
|
+ //ftime(&startChargingTime[gun_index]);
|
|
|
ftime(&startTime[gun_index][TMR_IDX_LOGPPRINTOUT]);
|
|
|
ftime(&startTime[gun_index][TMR_IDX_PROFILE_PREPARE]);
|
|
|
ftime(&startTime[gun_index][TMR_IDX_PWN_CHANGE]);
|
|
@@ -4736,6 +4738,7 @@ int main(void)
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
+ ShmCharger->gun_info[gun_index].resultAuthorization = UNVALIDATED_RFID;
|
|
|
ShmCharger->gun_info[gun_index].rfidReq = OFF;
|
|
|
ocpp_set_auth_req(OFF);
|
|
|
DEBUG_INFO("Authorize fail.\n");
|
|
@@ -4989,11 +4992,6 @@ int main(void)
|
|
|
case SYS_MODE_TERMINATING:
|
|
|
if(isModeChange(gun_index))
|
|
|
{
|
|
|
- if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration != 0)
|
|
|
- {
|
|
|
- ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration = DiffTimeb(startChargingTime[gun_index], endChargingTime[gun_index])/1000;
|
|
|
- }
|
|
|
-
|
|
|
if(!ShmCharger->gun_info[gun_index].primaryMcuState.relay_state)
|
|
|
{
|
|
|
setLedMotion(gun_index, LED_ACTION_STOP);
|
|
@@ -5005,6 +5003,12 @@ int main(void)
|
|
|
ShmCharger->gun_info[gun_index].resultAuthorization = DEFAULT_RFID;
|
|
|
}
|
|
|
|
|
|
+ ftime(&endChargingTime[gun_index]);
|
|
|
+ if(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration != 0)
|
|
|
+ {
|
|
|
+ ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration = DiffTimeb(startChargingTime[gun_index], endChargingTime[gun_index])/1000;
|
|
|
+ }
|
|
|
+
|
|
|
// End authorize pass
|
|
|
if(((ShmCharger->gun_info[gun_index].rfidReq == ON) && isMatchStartUser(gun_index)) ||
|
|
|
(ShmCharger->gun_info[gun_index].isAuthPassEnd) ||
|