1
0
Fork 0

Add visualizer

A generic visualizer that supports animations. There's a few
predefined keyframe types included, and more can be added by the
user.
This commit is contained in:
Fred Sundvik 2016-02-13 19:38:23 +02:00
parent 01b955aa64
commit 9e58d022ba
3 changed files with 472 additions and 1 deletions

View file

@ -23,11 +23,13 @@
GFXLIB = $(VISUALIZER_DIR)/ugfx
ifdef LCD_ENABLE
include $(GFXLIB)/gfx.mk
OPT_DEFS += -DLCD_ENABLE
endif
SRC += $(GFXSRC)
SRC += $(GFXSRC) $(VISUALIZER_DIR)/visualizer.c
INC += $(GFXINC) $(VISUALIZER_DIR)
ifdef LCD_BACKLIGHT_ENABLE
SRC += $(VISUALIZER_DIR)/lcd_backlight.c
SRC += lcd_backlight_hal.c
OPT_DEFS += -DLCD_BACKLIGHT_ENABLE
endif