File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
targets/TARGET_NUVOTON/TARGET_NUC472/device/TOOLCHAIN_IAR/TARGET_NU_XRAM_SUPPORTED Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 183
183
"crash-capture-enabled" : true ,
184
184
"fatal-error-auto-reboot-enabled" : true
185
185
},
186
+ "NUMAKER_PFM_NUC472" : {
187
+ "crash-capture-enabled" : true ,
188
+ "fatal-error-auto-reboot-enabled" : true
189
+ },
186
190
"NRF52840_DK" : {
187
191
"crash-capture-enabled" : true ,
188
192
"fatal-error-auto-reboot-enabled" : true
Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ define symbol __ICFEDIT_intvec_start__ = MBED_APP_START;
9
9
/*-Memory Regions-*/
10
10
define symbol __ICFEDIT_region_ROM_start__ = MBED_APP_START;
11
11
define symbol __ICFEDIT_region_ROM_end__ = MBED_APP_START + MBED_APP_SIZE - 1;
12
- define symbol __ICFEDIT_region_IRAM_start__ = 0x20000000;
12
+ define symbol __region_CRASH_DATA_RAM_start__ = 0x20000000;
13
+ define symbol __region_CRASH_DATA_RAM_end__ = 0x200000FF;
14
+ define symbol __ICFEDIT_region_IRAM_start__ = 0x20000100;
13
15
define symbol __ICFEDIT_region_IRAM_end__ = 0x20010000 - 1;
14
16
define symbol __ICFEDIT_region_XRAM_start__ = 0x60000000;
15
17
define symbol __ICFEDIT_region_XRAM_end__ = 0x60100000 - 1;
@@ -23,6 +25,11 @@ define memory mem with size = 4G;
23
25
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
24
26
define region IRAM_region = mem:[from __ICFEDIT_region_IRAM_start__ to __ICFEDIT_region_IRAM_end__];
25
27
define region XRAM_region = mem:[from __ICFEDIT_region_XRAM_start__ to __ICFEDIT_region_XRAM_end__];
28
+ define region CRASH_DATA_RAM_region = mem:[from __region_CRASH_DATA_RAM_start__ to __region_CRASH_DATA_RAM_end__];
29
+
30
+ /* Define Crash Data Symbols */
31
+ define exported symbol __CRASH_DATA_RAM_START__ = __region_CRASH_DATA_RAM_start__;
32
+ define exported symbol __CRASH_DATA_RAM_END__ = __region_CRASH_DATA_RAM_end__;
26
33
27
34
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
28
35
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
You can’t perform that action at this time.
0 commit comments