Selaa lähdekoodia

[Improve][Modularization][Module_OcppBackend]

2021.08.18 / Folus Wen

Actions:
1. Remove printf() output debug information.

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 3 vuotta sitten
vanhempi
commit
1127169983

+ 8 - 10
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -4110,7 +4110,7 @@ int sendStatusNotificationRequest(int gun_index)
 	sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
 	strcat(buf,usec_buf);
 #endif
-	printf("%s",buf);
+	//printf("%s",buf);
 
 	ShmOCPP16Data->StatusNotification[gun_index].ConnectorId = (gun_index + 1);
 
@@ -9123,7 +9123,7 @@ void checkUploadLog(void)
 	/* Open the command for reading. */
 	fp = popen("find /mnt/ -type f -name \"*.zip\" |xargs ls -t", "r");
 	if (fp == NULL) {
-	   printf("Failed to run command\n" );
+	   DEBUG_WARN("Failed to run command\n" );
 	   exit(1);
 	}
 
@@ -9135,7 +9135,7 @@ void checkUploadLog(void)
 		if(i==0)
 		{
 			ftppathlen = strlen(fnamePlusPath);
-			printf("%s\n", fnamePlusPath);
+			DEBUG_INFO("%s\n", fnamePlusPath);
 			fnamePlusPath[ftppathlen]='\0';
 			break;
 		}
@@ -9161,7 +9161,7 @@ void checkUploadLog(void)
 		int len=ftppathlen-i;
 		if(fnamePlusPath[len]== 47) // '/' ascll code: 47
 		{
-			printf("compare '/' all right\n");
+			DEBUG_INFO("compare '/' all right\n");
 			break;
 		}
 		i=i+1;
@@ -9182,14 +9182,14 @@ void checkUploadLog(void)
 	FILE* fp1 = fopen(fnamePlusPath, "r");
 	if (fp1)
 	{
-		printf("testfuc : fnamePlusPath=%s exist.\n", fnamePlusPath);
+		DEBUG_INFO("testfuc : fnamePlusPath=%s exist.\n", fnamePlusPath);
 		// file exists
 		fclose(fp1);
 	}
 	else
 	{
 		// file doesn't exist
-		printf("testfuc : fnamePlusPath=%s not exist!\n", fnamePlusPath);
+		DEBUG_WARN("testfuc : fnamePlusPath=%s not exist!\n", fnamePlusPath);
 	}
 }
 
@@ -12694,18 +12694,16 @@ void handleDataTransferResponse(char *payload, int gun_index)
 	char *loc;
 	DEBUG_INFO("handleDataTransferResponse ...\n");
 	loc = strstr(payload, "status");
-	printf("loc=%s\n",loc);
+
 	c = 0;
 	while (loc[3+strlen("status")+c] != '\"')
 	{
 		sstr[c] = loc[3+strlen("status")+c];
-		//printf("i=%d sstr=%c\n",c, sstr[c]);
 		c++;
 	}
 	sstr[c] = '\0';
 
 	DEBUG_INFO(" DataTransferResponse=%s\n", sstr);
-
 }
 
 void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index)
@@ -16595,7 +16593,7 @@ int ftpDownLoadFile(char *location, char *user, char *password, int port, char *
 	//DEBUG_INFO("systemresult=%d\n",systemresult);
 	if(systemresult != 0)
 	{
-		printf("wget error!\n");
+		DEBUG_WARN("wget error!\n");
 		result = FALSE;
 	}
 	system("pkill ping");

+ 7 - 10
EVSE/Modularization/ocppph/MessageHandler.c

@@ -4126,7 +4126,7 @@ int sendStatusNotificationRequest(int gun_index)
 	sprintf(usec_buf,"%dZ",(int)tmnow.tv_usec);
 	strcat(buf,usec_buf);
 #endif
-	printf("%s",buf);
+	//printf("%s",buf);
 
 	ShmOCPP16DataPH->StatusNotification[gun_index].ConnectorId = (gun_index + 1);
 
@@ -9008,7 +9008,7 @@ void checkUploadLog(void)
 	/* Open the command for reading. */
 	fp = popen("find /mnt/ -type f -name \"*.zip\" |xargs ls -t", "r");
 	if (fp == NULL) {
-	   printf("Failed to run command\n" );
+	   DEBUG_WARN("Failed to run command\n" );
 	   exit(1);
 	}
 
@@ -9020,7 +9020,7 @@ void checkUploadLog(void)
 		if(i==0)
 		{
 			ftppathlen = strlen(fnamePlusPath);
-			printf("%s\n", fnamePlusPath);
+			DEBUG_INFO("%s\n", fnamePlusPath);
 			fnamePlusPath[ftppathlen]='\0';
 			break;
 		}
@@ -9046,7 +9046,7 @@ void checkUploadLog(void)
 		int len=ftppathlen-i;
 		if(fnamePlusPath[len]== 47) // '/' ascll code: 47
 		{
-			printf("compare '/' all right\n");
+			DEBUG_INFO("compare '/' all right\n");
 			break;
 		}
 		i=i+1;
@@ -9067,14 +9067,14 @@ void checkUploadLog(void)
 	FILE* fp1 = fopen(fnamePlusPath, "r");
 	if (fp1)
 	{
-		printf("testfuc : fnamePlusPath=%s exist.\n", fnamePlusPath);
+		DEBUG_INFO("testfuc : fnamePlusPath=%s exist.\n", fnamePlusPath);
 		// file exists
 		fclose(fp1);
 	}
 	else
 	{
 		// file doesn't exist
-		printf("testfuc : fnamePlusPath=%s not exist!\n", fnamePlusPath);
+		DEBUG_WARN("testfuc : fnamePlusPath=%s not exist!\n", fnamePlusPath);
 	}
 }
 
@@ -12582,18 +12582,15 @@ void handleDataTransferResponse(char *payload, int gun_index)
 	char *loc;
 	DEBUG_INFO("handleDataTransferResponse ...\n");
 	loc = strstr(payload, "status");
-	printf("loc=%s\n",loc);
 	c = 0;
 	while (loc[3+strlen("status")+c] != '\"')
 	{
 		sstr[c] = loc[3+strlen("status")+c];
-		//printf("i=%d sstr=%c\n",c, sstr[c]);
 		c++;
 	}
 	sstr[c] = '\0';
 
 	DEBUG_INFO(" DataTransferResponse=%s\n", sstr);
-
 }
 
 void handleDiagnosticsStatusNotificationResponse(char *payload, int gun_index)
@@ -16317,7 +16314,7 @@ int ftpDownLoadFile(char *location, char *user, char *password, int port, char *
 	//DEBUG_INFO("systemresult=%d\n",systemresult);
 	if(systemresult != 0)
 	{
-		printf("wget error!\n");
+		DEBUG_WARN("wget error!\n");
 		result = FALSE;
 	}
 	system("pkill ping");