summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorMax Audron <audron@ejected.space>2018-07-15 19:31:45 +0200
committerJack Humbert <jack.humb@gmail.com>2018-07-15 19:31:45 +0200
commitbbea9dadbcc92c4005188860a44c7b9e2479be2e (patch)
tree6771bf1efda890e5747fb48db5ff4b1182051f38 /tmk_core
parent81756d7b219fc2c869c043ee606d491a1e77e1c1 (diff)
downloadqmk_firmware-bbea9dadbcc92c4005188860a44c7b9e2479be2e.tar.gz
qmk_firmware-bbea9dadbcc92c4005188860a44c7b9e2479be2e.tar.xz
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 'tmk_core')
-rw-r--r--tmk_core/common/keyboard.c3
1 files changed, 3 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
#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];