From 86452fb1b81ba10a97eead30dbfa6b60eb80b678 Mon Sep 17 00:00:00 2001 From: anschrammh Date: Tue, 27 Sep 2022 07:27:00 +0200 Subject: [PATCH] Added a new config file used to store OTA settings --- sdCard_content/CONFIG/OTA.CFG | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sdCard_content/CONFIG/OTA.CFG diff --git a/sdCard_content/CONFIG/OTA.CFG b/sdCard_content/CONFIG/OTA.CFG new file mode 100644 index 0000000..b88d04f --- /dev/null +++ b/sdCard_content/CONFIG/OTA.CFG @@ -0,0 +1,11 @@ +#This config file stores the configuration needed for OTA updates +#If this file is not present or if there is an error at parsing time +#the OTA update feature will be disabled. +#If the OTA service does not require any auth key then set this field empty ie '' +#The blank new line at then end of the file is mendatory. Without it, the last parameter won't be read. + +ENABLED : 'true' +OTA_SERVER_ADDRESS : 'OTA server IP address' +OTA_SERVER_PORT : 80 +OTA_SERVICE_PATH : 'OTA service url path on the server' +OTA_SERVICE_AUTH_KEY : 'OTA service auth key'