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>
pull/618/head^2
Gaurav-Aggarwal-AWS 4 years ago committed by GitHub
parent 6ef5c92233
commit bec88bfe41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save