From 14ed03074e7352cd94c623beb13d0e6344b07547 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Sun, 8 Jan 2017 10:52:59 +0100 Subject: [PATCH] cpu: lpc2387: make THREAD_STACKSIZE_IDLE configurable --- cpu/lpc2387/include/cpu_conf.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpu/lpc2387/include/cpu_conf.h b/cpu/lpc2387/include/cpu_conf.h index c6b883e7c4..2a214834d3 100644 --- a/cpu/lpc2387/include/cpu_conf.h +++ b/cpu/lpc2387/include/cpu_conf.h @@ -48,7 +48,9 @@ extern "C" { #define THREAD_STACKSIZE_DEFAULT (1024) #endif +#ifndef THREAD_STACKSIZE_IDLE #define THREAD_STACKSIZE_IDLE (160) +#endif /** @} */ /** @@ -93,7 +95,9 @@ extern "C" { * @brief Stack size used for the interrupt (ISR) stack * @{ */ +#ifndef ISR_STACKSIZE #define ISR_STACKSIZE (400) +#endif /** @} */ /**