We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b43fc3c commit 41b1dabCopy full SHA for 41b1dab
README.md
@@ -30,7 +30,12 @@ Build application (e.g. hello_world):
30
idf.py build
31
```
32
33
-Flash applications to ota_0:
+Flash applications to ota_0 using [espflash](https://github.com/esp-rs/espflash/blob/main/espflash/README.md#installation):
34
+```
35
+espflash write-bin 0xD20000 .\build\app.bin
36
37
+
38
+Alternatively using `esptool.py`:
39
40
esptool.py --chip esp32s3 --baud 921600 --before default_reset --after hard_reset write_flash 0xD20000 build/hello_world.bin
41
@@ -63,4 +68,4 @@ if (factory_partition != NULL) {
63
68
fflush(stdout);
64
69
printf("Restarting now.\n");
65
70
esp_restart();
66
-```
71
0 commit comments