You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
300 B
11 lines
300 B
# don't re-define LCDLIB if it has been set elsewhere, e.g in Makefile
|
|
ifeq ($(LCDLIB),)
|
|
LCDLIB = $(CHIBIOS)/ext/lcd
|
|
endif
|
|
|
|
LCDSRC += $(LCDLIB)/src/gdisp.c \
|
|
$(LCDLIB)/src/gdisp_fonts.c \
|
|
$(LCDLIB)/src/touchpad.c \
|
|
$(LCDLIB)/src/console.c
|
|
|
|
LCDINC += $(LCDLIB)/include
|
|
|