Skip to content

Commit

Permalink
Fix pyFlashGui args (no more spiffs!)
Browse files Browse the repository at this point in the history
  • Loading branch information
AEFeinstein committed Nov 16, 2024
1 parent 0484eb3 commit 3e1dea0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tools/pyFlashGui/pyFlashGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ def run(self):
"--flash_mode", "dio",
"--flash_freq", "80m",
"--flash_size", "4MB",
"0x1000", "bootloader.bin",
"0x8000", "partition-table.bin",
"0x10000", "swadge2024.bin",
"0x208000", "storage.bin"])
"0x1000", "bootloader.bin",
"0x8000", "partition-table.bin",
"0x10000", "swadge2024.bin"])

# It worked! Display a nice green message
self.labelText = "Flash succeeded on " + str(self.serialPort.device)
Expand Down

0 comments on commit 3e1dea0

Please sign in to comment.