From becf54e480b5d3ecdb0ec091a5cf0eb492ef04cf Mon Sep 17 00:00:00 2001 From: Alexander Entinger Date: Wed, 15 Jul 2020 12:00:16 +0200 Subject: [PATCH] Store the incoming file as UPDATE.BIN.LZSS - this way the SSU will know that the binary file has been LZSS compressed and uncompress before writing to flash --- src/utility/ota/OTAStorage_SSU.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utility/ota/OTAStorage_SSU.cpp b/src/utility/ota/OTAStorage_SSU.cpp index cb29af0b5..0a6a9d617 100644 --- a/src/utility/ota/OTAStorage_SSU.cpp +++ b/src/utility/ota/OTAStorage_SSU.cpp @@ -28,7 +28,7 @@ CONSTANTS ******************************************************************************/ -static char const SSU_UPDATE_FILENAME[] = "UPDATE.BIN"; +static char const SSU_UPDATE_FILENAME[] = "UPDATE.BIN.LZSS"; static char const SSU_CHECK_FILE_NAME[] = "UPDATE.OK"; /******************************************************************************