Skip to content

Commit

Permalink
fix: Bootloader size increase broke perf_benchmark example compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
adokitkat committed Aug 17, 2024
1 parent 5ef75d5 commit 4a21b0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 5 additions & 6 deletions examples/storage/perf_benchmark/partitions_example.csv
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Name, Type, SubType, Offset, Size, Flags
# Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap
nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 1M,
storage, data, undefined, , 2M,
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, , 0x6000,
phy_init, data, phy, , 0x1000,
factory, app, factory, , 1M,
storage, data, undefined, , 2M,
1 change: 1 addition & 0 deletions examples/storage/perf_benchmark/sdkconfig.defaults
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
CONFIG_PARTITION_TABLE_CUSTOM=y
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_example.csv"
CONFIG_PARTITION_TABLE_FILENAME="partitions_example.csv"
CONFIG_PARTITION_TABLE_OFFSET=0x9000
CONFIG_ESP_TASK_WDT_EN=n

# FATFS
Expand Down

0 comments on commit 4a21b0e

Please sign in to comment.