mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
353 B
Makefile
17 lines
353 B
Makefile
BOARD ?= stm32f429i-disc1
|
|
include ../Makefile.drivers_common
|
|
|
|
DISABLE_MODULE += test_utils_interactive_sync
|
|
|
|
USEMODULE += disp_dev
|
|
|
|
# add include path for riot_logo.h
|
|
INCLUDES += -I$(RIOTBASE)/tests
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# Check if being configured via Kconfig
|
|
ifndef CONFIG_KCONFIG_USEMODULE_LCD
|
|
CFLAGS += -DCONFIG_LCD_LE_MODE
|
|
endif
|