diff options
| author | Fred Sundvik <fsundvik@gmail.com> | 2016-02-13 19:38:23 +0200 |
|---|---|---|
| committer | Fred Sundvik <fsundvik@gmail.com> | 2016-02-13 19:38:23 +0200 |
| commit | 9e58d022ba4320ce0917defe4b81c1c7b5de77bb (patch) | |
| tree | eb1d0bfa31d60af786d2f529729da9de119c83de /visualizer.mk | |
| parent | 01b955aa64766d51191a716d3a9d74d35f221b28 (diff) | |
| download | qmk_firmware-9e58d022ba4320ce0917defe4b81c1c7b5de77bb.tar.gz qmk_firmware-9e58d022ba4320ce0917defe4b81c1c7b5de77bb.zip | |
Add visualizer
A generic visualizer that supports animations. There's a few
predefined keyframe types included, and more can be added by the
user.
Diffstat (limited to 'visualizer.mk')
| -rw-r--r-- | visualizer.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/visualizer.mk b/visualizer.mk index 8ffc1e4ac..ff4b61f08 100644 --- a/visualizer.mk +++ b/visualizer.mk | |||
| @@ -23,11 +23,13 @@ | |||
| 23 | GFXLIB = $(VISUALIZER_DIR)/ugfx | 23 | GFXLIB = $(VISUALIZER_DIR)/ugfx |
| 24 | ifdef LCD_ENABLE | 24 | ifdef LCD_ENABLE |
| 25 | include $(GFXLIB)/gfx.mk | 25 | include $(GFXLIB)/gfx.mk |
| 26 | OPT_DEFS += -DLCD_ENABLE | ||
| 26 | endif | 27 | endif |
| 27 | SRC += $(GFXSRC) | 28 | SRC += $(GFXSRC) $(VISUALIZER_DIR)/visualizer.c |
| 28 | INC += $(GFXINC) $(VISUALIZER_DIR) | 29 | INC += $(GFXINC) $(VISUALIZER_DIR) |
| 29 | 30 | ||
| 30 | ifdef LCD_BACKLIGHT_ENABLE | 31 | ifdef LCD_BACKLIGHT_ENABLE |
| 31 | SRC += $(VISUALIZER_DIR)/lcd_backlight.c | 32 | SRC += $(VISUALIZER_DIR)/lcd_backlight.c |
| 32 | SRC += lcd_backlight_hal.c | 33 | SRC += lcd_backlight_hal.c |
| 34 | OPT_DEFS += -DLCD_BACKLIGHT_ENABLE | ||
| 33 | endif | 35 | endif |
