File tree Expand file tree Collapse file tree 2 files changed +7
-10
lines changed
targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/device Expand file tree Collapse file tree 2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 56
56
57
57
#define __ram_vector_table__ 1
58
58
59
- #define __stack_size__ 0x8000
60
- #define __heap_size__ 0x10000
61
-
62
59
#if (defined(__ram_vector_table__))
63
60
#define __ram_vector_table_size__ 0x00000400
64
61
#else
Original file line number Diff line number Diff line change 55
55
56
56
define symbol __ram_vector_table__ = 1;
57
57
58
- define symbol __stack_size__=0x8000;
58
+ /* Sizes */
59
+ if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) {
60
+ define symbol MBED_BOOT_STACK_SIZE = 0x400;
61
+ }
62
+
63
+ define symbol __stack_size__=MBED_BOOT_STACK_SIZE;
59
64
define symbol __heap_size__=0x10000;
60
65
61
66
define symbol __ram_vector_table_size__ = isdefinedsymbol(__ram_vector_table__) ? 0x00000400 : 0;
@@ -90,15 +95,10 @@ define symbol m_boot_hdr_ivt_start = 0x60001000;
90
95
define symbol m_boot_hdr_boot_data_start = 0x60001020;
91
96
define symbol m_boot_hdr_dcd_data_start = 0x60001030;
92
97
93
- /* Sizes */
94
- if (!isdefinedsymbol(MBED_BOOT_STACK_SIZE)) {
95
- define symbol MBED_BOOT_STACK_SIZE = 0x400;
96
- }
97
-
98
98
if (isdefinedsymbol(__stack_size__)) {
99
99
define symbol __size_cstack__ = __stack_size__;
100
100
} else {
101
- define symbol __size_cstack__ = MBED_BOOT_STACK_SIZE ;
101
+ define symbol __size_cstack__ = 0x0400 ;
102
102
}
103
103
104
104
if (isdefinedsymbol(__heap_size__)) {
You can’t perform that action at this time.
0 commit comments