1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 18:13:49 +01:00

cpu: lpc2387: make THREAD_STACKSIZE_IDLE configurable

This commit is contained in:
Kaspar Schleiser 2017-01-08 10:52:59 +01:00
parent 1b5f22ec2e
commit 14ed03074e

View File

@ -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
/** @} */
/**