Browse Source

[Improve][AW-CCS][Main]

2021.09.07 / Folus Wen

Actions:
1. Backend connection status LED only display when URL is not empty and non-Authorization.

Files:
1. As follow commit history

Image version: D0.55.XX.XXXX.XX
Image checksum: XXXXXXXX

Hardware PWB P/N : XXXXXXX
Hardware Version : XXXXXXX
FolusWen 3 years ago
parent
commit
8fba36bc1d
2 changed files with 26 additions and 11 deletions
  1. 12 0
      EVSE/Modularization/ocpp20/MessageHandler.c
  2. 14 11
      EVSE/Projects/AW-CCS/Apps/main.c

+ 12 - 0
EVSE/Modularization/ocpp20/MessageHandler.c

@@ -17379,6 +17379,18 @@ void hanldeTransactionEvenResponse(char *payload, int gun_index)
 					sprintf((char*)ShmOCPP20Data->TransactionEvent[gun_index].Response_idTokenInfo.groupIdToken.type, json_object_get_string(json_object_object_get(json_object_object_get(json_object_object_get(TransactionEven,"idTokenInfo"), "groupIdToken"), "type")));
 			}
 		}
+
+		if(json_object_object_get(TransactionEven,"updatedPersonalMessage") != NULL)
+		{
+			if(json_object_object_get(json_object_object_get(TransactionEven,"updatedPersonalMessage"), "format") != NULL)
+				sprintf((char*)ShmOCPP20Data->TransactionEvent[gun_index].Response_updatedPersonalMessage.format, json_object_get_string(json_object_object_get(json_object_object_get(TransactionEven,"updatedPersonalMessage"), "format")));
+
+			if(json_object_object_get(json_object_object_get(TransactionEven,"updatedPersonalMessage"), "language") != NULL)
+				sprintf((char*)ShmOCPP20Data->TransactionEvent[gun_index].Response_updatedPersonalMessage.language, json_object_get_string(json_object_object_get(json_object_object_get(TransactionEven,"updatedPersonalMessage"), "language")));
+
+			if(json_object_object_get(json_object_object_get(TransactionEven,"updatedPersonalMessage"), "content") != NULL)
+				sprintf((char*)ShmOCPP20Data->TransactionEvent[gun_index].Response_updatedPersonalMessage.content, json_object_get_string(json_object_object_get(json_object_object_get(TransactionEven,"updatedPersonalMessage"), "content")));
+		}
 	}
 	json_object_put(TransactionEven);
 

+ 14 - 11
EVSE/Projects/AW-CCS/Apps/main.c

@@ -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)) ||