mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
23 lines
477 B
Plaintext
23 lines
477 B
Plaintext
# This Config is used for configure the MMU.
|
|
# Be configured based on flash size selection.
|
|
# Invisible to users.
|
|
|
|
config MMU_PAGE_SIZE_8KB
|
|
bool
|
|
default n
|
|
|
|
config MMU_PAGE_SIZE_16KB
|
|
bool
|
|
default y if ESPTOOLPY_FLASHSIZE_1MB
|
|
default n
|
|
|
|
config MMU_PAGE_SIZE_32KB
|
|
bool
|
|
default y if ESPTOOLPY_FLASHSIZE_2MB
|
|
default n
|
|
|
|
config MMU_PAGE_SIZE_64KB
|
|
bool
|
|
default y if !MMU_PAGE_SIZE_32KB && !MMU_PAGE_SIZE_16KB && !MMU_PAGE_SIZE_8KB
|
|
default n
|