Skip to content

Commit b1e3a7a

Browse files
authored
Fix output for progress messages with ESP32 operations (#243)
***NO_CI***
1 parent fc20072 commit b1e3a7a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

nanoFirmwareFlasher.Library/Esp32Operations.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,6 @@ public static async System.Threading.Tasks.Task<ExitCodes> UpdateFirmwareAsync(
445445
{
446446
if (verbosity >= VerbosityLevel.Normal)
447447
{
448-
Console.Write($"Flashing firmware...");
449-
450448
Console.ForegroundColor = ConsoleColor.Green;
451449
Console.WriteLine("OK".PadRight(110));
452450

nanoFirmwareFlasher.Library/EspTool.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public Esp32DeviceInfo GetDeviceDetails(
150150
if (Verbosity >= VerbosityLevel.Normal)
151151
{
152152
Console.ForegroundColor = ConsoleColor.White;
153-
Console.WriteLine($"Reading details from chip...");
153+
Console.Write($"Reading details from chip...");
154154
}
155155

156156
// execute flash_id command and parse the result

0 commit comments

Comments
 (0)