Skip to content

Commit

Permalink
[core] Mark .vector_ram section as NOLOAD
Browse files Browse the repository at this point in the history
This prevents OpenOCD from trying and failing to verify this sections,
which only gets loaded by the startup script.
  • Loading branch information
salkinium committed Oct 7, 2018
1 parent 9c9e4a7 commit e3c2712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modm/platform/core/cortex/linkerscript/linker.macros
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ TOTAL_STACK_SIZE = MAIN_STACK_SIZE + PROCESS_STACK_SIZE;


%% macro section_vector_ram(memory)
.vector_ram : /* Vector table in RAM, only if remapped */
.vector_ram (NOLOAD) : /* Vector table in RAM, only if remapped */
{
__vector_table_ram_start = .;

Expand Down

0 comments on commit e3c2712

Please sign in to comment.