|
@@ -3330,7 +3330,7 @@ int isMatchStartUser(unsigned char gun_index)
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if(isPrintLogOut == OFF)
|
|
|
{
|
|
|
DEBUG_INFO("==== isMatchStartUser ==== \n");
|
|
@@ -4383,7 +4383,7 @@ void checkChargingProfileLimit(uint8_t gun_index, uint8_t system_mode)
|
|
|
{
|
|
|
// Absolute profile
|
|
|
if((mystrcmp((char*)ShmOCPP16Data->MaxChargingProfile.ChargingProfileKind, "Absolute") == PASS))
|
|
|
- {
|
|
|
+ {
|
|
|
for(uint8_t idx_period=0;idx_period<ARRAY_SIZE(ShmOCPP16Data->MaxChargingProfile.ChargingSchedule.ChargingSchedulePeriod);idx_period++)
|
|
|
{
|
|
|
if((getMaxScheduleStart() >= ShmOCPP16Data->MaxChargingProfile.ChargingSchedule.ChargingSchedulePeriod[idx_period].StartPeriod) &&
|
|
@@ -4853,6 +4853,7 @@ void checkHandshakeCountdown(uint8_t gun_index)
|
|
|
void checkRfidAuthrize()
|
|
|
{
|
|
|
static uint8_t isCheckdResult = FALSE;
|
|
|
+ uint8_t isStartByWrongReservation = NO;
|
|
|
|
|
|
if(!ShmCharger->isAuthrizing)
|
|
|
{
|
|
@@ -4983,12 +4984,20 @@ void checkRfidAuthrize()
|
|
|
|
|
|
for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
|
|
|
ShmCharger->gun_info[gun_index].resultAuthorization = VALIDATED_RFID;
|
|
|
+
|
|
|
+ if((ShmSysConfigAndInfo->SysInfo.AcChargingData[ShmCharger->gun_selectd].SystemStatus == SYS_MODE_RESERVATION) && (strcmp((char*)ShmSysConfigAndInfo->SysConfig.UserId, (char*)ShmOCPP16Data->ReserveNow[ShmCharger->gun_selectd].IdTag) != 0))
|
|
|
+ {
|
|
|
+ for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
|
|
|
+ ShmCharger->gun_info[gun_index].resultAuthorization = DEFAULT_RFID;
|
|
|
+
|
|
|
+ isStartByWrongReservation = YES;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
|
|
|
checkHandshakeCountdown(gun_index);
|
|
|
|
|
|
- if(getDiffSecNow(startTime[0][TMR_IDX_GUN_DETECT]) < (ocpp_get_connection_timeout()))
|
|
|
+ if((getDiffSecNow(startTime[0][TMR_IDX_GUN_DETECT]) < (ocpp_get_connection_timeout())) && (isStartByWrongReservation != YES))
|
|
|
{
|
|
|
if(GetCardSerialNumber() != FAIL)
|
|
|
{
|
|
@@ -5563,6 +5572,7 @@ int main(void)
|
|
|
// Response StopTransactionConf
|
|
|
ocpp_set_stoptransaction_conf(gun_index, OFF);
|
|
|
memset(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId, 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartUserId));
|
|
|
+ memset(ShmSysConfigAndInfo->SysConfig.UserId, 0x00, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.UserId));
|
|
|
|
|
|
ShmCharger->gun_info[gun_index].ccsHandshakeState = HANDSHAKE_IDLE;
|
|
|
ShmCharger->gun_info[gun_index].chargingMode = CHARGING_MODE_BS;
|
|
@@ -5572,7 +5582,7 @@ int main(void)
|
|
|
ShmCharger->gun_info[gun_index].resultAuthorization = DEFAULT_RFID;
|
|
|
//if(ShmCharger->isCcsEnable)system("pkill Module_CCS");
|
|
|
DB_Check_Record_Buf(localDb, gun_index);
|
|
|
-
|
|
|
+
|
|
|
// Default previousData every time
|
|
|
previousData[gun_index].primaryMcuCp_Pwn_Duty = 0;
|
|
|
previousData[gun_index].targetCurrent = 0;
|
|
@@ -6328,7 +6338,7 @@ int main(void)
|
|
|
}
|
|
|
else
|
|
|
{}
|
|
|
-
|
|
|
+
|
|
|
setChargerMode(gun_index, SYS_MODE_TERMINATING);
|
|
|
DEBUG_INFO("Connector-%d charging duration(%d) already over max duration(%d) in second.\n", gun_index, ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargedDuration, (ShmSysConfigAndInfo->SysConfig.MaxChargingDuration*60));
|
|
|
}
|
|
@@ -6807,7 +6817,10 @@ int main(void)
|
|
|
setChargerMode(gun_index, SYS_MODE_AUTHORIZING);
|
|
|
}
|
|
|
else
|
|
|
+ {
|
|
|
DEBUG_INFO("It's not reserve user id.\n");
|
|
|
+ ShmCharger->gun_info[gun_index].resultAuthorization = DEFAULT_RFID;
|
|
|
+ }
|
|
|
|
|
|
ShmCharger->gun_info[gun_index].rfidReq = OFF;
|
|
|
}
|