Skip to content

Commit

Permalink
Fix revision strings for ESP32-S3 (nanoframework#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
josesimoes authored Jul 14, 2023
1 parent a23db60 commit c89f1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nanoFirmwareFlasher.Library/Esp32Operations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public static async System.Threading.Tasks.Task<ExitCodes> UpdateFirmwareAsync(
string revisionSuffix;

// so far we are only offering a single ESP32_S3 build
if (esp32Device.ChipName.Contains("revision 0.0") || esp32Device.ChipName.Contains("revision 0.1") || esp32Device.ChipName.Contains("revision 0.2"))
if (esp32Device.ChipName.Contains("revision v0.0") || esp32Device.ChipName.Contains("revision v0.1") || esp32Device.ChipName.Contains("revision v0.2"))
{
revisionSuffix = "";
}
Expand Down

0 comments on commit c89f1d1

Please sign in to comment.