From ad20d3b915bf662282f6dc84ad3dec682f21f99b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Sim=C3=B5es?= Date: Fri, 14 Jul 2023 15:49:42 +0100 Subject: [PATCH] Fix check of ESP32-S3 version --- nanoFirmwareFlasher.Library/Esp32Operations.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nanoFirmwareFlasher.Library/Esp32Operations.cs b/nanoFirmwareFlasher.Library/Esp32Operations.cs index 70820ddd..7bc5ae17 100644 --- a/nanoFirmwareFlasher.Library/Esp32Operations.cs +++ b/nanoFirmwareFlasher.Library/Esp32Operations.cs @@ -278,13 +278,14 @@ public static async System.Threading.Tasks.Task UpdateFirmwareAsync( { // version schema for ESP32-S3 //Previously Used Schemes | Previous Identification | vM.X + // V000 | n/a | v0.0 // V001 | 0 (bug in logs) | v0.1 // V002 | n/a | v0.2 string revisionSuffix; // so far we are only offering a single ESP32_S3 build - if (esp32Device.ChipName.Contains("revision 0.1") || esp32Device.ChipName.Contains("revision 0.2")) + if (esp32Device.ChipName.Contains("revision 0.0") || esp32Device.ChipName.Contains("revision 0.1") || esp32Device.ChipName.Contains("revision 0.2")) { revisionSuffix = ""; }