Эх сурвалжийг харах

[Bugfix][Modularization][Module_OcppBackend]

2021.03.29 / Folus Wen

Actions:
1. ShmOCPP16Data->StopTransaction[gun_index].TransactionData clear memory code fix.
2. ConfigurationVersion key value store method fix.

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 жил өмнө
parent
commit
1707484e59

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

@@ -4097,7 +4097,7 @@ int sendStopTransactionRequest(int gun_index)
 	random_uuid(guid);
 
 	/***********************************transactionData******************************************************/
-	memset(ShmOCPP16Data->StopTransaction[gun_index].TransactionData, 0, sizeof(sizeof(struct StructMeterValue)));
+	memset(ShmOCPP16Data->StopTransaction[gun_index].TransactionData, 0, sizeof(struct StructMeterValue));
 	strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf);
 
 	//=================================
@@ -12703,6 +12703,15 @@ void StoreConfigurationTable(void)
 
 	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","CustomIdleFeeAfterStop", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[CustomIdleFeeAfterStop].ItemData);
 
+	// ConfigurationVersion
+	/*
+	ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemAccessibility = 1;
+	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemName, "ConfigurationVersion");
+	strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData, "1" );
+	*/
+
+	fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","ConfigurationVersion", "false", (char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[ConfigurationVersion].ItemData);
+
 	//* Local Auth List Management Profile*/
 	//LocalAuthListEnabled
 	/*
@@ -14359,13 +14368,13 @@ int setKeyValue(char *key, char *value)
     	if(ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemAccessibility == 1)
     	{
     		sprintf((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[StopTxnSampledData].ItemData, "%s", value );
+
     		isSuccess = ConfigurationStatus_Accepted;
     	}
     	else
     	{
     	    isSuccess = ConfigurationStatus_Rejected;
     	}
-
     }
 
     if(strcmp(key, "StopTxnSampledDataMaxLength") == 0)
@@ -15802,7 +15811,7 @@ void storeTempStopTransaction(int gun_index)
 	random_uuid(guid);
 
 	/***********************************transactionData******************************************************/
-	memset(ShmOCPP16Data->StopTransaction[gun_index].TransactionData, 0, sizeof(sizeof(struct StructMeterValue)));
+	memset(ShmOCPP16Data->StopTransaction[gun_index].TransactionData, 0, sizeof(struct StructMeterValue));
 	strcpy((char *)ShmOCPP16Data->StopTransaction[gun_index].TransactionData[0].TimeStamp, buf);
 
 	//=================================