We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c204693 commit 4356c36Copy full SHA for 4356c36
ESPTool/Example.cs
@@ -40,7 +40,7 @@ public async Task ReadFlashAsync(CancellationToken token = default)
40
var softloader = await toolbox.StartSoftloaderAsync(communicator, loader, chipType);
41
await toolbox.ChangeBaudAsync(communicator, softloader, 921600);
42
43
- var readTool = toolbox.CreateReadFlashTool(softloader, communicator, chipType);
+ var readTool = toolbox.CreateReadFlashTool(communicator, softloader, chipType);
44
var progress = new Progress<float>(p => Debug.WriteLine($"Read progress: {p:P0}"));
45
46
// Option 1: Read directly to a file using a FileStream
0 commit comments