It should be highlighted here that the bootloader must be addressed below the firmware. I have found that all of the gui tools that do updates, do not provide for the option to change the address for updates.

master
Jamie Meredith 2020-12-04 18:37:09 -07:00
rodzic 891762df94
commit fc4bbeab3a
1 zmienionych plików z 2 dodań i 2 usunięć

@ -12,9 +12,9 @@ esptool.py write_flash 0x0 ./WLED_XXX.bin
#### ESP32
(you will need to have a bootloader installed)
```
esptool.py write_flash 0x10000 ./WLED_XXX.bin
esptool.py write_flash 0x10000 ./WLED_XXX.bin
```
If the ESP32 is new, you will need to flash the bootloader first. This is not required if you had an Arduino sketch running on it before. You can find the bootloader file in the assets for the [0.9.1 release](https://github.com/Aircoookie/WLED/releases/tag/v0.9.1).
If the ESP32 is new, you will need to flash the bootloader first. This bootloader should be addressed to 0x00000 and the firmware to 0x10000. This is not required if you had an Arduino sketch running on it before. You can find the bootloader file in the assets for the [0.9.1 release](https://github.com/Aircoookie/WLED/releases/tag/v0.9.1).
```
esptool.py write_flash 0x0 ./esp32_bootloader.bin
```