Fix build failure in CORTEX_MPU_LPC54018_MCUXpresso project (#328)

Add missing power libraries. Also increase the size of the privileged
data section as heap is now placed in the privileged data section.

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
Gaurav-Aggarwal-AWS
2020-10-06 16:50:34 -07:00
committed by GitHub
parent bc54c6bc10
commit e8fefe0ac9
3 changed files with 2 additions and 2 deletions

View File

@ -35,9 +35,9 @@ MEMORY
}
/* Initial 32K SRAMX_CODE is used to store kernel functions and
* initial 512 bytes of SRAM_0_1_2_3 is used to store kernel data. */
* initial 16K bytes of SRAM_0_1_2_3 is used to store kernel data. */
__privileged_functions_region_size__ = 32K;
__privileged_data_region_size__ = 512;
__privileged_data_region_size__ = 16K;
/* Symbols needed by the MPU setup code. */
__FLASH_segment_start__ = ORIGIN( SRAMX_CODE );