|
@@ -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");
|