You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,9 @@ When using nanoff you can add `--target MY_TARGET_NAME_HERE` to use a specific i
97
97
```console
98
98
No target name was provided! Using 'ESP32_REV0' based on the device characteristics.
99
99
```
100
-
100
+
101
+
>Note: Please note that for ESP32-S2 targets is not possible to safely determine what's the best image to use. For this reason it's mandatory providing the appropriate target name with `--target MY_TARGET_NAME_HERE`.
102
+
101
103
Some ESP32 boards have issues entering bootloader mode. This can be usually overcome by holding down the BOOT/FLASH button in the board.
102
104
In case nanoff detects this situation the following warning is shown:
103
105
@@ -115,13 +117,13 @@ To update the firmware of an ESP32 target connected to COM31, to the latest avai
/// <param name="noStub">if true --no-stub will be added; the chip_id, read_mac and flash_id commands can be quicker executes without uploading the stub program to the chip</param>
512
+
/// <param name="useStandardBaudRate">If <see langword="true"/> the tool will use the standard baud rate to connect to the chip.</param>
478
513
/// <param name="hardResetAfterCommand">if true the chip will execute a hard reset via DTR signal</param>
479
514
/// <param name="progressTestChar">If not null: After each of this char a progress message will be printed out</param>
480
515
/// <param name="messages">StandardOutput and StandardError messages that the esptool prints out</param>
@@ -487,6 +522,9 @@ private bool RunEspTool(
487
522
char?progressTestChar,
488
523
outstringmessages)
489
524
{
525
+
// reset message
526
+
_esptoolMessage=string.Empty;
527
+
490
528
// create the process start info
491
529
// if we can directly talk to the ROM bootloader without a stub program use the --no-stub option
492
530
// --nostub requires to not change the baudrate (ROM doesn't support changing baud rate. Keeping initial baud rate 115200)
0 commit comments