mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-17 02:07:48 -04:00
Update the size of privileged data section (#639)
This is needed because FreeRTOS heap is now placed in the privileged data section. Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
This commit is contained in:
parent
6ef5c92233
commit
bec88bfe41
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ MEMORY
|
|||
/* Initial 32K Flash is used to store kernel functions and
|
||||
* initial 512 bytes of RAM is used to store kernel data. */
|
||||
__privileged_functions_region_size__ = 32K;
|
||||
__privileged_data_region_size__ = 512;
|
||||
__privileged_data_region_size__ = 32K;
|
||||
|
||||
__FLASH_segment_start__ = ORIGIN( FLASH );
|
||||
__FLASH_segment_end__ = __FLASH_segment_start__ + LENGTH( FLASH );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue