Skip to content
Snippets Groups Projects
Commit 28307688 authored by Christian Mehlis's avatar Christian Mehlis
Browse files

Merge pull request #1685 from haukepetersen/fix_nrf_stacksizes

cpu/nrf51822: adjusted default stack sizes
parents 71daa3ae 4411b6b5
No related branches found
No related tags found
No related merge requests found
...@@ -22,17 +22,14 @@ ...@@ -22,17 +22,14 @@
#include "nrf51.h" #include "nrf51.h"
#include "nrf51_bitfields.h" #include "nrf51_bitfields.h"
/** /**
* @name Kernel configuration * @name Kernel configuration
*
* TODO: measure and adjust for the cortex-m0
* @{ * @{
*/ */
#define KERNEL_CONF_STACKSIZE_PRINTF (524) #define KERNEL_CONF_STACKSIZE_PRINTF (512)
#ifndef KERNEL_CONF_STACKSIZE_DEFAULT #ifndef KERNEL_CONF_STACKSIZE_DEFAULT
#define KERNEL_CONF_STACKSIZE_DEFAULT (524) #define KERNEL_CONF_STACKSIZE_DEFAULT (512)
#endif #endif
#define KERNEL_CONF_STACKSIZE_IDLE (256) #define KERNEL_CONF_STACKSIZE_IDLE (256)
......
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