File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,22 +10,22 @@ extern "C" {
1010 // linkerscript. Only the address of the variable should be used. The
1111 // address points to the correct location of the variable. This
1212 // pointer points to the first address that is not stack
13- extern const uint32_t __stack_start;
13+ extern uint32_t __stack_start;
1414
1515 // pointer to the end of the stack. Definition is done in the
1616 // linkerscript. Only the address of the variable should be used. The
1717 // address points to the correct location of the variable
18- extern const uint32_t __stack_end;
18+ extern uint32_t __stack_end;
1919
2020 // pointer to the start of the heap. Definition is done in the
2121 // linkerscript. Only the address of the variable should be used. The
2222 // address points to the correct location of the variable
23- extern const uint32_t __heap_start;
23+ extern uint32_t __heap_start;
2424
2525 // pointer to the end of the heap. Definition is done in the
2626 // linkerscript. Only the address of the variable should be used. The
2727 // address points to the correct location of the variable
28- extern const uint32_t __heap_end;
28+ extern uint32_t __heap_end;
2929
3030 // arm vector table. Can be used to override the weak symbol
3131 extern void (*const volatile __vectors[])(void );
You can’t perform that action at this time.
0 commit comments