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

examples: radio thread needs more stack

The radio stack in default examples uses printf() and thus needs more
stack.
This commit is contained in:
Oleg Hahm 2015-03-13 10:28:28 +01:00
parent 8537344db9
commit ddfc88323d

View File

@ -49,7 +49,7 @@
#define SND_BUFFER_SIZE (100)
#define RCV_BUFFER_SIZE (64)
#define RADIO_STACK_SIZE (KERNEL_CONF_STACKSIZE_DEFAULT)
#define RADIO_STACK_SIZE (KERNEL_CONF_STACKSIZE_MAIN)
#ifdef MODULE_TRANSCEIVER