2018-09-17 10:27:41 +02:00
|
|
|
BOARD ?= stm32f429i-disc1
|
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
|
|
|
USEMODULE += ili9341
|
2021-10-25 10:49:08 +02:00
|
|
|
USEMODULE += ztimer
|
|
|
|
USEMODULE += ztimer_msec
|
2018-09-17 10:27:41 +02:00
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
|
2020-12-02 15:50:14 +01:00
|
|
|
# Check if being configured via Kconfig
|
|
|
|
ifndef CONFIG_KCONFIG_USEMODULE_ILI9341
|
|
|
|
CFLAGS += -DCONFIG_ILI9341_LE_MODE
|
|
|
|
endif
|
|
|
|
|
2018-09-17 10:27:41 +02:00
|
|
|
# The AVR architecture stores the image in the RAM, this usually doesn't fit.
|
|
|
|
# This flag excludes the image from the test
|
|
|
|
ifneq (,$(filter arch_avr8,$(FEATURES_USED)))
|
|
|
|
CFLAGS += -DNO_RIOT_IMAGE
|
|
|
|
endif
|