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

Merge pull request #20548 from dylad/pr/tests/sys/shell/fix_ci_error_llvm

tests/sys/shell: increase the stack size of periodic thread
This commit is contained in:
Dylan Laduranty 2024-04-06 10:03:22 +00:00 committed by GitHub
commit ad0d0b7a6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,9 @@
BOARD_INSUFFICIENT_MEMORY := \
arduino-duemilanove \
arduino-uno \
arduino-nano \
atmega328p \
atmega328p-xplained-mini \
atmega8 \
nucleo-l011k4 \
#

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;