diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-02-20 20:47:02 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-03-06 11:30:30 -0500 |
commit | 9140f36d991210c6286691986e11dedc98fa72ee (patch) | |
tree | 5ef0bf26bcb85bec1ece1e1769d2b73d038acbd8 /src/Makefile | |
parent | fa07be93463d9ce0262ae383259e68eea625bc4d (diff) | |
download | kutter-9140f36d991210c6286691986e11dedc98fa72ee.tar.gz kutter-9140f36d991210c6286691986e11dedc98fa72ee.tar.xz kutter-9140f36d991210c6286691986e11dedc98fa72ee.zip |
lcd_st7920: Add micro-controller code for the ST7920 LCD chip
Add support for passing messages to an ST7920 chip via a SPI
bit-banging interface.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index ce626faa..b316bb66 100644 --- a/src/Makefile +++ b/src/Makefile @@ -5,3 +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 |