1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/atmega32u4: make THREAD_STACKSIZE_IDLE configurable

This commit is contained in:
Kaspar Schleiser 2020-03-12 13:33:59 +01:00
parent b2278b64a8
commit b0e7d6abd6

View File

@ -39,7 +39,9 @@ extern "C" {
#define THREAD_STACKSIZE_DEFAULT (256)
#endif
#ifndef THREAD_STACKSIZE_IDLE
#define THREAD_STACKSIZE_IDLE (128)
#endif
/** @} */
#ifdef __cplusplus