We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MMU_PAGE_SIZE
1 parent cee33aa commit 2a855c8Copy full SHA for 2a855c8
builder/frameworks/espidf.py
@@ -2032,6 +2032,15 @@ def _skip_prj_source_files(node):
2032
# For chips that support configurable MMU page size feature
2033
# If page size is configured to values other than the default "64KB" in menuconfig,
2034
mmu_page_size = "64KB"
2035
+if sdk_config.get("MMU_PAGE_SIZE_8KB", False):
2036
+ mmu_page_size = "8KB"
2037
+elif sdk_config.get("MMU_PAGE_SIZE_16KB", False):
2038
+ mmu_page_size = "16KB"
2039
+elif sdk_config.get("MMU_PAGE_SIZE_32KB", False):
2040
+ mmu_page_size = "32KB"
2041
+else:
2042
+ mmu_page_size = "64KB"
2043
+
2044
if sdk_config.get("SOC_MMU_PAGE_SIZE_CONFIGURABLE", False):
2045
if board_flash_size == "2MB":
2046
mmu_page_size = "32KB"
0 commit comments