From bbea9dadbcc92c4005188860a44c7b9e2479be2e Mon Sep 17 00:00:00 2001 From: Max Audron Date: Sun, 15 Jul 2018 19:31:45 +0200 Subject: 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. --- common_features.mk | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'common_features.mk') 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 \ -- cgit v1.2.3-24-g4f1b