From b0e7d6abd6d0e57ada82b1f52c8b5de9f7c0aa3d Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Thu, 12 Mar 2020 13:33:59 +0100 Subject: [PATCH] cpu/atmega32u4: make THREAD_STACKSIZE_IDLE configurable --- cpu/atmega32u4/include/cpu_conf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpu/atmega32u4/include/cpu_conf.h b/cpu/atmega32u4/include/cpu_conf.h index 31812c92b1..65c6ea2c3e 100644 --- a/cpu/atmega32u4/include/cpu_conf.h +++ b/cpu/atmega32u4/include/cpu_conf.h @@ -39,7 +39,9 @@ extern "C" { #define THREAD_STACKSIZE_DEFAULT (256) #endif +#ifndef THREAD_STACKSIZE_IDLE #define THREAD_STACKSIZE_IDLE (128) +#endif /** @} */ #ifdef __cplusplus