Skip to content

Commit

Permalink
reduce the stack size so test/posix_semaphore builds
Browse files Browse the repository at this point in the history
compared to other implementations, 2500 seems to be insanely high anyway
  • Loading branch information
benpicco committed Oct 10, 2014
1 parent 5c9e049 commit 8a8c3a6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cpu/tm4c123/include/cpu-conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@
* TODO: measure and adjust for the Cortex-M4f
* @{
*/
#define KERNEL_CONF_STACKSIZE_PRINTF (2500)
#define KERNEL_CONF_STACKSIZE_PRINTF_FLOAT (4096)
#define KERNEL_CONF_STACKSIZE_PRINTF (2048)

#ifndef KERNEL_CONF_STACKSIZE_DEFAULT
#define KERNEL_CONF_STACKSIZE_DEFAULT (2500)
#define KERNEL_CONF_STACKSIZE_DEFAULT (256)
#endif

#define KERNEL_CONF_STACKSIZE_IDLE (512)
#define KERNEL_CONF_STACKSIZE_IDLE (256)
/** @} */

/**
Expand Down

0 comments on commit 8a8c3a6

Please sign in to comment.