Przeglądaj źródła

2020.07.14 / Folus Wen

Actions:
1. EVSE/rootfs/usr/bin/iperf add network testing tools.
2. EVSE/rootfs/usr/bin/mlanutl add U-Blox WiFi config tools.
3. EVSE/rootfs/root/u-blox_tools/ed_mac_ctrl_V1_8801.conf add U-Blox WiFi tunning config file.
4. EVSE/Modularization/ocppfiles/MessageHandler.c update ShmOCPP16Data statusNotification status when charger in OFF line.

Files:
1. As follow commit history

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

Hardware PWB P/N : XXXXXXX
Hardware Version : XXXXXXX
FolusWen 4 lat temu
rodzic
commit
be0ee648a3

+ 12 - 5
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -2532,7 +2532,7 @@ void CheckSystemValue(void)
 
 
 	if(isWebsocketSendable &&
-	   ((server_sign == TRUE) && ((statusModeChage[gun_index] == TRUE) || ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index))) || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1) && ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30)))) )
+	   (((statusModeChage[gun_index] == TRUE) || ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > (server_cycle_Status + (GunStatusInterval*gun_index))) || ((cpinitateMsg.bits[gun_index].StatusNotificationReq == 1) && ((time((time_t*)NULL)-clientTime.StatusNotification[gun_index]) > 30)))) )
 	{
 		if(SystemInitial > 0)
 			SystemInitial -= 1;
@@ -3617,13 +3617,20 @@ S_FAULT                 =12
 					, ShmOCPP16Data->StatusNotification[gun_index].VendorId
 					, ShmOCPP16Data->StatusNotification[gun_index].VendorErrorCode);
 
-	LWS_Send(message);
+	if((server_sign == TRUE))
+	{
+		LWS_Send(message);
 
-	sprintf(tempdata, "StatusNotification,%d", (gun_index));
+		sprintf(tempdata, "StatusNotification,%d", (gun_index));
 
-	if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
+		if(hashmap_operation(0, guid, tempdata) == 1)//if(hashmap_operation(0,NULL/*hashMap*/, guid, mapItem, tempdata/*(void**)(&mapItem)*//*(void**)(&mapItem)*/) ==  MAP_OK/*hashmap_put(hashMap, mapItem->key_string, mapItem) == MAP_OK*/)
+		{
+			//DEBUG_ERROR("statusNotification mapitem pass");
+			result = PASS;
+		}
+	}
+	else
 	{
-		//DEBUG_ERROR("statusNotification mapitem pass");
 		result = PASS;
 	}
 

+ 16 - 0
EVSE/rootfs/root/u-blox_tools/ed_mac_ctrl_V1_8801.conf

@@ -0,0 +1,16 @@
+#       File : ed_mac_ctrl_V1_8801.conf
+#
+#   ed_mac_ctrl is used for 88W8777, 88W8801
+#   ./mlanutl mlan0 hostcmd config/ed_mac_ctrl_V1_8801.conf ed_mac_ctrl
+#
+#
+## Set Energy Detect Threshold for EU Adaptivity test
+
+ed_mac_ctrl={
+        CmdCode=0x0124          #Command code, DO NOT change this line
+        Enable:2=0x1            # 0       - disable EU adaptivity
+                                # 1       - enable EU adaptivity
+
+        Offset:2=0x1b           # 0       - Default Energy Detect threshold
+                                #offset value range: 0x80 to 0x7F
+}

BIN
EVSE/rootfs/usr/bin/iperf


BIN
EVSE/rootfs/usr/bin/mlanutl