mirror of
https://github.com/andreili/klipper.git
synced 2025-09-19 11:24:42 +02:00
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>
9 lines
334 B
Makefile
9 lines
334 B
Makefile
# Main code build rules
|
|
|
|
src-y += sched.c command.c basecmd.c debugcmds.c
|
|
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 buttons.c
|