Skip to content
Snippets Groups Projects
Commit 65cd0b18 authored by Terraneo Federico's avatar Terraneo Federico
Browse files

Forgot to change another number

parent 1b0f4484
Branches
Tags
No related merge requests found
......@@ -40,8 +40,8 @@ _main_stack_size = 0x00000200; /* main stack = 512Bytes */
_main_stack_top = 0x20000000 + _main_stack_size;
ASSERT(_main_stack_size % 8 == 0, "MAIN stack size error");
/* end of the heap on 10KB microcontrollers */
_heap_end = 0x20002800; /* end of available ram */
/* end of the heap on 10KB microcontrollers (minus 2K buffers) */
_heap_end = 0x20002000; /* end of available ram */
/* identify the Entry Point */
ENTRY(_Z13Reset_Handlerv)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment