Skip to content

Commit

Permalink
limit flash size
Browse files Browse the repository at this point in the history
  • Loading branch information
jocover committed Jan 19, 2024
1 parent f2b5016 commit ce8efa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ esp32s2
bootloader address is 0x1000

```
esptool write_flash 0x1000 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin 0x10000 esp32_u2f.bin
esptool write_flash --flash_size 2MB 0x1000 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin 0x10000 esp32_u2f.bin
```

esp32s3
bootloader address is 0x0

```
esptool write_flash 0x0 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin 0x10000 esp32_u2f.bin
esptool write_flash --flash_size 2MB 0x0 bootloader/bootloader.bin 0x8000 partition_table/partition-table.bin 0x10000 esp32_u2f.bin
```

### Tools
Expand Down

0 comments on commit ce8efa8

Please sign in to comment.