diff --git a/tools/pyFlashGui/README.md b/tools/pyFlashGui/README.md index 470920e1b..5d1267a36 100644 --- a/tools/pyFlashGui/README.md +++ b/tools/pyFlashGui/README.md @@ -53,7 +53,7 @@ For the script to actually flash firmware, the following files must be in the sa | File | Relative Path | | ------------- | ------------- | | ``bootloader.bin`` | ``../build/bootloader/bootloader.bin`` | -| ``swadge-esp32.bin`` | ``../build/swadge-esp32.bin`` | +| ``swadge2024.bin`` | ``../build/swadge2024.bin`` | | ``partition-table.bin`` | ``../build/partition_table/partition-table.bin`` | | ``storage.bin`` | ``../build/storage.bin`` | @@ -61,7 +61,7 @@ Assuming you've checked out the whole repository, set up the IDF, and are in the ```bash idf.py build -cp ./build/bootloader/bootloader.bin ./build/swadge-esp32.bin ./build/partition_table/partition-table.bin ./build/storage.bin ./pyFlashGui/ +cp ./build/bootloader/bootloader.bin ./build/swadge2024.bin ./build/partition_table/partition-table.bin ./build/storage.bin ./pyFlashGui/ ``` # Instructions diff --git a/tools/pyFlashGui/pyFlashGui.py b/tools/pyFlashGui/pyFlashGui.py index f62ab9a64..e00efc522 100644 --- a/tools/pyFlashGui/pyFlashGui.py +++ b/tools/pyFlashGui/pyFlashGui.py @@ -46,7 +46,7 @@ def run(self): "--flash_freq", "80m", "--flash_size", "4MB", "0x1000", "bootloader.bin", - "0x10000", "swadge-esp32.bin", + "0x10000", "swadge2024.bin", "0x8000", "partition-table.bin", "0x110000", "storage.bin"])