From 1323a71823cbf54f02395252912df1377a61824e Mon Sep 17 00:00:00 2001 From: Scott Zhao Date: Tue, 5 Dec 2023 20:47:06 -0500 Subject: [PATCH] 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 --- ports/esp32/boards/UM_TINYPICO/deploy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ports/esp32/boards/UM_TINYPICO/deploy.md b/ports/esp32/boards/UM_TINYPICO/deploy.md index ed29478675..8c15d4d413 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 ```