We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9177271 + 0b835aa commit b02ec57Copy full SHA for b02ec57
cortex-m-rt/link.x.in
@@ -266,7 +266,7 @@ ASSERT(ADDR(.vector_table) + SIZEOF(.vector_table) <= _stext, "
266
ERROR(cortex-m-rt): The .text section can't be placed inside the .vector_table section
267
Set _stext to an address greater than the end of .vector_table (See output of `nm`)");
268
269
-ASSERT(_stext > ORIGIN(FLASH) && _stext < ORIGIN(FLASH) + LENGTH(FLASH), "
+ASSERT(_stext >= ORIGIN(FLASH) && _stext < ORIGIN(FLASH) + LENGTH(FLASH), "
270
ERROR(cortex-m-rt): The .text section must be placed inside the FLASH memory.
271
Set _stext to an address within the FLASH region.");
272
0 commit comments