1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/pkg_lvgl_touch/Makefile
2022-08-24 21:56:31 +02:00

28 lines
646 B
Makefile

BOARD ?= stm32f429i-disc1
include ../Makefile.tests_common
# No interactive_sync
DISABLE_MODULE += test_utils_interactive_sync
USEPKG += lvgl
USEMODULE += lvgl_contrib
# Add touch capabilities
USEMODULE += lvgl_contrib_touch
USEMODULE += lvgl_widget_btn
USEMODULE += lvgl_widget_label
USEMODULE += lvgl_extra_theme_default
# uncomment the following to enable growing button (needs more RAM)
# USEMODULE += lvgl_extra_theme_default_grow
USEMODULE += random
# SDL requires more stack
ifeq (native,$(BOARD))
CFLAGS += -DTHREAD_STACKSIZE_MAIN=64*1024
else
CFLAGS += -DTHREAD_STACKSIZE_MAIN=2*1024
endif
include $(RIOTBASE)/Makefile.include