1
0
Fork 0

Add LCD backlight support

Also possibility to disable the LCD support
This commit is contained in:
Fred Sundvik 2016-02-13 19:21:16 +02:00
parent fb681b5a60
commit 01b955aa64
3 changed files with 135 additions and 1 deletions

View file

@ -21,6 +21,13 @@
# SOFTWARE.
GFXLIB = $(VISUALIZER_DIR)/ugfx
ifdef LCD_ENABLE
include $(GFXLIB)/gfx.mk
endif
SRC += $(GFXSRC)
INC += $(GFXINC)
INC += $(GFXINC) $(VISUALIZER_DIR)
ifdef LCD_BACKLIGHT_ENABLE
SRC += $(VISUALIZER_DIR)/lcd_backlight.c
SRC += lcd_backlight_hal.c
endif