|
@@ -4995,19 +4995,22 @@ int main(void)
|
|
|
}
|
|
|
|
|
|
// LED status in Idle mode
|
|
|
- if(ShmSysConfigAndInfo->SysInfo.OcppConnStatus == ON)
|
|
|
+ if(!ShmCharger->isAuthrizing && (strcmp((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") == 0))
|
|
|
{
|
|
|
- if(ShmCharger->gun_info[gun_index].isSleepOn == OFF)
|
|
|
- setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_CONNECTED);
|
|
|
- else
|
|
|
- setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_CONNECTED_SLEEP);
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- if(ShmCharger->gun_info[gun_index].isSleepOn == OFF)
|
|
|
- setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_DISCONNECTED);
|
|
|
+ if(ShmSysConfigAndInfo->SysInfo.OcppConnStatus == ON)
|
|
|
+ {
|
|
|
+ if(ShmCharger->gun_info[gun_index].isSleepOn == OFF)
|
|
|
+ setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_CONNECTED);
|
|
|
+ else
|
|
|
+ setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_CONNECTED_SLEEP);
|
|
|
+ }
|
|
|
else
|
|
|
- setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_DISCONNECTED_SLEEP);
|
|
|
+ {
|
|
|
+ if(ShmCharger->gun_info[gun_index].isSleepOn == OFF)
|
|
|
+ setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_DISCONNECTED);
|
|
|
+ else
|
|
|
+ setLedMotion(gun_index,LED_ACTION_IDLE_BACKEND_DISCONNECTED_SLEEP);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
if(((ShmSysConfigAndInfo->SysConfig.AuthorisationMode == AUTH_MODE_DISABLE) && (ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState == CP_STATE_B)) ||
|