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>
This commit is contained in:
parent
78b3fe5689
commit
1323a71823
|
@ -31,16 +31,16 @@ From then on program the firmware starting at address 0x1000:
|
||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
```bash
|
```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
|
### Mac
|
||||||
```bash
|
```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
|
### Windows
|
||||||
Change (X) to whatever COM port is being used by the board
|
Change (X) to whatever COM port is being used by the board
|
||||||
```bash
|
```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
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue