mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
16 lines
372 B
Makefile
16 lines
372 B
Makefile
BOARD ?= stm32f429i-disc1
|
|
include ../Makefile.tests_common
|
|
|
|
USEMODULE += ili9341
|
|
USEMODULE += xtimer
|
|
|
|
CFLAGS += -DILI9341_LE_MODE
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# 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
|