Ver Fonte

[Improve][AX80][rootfs]

2022.02.07 / Folus Wen

Actions:
1. Idtag copy from configuration key 'FreeVendIdtag' when start method is FREE_CHARGING.

Files:
1. As follow commit history

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

Hardware PWB P/N : XXXXXXX
Hardware Version : XXXXXXX
FolusWen há 3 anos atrás
pai
commit
d77a9f1778
1 ficheiros alterados com 22 adições e 1 exclusões
  1. 22 1
      EVSE/Projects/AX80/Apps/main.c

+ 22 - 1
EVSE/Projects/AX80/Apps/main.c

@@ -1354,6 +1354,26 @@ uint8_t ocpp_isAuthorizeRemoteStart()
 	return result;
 }
 
+uint8_t ocpp_get_freevend_idtag(uint8_t * userId)
+{
+	uint8_t result = NO;
+
+	if(ShmSysConfigAndInfo->SysInfo.OcppRunningVer == OCPP_RUNNING_VERSION_16)
+	{
+		strcpy((char*)userId, (char*)ShmOCPP16Data->ConfigurationTable.CoreProfile[FreeVendIdtag].ItemData);
+
+		result = YES;
+	}
+	else if(ShmSysConfigAndInfo->SysInfo.OcppRunningVer == OCPP_RUNNING_VERSION_20)
+	{
+		strcpy((char*)userId, (char*)ShmOCPP20Data->ControllerComponentVariable[ChargingStation_FreeVendIdtag].variableAttribute[0].value);
+
+		result = YES;
+	}
+
+	return result;
+}
+
 //======================================================
 // Check interface status
 //======================================================
@@ -5447,7 +5467,8 @@ int main(void)
 							{
 								ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartMethod = START_METHOD_FREE;
 								ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].StartIdType = IdTokenType_NoAuthorization;
-								memcpy(ShmSysConfigAndInfo->SysConfig.UserId, ShmSysConfigAndInfo->SysConfig.SerialNumber, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SerialNumber));
+								//memcpy(ShmSysConfigAndInfo->SysConfig.UserId, ShmSysConfigAndInfo->SysConfig.SerialNumber, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.SerialNumber));
+								ocpp_get_freevend_idtag(ShmSysConfigAndInfo->SysConfig.UserId);
 								setSpeaker(ON, SPEAKER_SHORT);
 								DEBUG_INFO("Start Method : FREE...\n");
 							}