summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Zhao <zhaomh1998@outlook.com>2023-12-05 20:47:06 -0500
committerDamien George <damien@micropython.org>2023-12-06 13:46:04 +1100
commit1323a71823cbf54f02395252912df1377a61824e (patch)
tree74c5df18b4e5c16ee71b7abe184e44d544116cba
parent78b3fe56897d029f2786256d83dd2fecacb34637 (diff)
esp32/boards/UM_TINYPICO: Fix typo in baudrate instructions.
The installation instructions for ESP32 TinyPICO board contained a typo that used a non-standard baud rate 912600 instead of 921600. This made the upload command fail on some Windows computers. Signed-off-by: Scott Zhao <zhaomh1998@outlook.com>
-rw-r--r--ports/esp32/boards/UM_TINYPICO/deploy.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/esp32/boards/UM_TINYPICO/deploy.md b/ports/esp32/boards/UM_TINYPICO/deploy.md
index ed2947867..8c15d4d41 100644
--- a/ports/esp32/boards/UM_TINYPICO/deploy.md
+++ b/ports/esp32/boards/UM_TINYPICO/deploy.md
@@ -31,16 +31,16 @@ From then on program the firmware starting at address 0x1000:
### Linux
```bash
-esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 912600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin
+esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 921600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin
```
### Mac
```bash
-esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART --baud 912600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin
+esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART --baud 921600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin
```
### Windows
Change (X) to whatever COM port is being used by the board
```bash
-esptool --chip esp32 --port COM(X) --baud 912600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin
+esptool --chip esp32 --port COM(X) --baud 921600 write_flash -z 0x1000 tinypico-micropython-firmware-version.bin
```