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 faee6ac commit a3d12ddCopy full SHA for a3d12dd
builder/frameworks/espidf.py
@@ -2068,6 +2068,15 @@ def _skip_prj_source_files(node):
2068
# For chips that support configurable MMU page size feature
2069
# If page size is configured to values other than the default "64KB" in menuconfig,
2070
mmu_page_size = "64KB"
2071
+if sdk_config.get("MMU_PAGE_SIZE_8KB", False):
2072
+ mmu_page_size = "8KB"
2073
+elif sdk_config.get("MMU_PAGE_SIZE_16KB", False):
2074
+ mmu_page_size = "16KB"
2075
+elif sdk_config.get("MMU_PAGE_SIZE_32KB", False):
2076
+ mmu_page_size = "32KB"
2077
+else:
2078
+ mmu_page_size = "64KB"
2079
+
2080
if sdk_config.get("SOC_MMU_PAGE_SIZE_CONFIGURABLE", False):
2081
if board_flash_size == "2MB":
2082
mmu_page_size = "32KB"
0 commit comments