mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-16 08:35:17 -05:00
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:
parent
bc54c6bc10
commit
e8fefe0ac9
3 changed files with 2 additions and 2 deletions
Binary file not shown.
Binary file not shown.
|
|
@ -35,9 +35,9 @@ MEMORY
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Initial 32K SRAMX_CODE is used to store kernel functions and
|
/* 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_functions_region_size__ = 32K;
|
||||||
__privileged_data_region_size__ = 512;
|
__privileged_data_region_size__ = 16K;
|
||||||
|
|
||||||
/* Symbols needed by the MPU setup code. */
|
/* Symbols needed by the MPU setup code. */
|
||||||
__FLASH_segment_start__ = ORIGIN( SRAMX_CODE );
|
__FLASH_segment_start__ = ORIGIN( SRAMX_CODE );
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue