diff options
author | Max Audron <audron@ejected.space> | 2018-07-15 19:31:45 +0200 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-07-15 13:31:45 -0400 |
commit | bbea9dadbcc92c4005188860a44c7b9e2479be2e (patch) | |
tree | 6771bf1efda890e5747fb48db5ff4b1182051f38 /common_features.mk | |
parent | 81756d7b219fc2c869c043ee606d491a1e77e1c1 (diff) | |
download | qmk_firmware-bbea9dadbcc92c4005188860a44c7b9e2479be2e.tar.gz |
Integrating Peter Fleury's HD44780 LCD library (#3209)
* integrated Peter Fleury's LCD library for HD44780 LCDs
* fixed typo
* cleanup finished
* add documentation
* added HD44780 documentation
* removed keyboard from .gitmodules
* resolved merge conflict
* removed edit of kira75s rules.mk made by merge
* moved hd44780 to drivers/avr
* Added licence info to hd44780 files
* Added link to hd44780 docs.
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 0778f8e0f..b12b6ae51 100644 --- a/common_features.mk +++ b/common_features.mk @@ -197,6 +197,12 @@ ifeq ($(strip $(USB_HID_ENABLE)), yes) include $(TMK_DIR)/protocol/usb_hid.mk endif + +ifeq ($(strip $(HD44780_ENABLE)), yes) + SRC += drivers/avr/hd44780.c + OPT_DEFS += -DHD44780_ENABLE +endif + QUANTUM_SRC:= \ $(QUANTUM_DIR)/quantum.c \ $(QUANTUM_DIR)/keymap_common.c \ |