aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-02-20 20:48:26 -0500
committerKevin O'Connor <kevin@koconnor.net>2018-03-06 11:30:34 -0500
commitafc9bcf27bedf0a4f16265ef3acd4990e8f642fe (patch)
tree5ee1d6c81b6edf884c8d0535d8cd911cfdf74372 /src/Makefile
parent9140f36d991210c6286691986e11dedc98fa72ee (diff)
downloadkutter-afc9bcf27bedf0a4f16265ef3acd4990e8f642fe.tar.gz
kutter-afc9bcf27bedf0a4f16265ef3acd4990e8f642fe.tar.xz
kutter-afc9bcf27bedf0a4f16265ef3acd4990e8f642fe.zip
lcd_hd44780: Add micro-controller code for the HD44780 LCD chip
Add support for passing messages to an HD44780 chip via a 4-bit bit-banging interface. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index b316bb66..92667b2a 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -5,4 +5,4 @@ src-$(CONFIG_HAVE_GPIO) += gpiocmds.c stepper.c endstop.c
src-$(CONFIG_HAVE_GPIO_ADC) += adccmds.c
src-$(CONFIG_HAVE_GPIO_SPI) += spicmds.c
src-$(CONFIG_HAVE_GPIO_HARD_PWM) += pwmcmds.c
-src-$(CONFIG_HAVE_USER_INTERFACE) += lcd_st7920.c
+src-$(CONFIG_HAVE_USER_INTERFACE) += lcd_st7920.c lcd_hd44780.c