Merge pull request #12901 from benpicco/lpc2387-stacks

cpu/lpc2387: use the same default stack sizes as cortexm_common
This commit is contained in:
benpicco 2019-12-18 14:12:58 +01:00 committed by GitHub
commit b35ef08094
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,11 +42,10 @@ extern "C" {
* @name Kernel configuration * @name Kernel configuration
* @{ * @{
*/ */
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (4096) #define THREAD_EXTRA_STACKSIZE_PRINTF (512)
#define THREAD_EXTRA_STACKSIZE_PRINTF (2048)
#ifndef THREAD_STACKSIZE_DEFAULT #ifndef THREAD_STACKSIZE_DEFAULT
#define THREAD_STACKSIZE_DEFAULT (512) #define THREAD_STACKSIZE_DEFAULT (1024)
#endif #endif
#define THREAD_STACKSIZE_IDLE (160) #define THREAD_STACKSIZE_IDLE (160)