Skip to content
Snippets Groups Projects
Commit 19ef9dbe authored by Hauke Petersen's avatar Hauke Petersen
Browse files

cpu/cortexm: raised ISR stack size to safer value

256 Byte were not enough for some boards (not sure why, yet).
So go back to 512 byte as a save (and known working value).
parent 030820ce
No related branches found
No related tags found
No related merge requests found
...@@ -33,8 +33,8 @@ SEARCH_DIR(.) ...@@ -33,8 +33,8 @@ SEARCH_DIR(.)
/* Define the default stack size for interrupt mode. As no context is /* Define the default stack size for interrupt mode. As no context is
saved on this stack and ISRs are supposed to be short, it can be fairly saved on this stack and ISRs are supposed to be short, it can be fairly
small. 256 byte should be a save assumption here */ small. 512 byte should be a save assumption here */
STACK_SIZE = DEFINED(STACK_SIZE) ? STACK_SIZE : 0x100; /* 256 byte */ STACK_SIZE = DEFINED(STACK_SIZE) ? STACK_SIZE : 0x200; /* 512 byte */
/* Section Definitions */ /* Section Definitions */
SECTIONS SECTIONS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment