-
-
Notifications
You must be signed in to change notification settings - Fork 747
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to build C3 binary with GitHub actions
- Loading branch information
1 parent
785b594
commit 5f8c058
Showing
3 changed files
with
32 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
How to flash Espruino ESP32C3 | ||
=========================== | ||
|
||
To flash an ESP32 using the serial port use: | ||
|
||
``` | ||
esptool.py -p (PORT) -b 460800 --before default_reset --after hard_reset \ | ||
--chip esp32c3 write_flash \ | ||
--flash_mode dio --flash_size detect --flash_freq 80m \ | ||
0x0 bootloader.bin \ | ||
0x8000 partition-table.bin \ | ||
0x10000 espruino-esp32c3.bin | ||
``` | ||
|
||
On Windows, you can use the flash tools from espressif found here: | ||
http://espressif.com/sites/default/files/tools/flash_download_tools_v3.4.4.zip |