Просмотр исходного кода

2020.06.09 / Folus Wen

Actions:
1. Disable tmate function when system boot up.
2. Create EVSE/rootfs/usr/bin/run_tmate_restart.sh script.
3. EVSE/Modularization/ocppfiles/MessageHandler.c start tmate when receive GetDiagnosticsRequest or DataTransfer with ID_FirmwareVersion message.

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 лет назад
Родитель
Сommit
41161e72e6

+ 2 - 2
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -7074,7 +7074,7 @@ int handleDataTransferRequest(char *uuid, char *payload)
 		if(strstr(tempmessageId, "ID_FirmwareVersion") != NULL)
 		{
 			// Send all moudle firmware version on EVSE
-			system("pkill tmate");
+			system("/usr/bin/run_tmate_restart.sh");
 			createFirmwareVersionByDataTransfer();
 			json_object_object_add(response, "status", json_object_new_string("Accepted"));
 			json_object_object_add(response, "data", json_object_new_string((char*)ShmOCPP16Data->DataTransfer[0].Data));
@@ -7300,6 +7300,7 @@ int handleGetDiagnosticsRequest(char *uuid, char *payload)
 	time_t CurrentTime;
 	struct tm *tm;
 
+	system("/usr/bin/run_tmate_restart.sh");
 	pthread_t th_Status;
 	CurrentTime = time(NULL);
 	tm = localtime(&CurrentTime);
@@ -7309,7 +7310,6 @@ int handleGetDiagnosticsRequest(char *uuid, char *payload)
 	sprintf(cmdBuf, "mv /mnt/log.zip /mnt/%s", fName);
 	system(cmdBuf);
 	checkUploadLog();
-
 	pthread_create(&th_Status, NULL, GetDiagnosticsProcess, stringtrimspace(payload));
 
 	return result;

+ 6 - 0
EVSE/rootfs/usr/bin/run_tmate_restart.sh

@@ -0,0 +1,6 @@
+#!/bin/sh
+
+/usr/bin/pkill tmate
+/bin/sleep 1
+/usr/bin/check_tmate.sh
+

+ 1 - 1
EVSE/rootfs/var/spool/cron/crontabs/root

@@ -21,5 +21,5 @@
 #
 # m h  dom mon dow   command
 0 0 * * * cat "" > /Storage/SystemLog/check_tmate.log
-* * * * * /usr/bin/check_tmate.sh >> /Storage/SystemLog/check_tmate.log 2>&1
+#* * * * * /usr/bin/check_tmate.sh >> /Storage/SystemLog/check_tmate.log 2>&1
 0 * * * * /sbin/logrotate /etc/logrotate.conf