diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-01-26 14:27:55 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-30 14:28:51 -0400 |
commit | 38d7b9ada0d61971fdaf3e853892e7fb4051b36a (patch) | |
tree | fc629b0ec267cab79219afe7554b6e34d14595cb /src/Makefile | |
parent | 4061026c2548ff84873b06a9943d9d6ea3e2ddee (diff) | |
download | kutter-38d7b9ada0d61971fdaf3e853892e7fb4051b36a.tar.gz kutter-38d7b9ada0d61971fdaf3e853892e7fb4051b36a.tar.xz kutter-38d7b9ada0d61971fdaf3e853892e7fb4051b36a.zip |
buttons: Add initial support for detecting button presses
Add mcu support for periodically polling for a button press. Add host
code support for registering buttons and invoking callbacks for them.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 92667b2a..22db35ea 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 lcd_hd44780.c +src-$(CONFIG_HAVE_USER_INTERFACE) += lcd_st7920.c lcd_hd44780.c buttons.c |