Skip to content

Commit 01ddab2

Browse files
authored
Fix output message on ESP32 sanity check (#71)
***NO_CI***
1 parent 73b3746 commit 01ddab2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nanoFirmwareFlasher/Esp32Operations.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ internal static async System.Threading.Tasks.Task<ExitCodes> UpdateFirmwareAsync
127127
// trying to use a target that's not compatible with the connected device
128128
Console.ForegroundColor = ConsoleColor.Yellow;
129129
Console.WriteLine("");
130-
Console.WriteLine("************************************** WARNING *************************************");
130+
Console.WriteLine("***************************************** WARNING ****************************************");
131131
Console.WriteLine("Seems that you're about to use a firmware image for a revision 3 device, but the");
132132
Console.WriteLine($"connected device is {esp32Device.ChipName}. You should use the 'ESP32_WROOM_32' instead.");
133-
Console.WriteLine("************************************************************************************");
133+
Console.WriteLine("******************************************************************************************");
134134
Console.WriteLine("");
135135
}
136136

@@ -140,10 +140,10 @@ internal static async System.Threading.Tasks.Task<ExitCodes> UpdateFirmwareAsync
140140
// trying to use a traget with BT and the connected device doens't have support for it
141141
Console.ForegroundColor = ConsoleColor.Yellow;
142142
Console.WriteLine("");
143-
Console.WriteLine("************************************** WARNING *************************************");
143+
Console.WriteLine("******************************************* WARNING ********************************************");
144144
Console.WriteLine("Seems that you're about to use a firmware image that includes Bluetooth, but the");
145-
Console.WriteLine($"connected device does have support for it. You should use a target without BLE in the name");
146-
Console.WriteLine("************************************************************************************");
145+
Console.WriteLine($"connected device does not have support for it. You should use a target without BLE in the name.");
146+
Console.WriteLine("************************************************************************************************");
147147
Console.WriteLine("");
148148
}
149149

0 commit comments

Comments
 (0)