mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-23 01:21:42 +08: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:

committed by
GitHub

parent
bc54c6bc10
commit
e8fefe0ac9
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 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 );
|
||||
|
Reference in New Issue
Block a user