File tree 1 file changed +11
-3
lines changed
1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -159,12 +159,20 @@ cortex-m-rt: The reset vector is missing. This is a bug in cortex-m-rt. Please f
159
159
report at: https://github.com/japaric/cortex-m-rt/issues");
160
160
161
161
ASSERT(__eexceptions - ORIGIN(FLASH) == 0x40, "
162
- cortex-m-rt: The exception handlers are missing. This is a bug in cortex-m-rt. Please file
162
+ cortex-m-rt: The exception vectors are missing. This is a bug in cortex-m-rt. Please file
163
163
a bug report at: https://github.com/japaric/cortex-m-rt/issues");
164
164
165
+ ASSERT(__sheap >= __ebss, "
166
+ cortex-m-rt: The heap overlaps with the .bss section. This is a bug in cortex-m-rt. Please
167
+ file a bug report at: https://github.com/japaric/cortex-m-rt/issues");
168
+
169
+ ASSERT(__sheap >= __edata, "
170
+ cortex-m-rt: The heap overlaps with the .data section. This is a bug in cortex-m-rt.
171
+ Please file a bug report at: https://github.com/japaric/cortex-m-rt/issues");
172
+
165
173
ASSERT(__einterrupts - __eexceptions > 0, "
166
- cortex-m-rt: The interrupt handlers are missing. Possible fixes , from most likely to less
167
- likely:
174
+ cortex-m-rt: The interrupt vectors are missing. Possible solutions , from most likely to
175
+ less likely:
168
176
- Link to a device crate
169
177
- Disable the 'device' feature of cortex-m-rt to build a generic application (a dependency
170
178
may be enabling it)
You can’t perform that action at this time.
0 commit comments