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

enforce KERNEL_CONF_STACKSIZE_PRINTF in kernel.h

This commit is contained in:
Thomas Eichinger 2013-12-03 13:09:38 +01:00
parent ff12887eae
commit dfdfb448f4

View File

@ -54,6 +54,15 @@
#error KERNEL_CONF_STACKSIZE_IDLE must be defined per CPU
#endif
/**
* @def KERNEL_CONF_STACKSIZE_PRINTF
* @ingroup conf
* @brief Size of the task's printf stack in bytes
*/
#ifndef KERNEL_CONF_STACKSIZE_PRINTF
#error KERNEL_CONF_STACKSIZE_PRINTF must be defined per CPU
#endif
/**
* @def KERNEL_CONF_STACKSIZE_MAIN
* @ingroup conf