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

Merge branch 'BYTON-GB' of https://git.phihong.com.tw:30000/System_Integration/CSU3_AM335x into BYTON-GB

Edward Lien 5 жил өмнө
parent
commit
4ee0329aff

+ 35 - 35
EVSE/Modularization/Module_4g.c

@@ -1060,17 +1060,6 @@ int main(void)
 
 		return 0;
 	}
-	else if(Load4gConfiguration() == FAIL)
-	{
-		DEBUG_ERROR("4G configuration value NG\n");
-		if(ShmStatusCodeData!=NULL)
-		{
-			ShmStatusCodeData->AlarmCode.AlarmEvents.bits.Telecom4GModuleCommFail=1;
-		}
-		sleep(5);
-
-		return 0;
-	}
 
 	for(;;)
 	{
@@ -1185,37 +1174,48 @@ int main(void)
 					}
 					else
 					{
-						#ifdef SystemLogMessage
-						DEBUG_WARN("PPP interface not found.\n");
-						#endif
-
-						memset(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress, 0 , sizeof ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress);
-
-						Dongle.cnt_pppFail++;
-						if(Dongle.cnt_pppFail > 5)
+						if(Load4gConfiguration() == FAIL)
+						{
+							DEBUG_ERROR("4G configuration value NG.\n");
+							if(ShmStatusCodeData!=NULL)
+							{
+								ShmStatusCodeData->AlarmCode.AlarmEvents.bits.Telecom4GModuleCommFail=1;
+							}
+						}
+						else
 						{
 							#ifdef SystemLogMessage
-							DEBUG_INFO("Dongle hardware reset...\n");
+							DEBUG_WARN("PPP interface not found.\n");
 							#endif
 
-							rstModule();
-						}
+							memset(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress, 0 , sizeof ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress);
 
-						system("killall 4GDetection");
-						sleep(2);
+							Dongle.cnt_pppFail++;
+							if(Dongle.cnt_pppFail > 5)
+							{
+								#ifdef SystemLogMessage
+								DEBUG_INFO("Dongle hardware reset...\n");
+								#endif
 
-						if(Dongle.Model == DONGLE_QUECTEL)
-						{
-							system("/root/ppp/4GDetection /dev/ttyUSB3 &");
-							printf("4GDetection for primary device.\n");
-						}
-						else if(Dongle.Model == DONGLE_UBLOX)
-						{
-							system("/root/ppp/4GDetection /dev/ttyACM0 &");
-							printf("4GDetection for second device.\n");
+								rstModule();
+							}
+
+							system("killall 4GDetection");
+							sleep(2);
+
+							if(Dongle.Model == DONGLE_QUECTEL)
+							{
+								system("/root/ppp/4GDetection /dev/ttyUSB3 &");
+								printf("4GDetection for primary device.\n");
+							}
+							else if(Dongle.Model == DONGLE_UBLOX)
+							{
+								system("/root/ppp/4GDetection /dev/ttyACM0 &");
+								printf("4GDetection for second device.\n");
+							}
+							else
+							{}
 						}
-						else
-						{}
 
 						sleep(CheckConnectionInterval);
 					}

+ 60 - 4
EVSE/Modularization/Module_ProduceUtils.c

@@ -33,6 +33,8 @@
 #define ARRAY_SIZE(A)			(sizeof(A) / sizeof(A[0]))
 #define PASS					1
 #define FAIL					0
+#define ON						1
+#define OFF						0
 #define MtdBlockSize			0x600000
 
 #define LISTEN_PORT				8234
@@ -42,7 +44,7 @@
 
 struct SysConfigAndInfo			*ShmSysConfigAndInfo;
 struct StatusCodeData 			*ShmStatusCodeData;
-
+struct OCPP16Data				*ShmOCPP16Data;
 
 int StoreLogMsg(const char *fmt, ...)
 {
@@ -126,6 +128,24 @@ int InitShareMemory()
 	else
 	{}
 
+	//creat ShmOCPP16Data
+	if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data),  0777)) < 0)
+	{
+		#ifdef SystemLogMessage
+		DEBUG_ERROR("shmget ShmOCPP16Data NG");
+		#endif
+		result = FAIL;
+	}
+	else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
+	{
+		#ifdef SystemLogMessage
+		DEBUG_ERROR("shmat ShmOCPP16Data NG");
+		#endif
+		result = FAIL;
+	}
+	else
+	{}
+
    	return result;
 }
 
@@ -488,8 +508,25 @@ int main(void)
 						}
 						outBuffer[20] = chksum;
 						break;
-					case CMD_QUERY_PRESENT_OUTPUTCURRENT:
+					case CMD_QUERY_4G_REVISION:
+						DEBUG_INFO("Query 4G module revision: %s\r\n", (char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer);
+						tx_size = 7 + strlen((char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer);
+						outBuffer[0] = 0xaa;
+						outBuffer[1] = PROTOCOL_ADDR;
+						outBuffer[2] = inputBuffer[1];
+						outBuffer[3] = CMD_QUERY_4G_REVISION;
+						outBuffer[4] = strlen((char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer)&0xff;
+						outBuffer[5] = (strlen((char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer)>>0x08) & 0xff;
+						for(uint8_t idx=0;idx<strlen((char*)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer);idx++)
+						{
+							outBuffer[6+idx] = (char)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSoftwareVer[idx];
+						}
 
+						for(uint16_t idx=0;idx<(outBuffer[4] | (outBuffer[5]<<8));idx++)
+						{
+						  chksum ^= outBuffer[6 + idx];
+						}
+						outBuffer[6+(outBuffer[4] | (outBuffer[5]<<8))] = chksum;
 						break;
 					case CMD_QUERY_AC_STATUS:
 						break;
@@ -522,7 +559,7 @@ int main(void)
 						outBuffer[3] = CMD_CONFIG_SERIAL_NUMBER;
 						outBuffer[4] = 0x01;
 						outBuffer[5] = 0x00;
-						outBuffer[6] = (StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig)!=0x01?0x00:0x01);
+						outBuffer[6] = 0x01;
 						outBuffer[7] = outBuffer[6];
 
 						DEBUG_INFO("Config serial number: %s\r\n", (char*)ShmSysConfigAndInfo->SysConfig.SerialNumber);
@@ -547,7 +584,7 @@ int main(void)
 						outBuffer[3] = CMD_CONFIG_MODEL_NAME;
 						outBuffer[4] = 0x01;
 						outBuffer[5] = 0x00;
-						outBuffer[6] = (StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig)!=0x01?0x00:0x01);
+						outBuffer[6] = 0x01;
 						outBuffer[7] = outBuffer[6];
 						DEBUG_INFO("Config model name: %s\r\n", (char*)ShmSysConfigAndInfo->SysConfig.ModelName);
 						break;
@@ -587,6 +624,25 @@ int main(void)
 					case CMD_CONFIG_MCU_RESET_REQUEST:
 						break;
 					case CMD_CONFIG_BREATHE_LED_TIMING:
+						break;
+					case CMD_CONFIG_SAVE_CONFIGURATION:
+						tx_size = 8;
+						outBuffer[0] = 0xaa;
+						outBuffer[1] = PROTOCOL_ADDR;
+						outBuffer[2] =  inputBuffer[1];
+						outBuffer[3] = CMD_CONFIG_SAVE_CONFIGURATION;
+						outBuffer[4] = 0x01;
+						outBuffer[5] = 0x00;
+						outBuffer[6] = (StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig)!=0x01?0x00:0x01);
+						outBuffer[7] = outBuffer[6];
+						DEBUG_INFO("Save configuration\r\n");
+
+						if((outBuffer[6] == PASS))
+						{
+							sprintf((char*)ShmOCPP16Data->Reset.Type, "Soft");
+							ShmOCPP16Data->MsMsg.bits.ResetReq = ON;
+						}
+
 						break;
 					case CMD_UPDATE_START:
 						break;

+ 2 - 0
EVSE/Modularization/Module_ProduceUtils.h

@@ -38,6 +38,7 @@ enum MESSAGE_COMMAND
 	CMD_QUERY_BLE_CENTRAL_ID = 0x2B,
 	CMD_QUERY_POWER_CONSUMPTION = 0x2C,
 	CMD_QUERY_GUN_PLUGIN_TIMES = 0x2D,
+	CMD_QUERY_4G_REVISION = 0x31,
 
 	CMD_CONFIG_FAN_SPEED = 0x81,
 	CMD_CONFIG_SERIAL_NUMBER = 0x82,
@@ -50,6 +51,7 @@ enum MESSAGE_COMMAND
 	CMD_CONFIG_MCU_MODE = 0x8A,
 	CMD_CONFIG_MCU_RESET_REQUEST = 0x8C,
 	CMD_CONFIG_BREATHE_LED_TIMING = 0x8D,
+	CMD_CONFIG_SAVE_CONFIGURATION = 0x91,
 
 	CMD_UPDATE_START = 0xe0,
 	CMD_UPDATE_ABOARD = 0xe1,

+ 9 - 1
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -39,6 +39,7 @@
 
 
 
+
 #define PASS				1
 #define FAIL				-1
 
@@ -11265,6 +11266,7 @@ void handleError(char *id, char *errorCode, char *errorDescription,char *payload
 //===============================================
 int initialConfigurationTable(void)
 {
+	//clock_t start_t, end_t, total_t;
 	FILE *fp;
 	FILE *outfile;
 	char str[200]={0};
@@ -11272,6 +11274,8 @@ int initialConfigurationTable(void)
 	int c = 0;
 	char *loc;
 	printf("initialConfigurationTable  \n");
+	//start_t = clock();
+	//printf("Starting of the program, start_t = %ld\n", start_t);
 	memset(&(ShmOCPP16Data->ConfigurationTable), 0, sizeof(struct OCPP16ConfigurationTable) );
 
 
@@ -11411,7 +11415,7 @@ int initialConfigurationTable(void)
 		// MinimumStatusDuration
 		ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemAccessibility = 1;
 		strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemName, "MinimumStatusDuration");
-		strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "0" );
+		strcpy((char *)ShmOCPP16Data->ConfigurationTable.CoreProfile[MinimumStatusDuration].ItemData, "120" );
 		server_cycle_Status = 120; //StatusNotification cycle
 		fprintf(outfile,"{\"key\":\"%s\",\"readonly\":%s,\"value\":\"%s\"}\n","MinimumStatusDuration", "false", "120");
 
@@ -11996,6 +12000,10 @@ int initialConfigurationTable(void)
 
 	}
 
+	//end_t = clock();
+	//printf("End of the big loop, end_t = %ld\n", end_t);
+	//total_t = (double)(end_t - start_t) / CLOCKS_PER_SEC;
+	//printf("Total time taken by CPU: %f\n", total_t  );
 
 	return 0;
 }

+ 43 - 43
EVSE/Modularization/ocppfiles/Module_OcppBackend.c

@@ -33,11 +33,12 @@
 #include    	"MessageHandler.h"
 #include	"sqlite3.h"
 
+
+
 #ifndef SPEC_LATEST_SUPPORTED
 #define SPEC_LATEST_SUPPORTED 13
 #endif
 
-
 #define Debug
 //#define ARRAY_SIZE(A)		(sizeof(A) / sizeof(A[0]))
 #define PASS				1
@@ -52,7 +53,6 @@ pthread_t pid;
 extern int server_sign;
 
 extern void CheckSystemValue(void);
-//extern int TransactionMessageAttemptsGet(void);
 extern int FirstHeartBeatResponse(void);
 extern void OCPP_get_TableAuthlocalAllData(void);
 extern int TransactionMessageAttemptsGet(void);
@@ -89,10 +89,6 @@ struct StartTime
 	unsigned int bootNotification;
 }startTime;
 
-#if 0
-unsigned char *SendBuffer;
-int SendBufLen=(1024*4);//(1024*3);
-#endif
 int SendBufLen=(1024*4);//(1024*3);
 unsigned char SendBuffer[1024*4]={0};
 static int ConnectionEstablished=0;
@@ -101,6 +97,9 @@ static int TransactionQueueInterval = 10;//3;
 static int TransactionQueueNum = 0;
 static int OfflineTransactionQueueNum = 0;  // Number of offline transactions
 static int  OfflineTransaction = 0;
+static int IsUsing = FALSE;
+
+
 int defaultWaitingTime = 10; //10 second
 char OcppPath[160]={0};
 char OcppProtocol[10]={0},OcppHost[50]={0}, OcppTempPath[50]={0};
@@ -714,7 +713,7 @@ void* ConnectWsServer(void* data)  //int ConnectWsServer()
 
 	memset(&ContextInfo, 0, sizeof(struct lws_context_creation_info));
 
-	if((GetOcppServerURL()==0) || (GetOcppPort() == 0) || (GetOcppPath()==0) )
+	if((GetOcppServerURL()==0) || (GetOcppPort() == 0) || (GetOcppPath()==0))
 	{
 		//result = FAIL;
 		DEBUG_ERROR("OCPP URL is NULL or OCPP Port is zero or  OCPP Path is NULL\n");
@@ -865,24 +864,6 @@ if(fp == NULL) {
 	return FALSE;
 }
 
-#if 0
-if(fgetc(fp)==EOF)
-{
-	//DEBUG_INFO("It is end of file");
-	fclose(fp);
-	memset(rmFileCmd, 0, sizeof rmFileCmd);
-	if((access("/Storage/OCPP/TransactionRelatedQueue",F_OK))!=-1)
-	{
-		sprintf(rmFileCmd,"rm -f %s","/Storage/OCPP/TransactionRelatedQueue");
-		system(rmFileCmd);
-	}
-
-	result = FALSE;
-
-	return result;
-}
-#endif
-
 if( fgets (str, 1200, fp)!=NULL ) {
 	/* writing content to stdout */
 	//DEBUG_INFO("str=%s",str);
@@ -1525,25 +1506,44 @@ void CheckTransactionPacket(char *uuid)
 
 }
 
-/* type: 0 (showqueue ); type: 1(showfront); type: 2(delq) type: 3 (sentqueue)  type: 4 (addq) type: 5(store queue to /Storage/OCPP/ )*/
+//---- type: 0 (showqueue ); type: 1(showfront); type: 2(delq) type: 3 (sentqueue)  type: 4 (addq) type: 5(store queue to /Storage/OCPP/ ) ---//
 int queue_operation(int type, char *frontUUID, char *frontData)
 {
-
-	pthread_mutex_unlock(&lock_sentData);
-	pthread_mutex_lock(&lock_sentData);
 	int result=0;
-	if(type == 0)   				// show items in queue
-			result = showqueue();
-	else if(type  == 1)   			// show first item
-			result = showfront(frontUUID, frontData);
-	else if(type == 2)   			// delete item
-			result = delq();
-	else if(type == 3)          	// sent items in queue
-			result = sentqueue();
-	else if(type == 4)         		// add items to the queue
-		   result = addq(frontUUID, frontData);
-
-	pthread_mutex_unlock(&lock_sentData);
+	while(1)
+	{
+		if (!IsUsing )
+		{
+			IsUsing = TRUE;
+			//pthread_mutex_unlock(&lock_sentData);
+			//pthread_mutex_lock(&lock_sentData);
+
+			if(type == 0)   				// show items in queue
+			{
+				result = showqueue();
+			}
+			else if(type  == 1)   			// show first item
+			{
+				result = showfront(frontUUID, frontData);
+			}
+			else if(type == 2)   			// delete item
+			{
+				result = delq();
+			}
+			else if(type == 3)          	// sent items in queue
+			{
+				result = sentqueue();
+			}
+			else if(type == 4)         		// add items to the queue
+			{
+				result = addq(frontUUID, frontData);
+			}
+
+			//pthread_mutex_unlock(&lock_sentData);
+			IsUsing = FALSE;
+			break;
+		}
+	}
 
 	return result;
 }
@@ -1722,10 +1722,9 @@ int main(void)
 
 	for(;;)
 	{
-		while(ConnectionEstablished==0)
+		while((ConnectionEstablished==0)&&(GetInternetConn() == 1)) // Check InternetConn 0: disconnected, 1: connected
 		{
 			SetOcppConnStatus(FALSE);
-
 			if((time((time_t*)NULL)-startTime.connect)>=60)
 			{
 				#ifdef Debug
@@ -1739,6 +1738,7 @@ int main(void)
 			// Check System Value, process offline Transaction
 			CheckSystemValue();
 			lws_service(context, 10000);//timeout_ms
+			usleep(5000);
 		}
 
 		if(( (BootNotificationInterval != 0  && ((time((time_t*)NULL)-startTime.bootNotification)>=BootNotificationInterval) )  || ((time((time_t*)NULL)-startTime.bootNotification)>=defaultWaitingTime) ) && ((server_sign == FALSE)/*|| (server_pending == TRUE)*/))

BIN
EVSE/Projects/AW-Regular/Images/FactoryDefaultConfig.bin


BIN
EVSE/Projects/AW-Regular/Images/ramdisk.gz