mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cpu/lpc2387: use the same default stack sizes as cortexm_common
Both architectures are variants of the ARM architecture and use the same toolchain. There is no reason to have such wildly different defaults. This results in some tests passing that would crash before: - [x] `tests/pkg_libcose` - [x] `tests/pkg_qdsa` - [x] `tests/pkg_relic` - [x] `tests/pkg_tweetnacl` - [x] `tests/pthread_tls` `THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT` is not used anywhere in RIOT anymore, so just drop it.
This commit is contained in:
parent
34963006f0
commit
d57e03c94c
@ -42,11 +42,10 @@ extern "C" {
|
||||
* @name Kernel configuration
|
||||
* @{
|
||||
*/
|
||||
#define THREAD_EXTRA_STACKSIZE_PRINTF_FLOAT (4096)
|
||||
#define THREAD_EXTRA_STACKSIZE_PRINTF (2048)
|
||||
#define THREAD_EXTRA_STACKSIZE_PRINTF (512)
|
||||
|
||||
#ifndef THREAD_STACKSIZE_DEFAULT
|
||||
#define THREAD_STACKSIZE_DEFAULT (512)
|
||||
#define THREAD_STACKSIZE_DEFAULT (1024)
|
||||
#endif
|
||||
|
||||
#define THREAD_STACKSIZE_IDLE (160)
|
||||
|
Loading…
Reference in New Issue
Block a user