mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
25 lines
664 B
Makefile
25 lines
664 B
Makefile
include ../Makefile.sys_common
|
|
|
|
USEMODULE += shell
|
|
USEMODULE += shell_cmds_default
|
|
USEMODULE += ps
|
|
USEMODULE += schedstatistics
|
|
USEMODULE += printf_float
|
|
USEMODULE += ztimer_usec
|
|
USEMODULE += ztimer_sec
|
|
|
|
# For this test we don't want to use the shell version of
|
|
# test_utils_interactive_sync, since we want to synchronize before
|
|
# the start of the shell
|
|
DISABLE_MODULE += test_utils_interactive_sync_shell
|
|
|
|
# microbit qemu failing currently
|
|
TEST_ON_CI_BLACKLIST += microbit
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# Increase stacksize for AVR idle thread
|
|
ifneq (,$(filter avr8_common,$(USEMODULE)))
|
|
CFLAGS +=-DTHREAD_STACKSIZE_IDLE=THREAD_STACKSIZE_DEFAULT
|
|
endif
|