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

tests/sys/shell: increase the stack size of periodic thread

Otherwise the test seems to be broken with LLVM toolchain

Signed-off-by: dylad <dylan.laduranty@mesotic.com>
This commit is contained in:
dylad 2024-04-06 10:14:10 +02:00
parent f16761892b
commit 364519d5ce

View File

@ -101,7 +101,7 @@ static int print_empty(int argc, char **argv)
return 0;
}
static char _stack[THREAD_STACKSIZE_TINY];
static char _stack[THREAD_STACKSIZE_SMALL];
static struct {
uint16_t period_ms;
uint16_t reps;