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. --- tmk_core/common/keyboard.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tmk_core') diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index d3fbe2d87..13b3cb4c0 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -69,6 +69,9 @@ along with this program. If not, see . #ifdef MIDI_ENABLE # include "process_midi.h" #endif +#ifdef HD44780_ENABLE +# include "hd44780.h" +#endif #ifdef MATRIX_HAS_GHOST extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS]; -- cgit v1.2.3-24-g4f1b