Skip to content

Commit f3c8253

Browse files
committed
Code style fixes
***NO_CI***
1 parent 6e15bab commit f3c8253

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

nanoFirmwareFlasher.Library/Esp32Firmware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ internal async System.Threading.Tasks.Task<ExitCodes> DownloadAndExtractAsync(Es
8383
FlashPartitions = new Dictionary<int, string>
8484
{
8585
// bootloader goes to 0x1000, except for ESP32_C3/C6/H2/S3, which goes to 0x0
86-
{
86+
{
8787
deviceInfo.ChipType == "ESP32-C3"
8888
|| deviceInfo.ChipType == "ESP32-C6"
8989
|| deviceInfo.ChipType == "ESP32-H2"

nanoFirmwareFlasher.Library/EspTool.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public partial class EspTool
4343
/// </summary>
4444
private int _flashSize = -1;
4545

46-
46+
4747

4848
private bool connectPatternFound;
4949

@@ -300,7 +300,7 @@ private PSRamAvailability FindPSRamAvailable(
300300
// defautl to 2MB for ESP32 series
301301
var flashSize = 2 * 1024 * 1024;
302302

303-
if(_chipType == "esp32s2"
303+
if (_chipType == "esp32s2"
304304
|| _chipType == "esp32s3")
305305
{
306306
flashSize = 4 * 1024 * 1024;

0 commit comments

Comments
 (0)