mirror of
https://github.com/Klipper3d/klipper.git
synced 2026-02-06 23:00:38 +01:00
Separate out the stepper stopping code from endstop.c into its own trsync.c code file. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
12 lines
496 B
Makefile
12 lines
496 B
Makefile
# Main code build rules
|
|
|
|
src-y += sched.c command.c basecmd.c debugcmds.c
|
|
src-$(CONFIG_HAVE_GPIO) += initial_pins.c gpiocmds.c stepper.c endstop.c \
|
|
trsync.c
|
|
src-$(CONFIG_HAVE_GPIO_ADC) += adccmds.c
|
|
src-$(CONFIG_HAVE_GPIO_SPI) += spicmds.c thermocouple.c
|
|
src-$(CONFIG_HAVE_GPIO_I2C) += i2ccmds.c
|
|
src-$(CONFIG_HAVE_GPIO_HARD_PWM) += pwmcmds.c
|
|
src-$(CONFIG_HAVE_GPIO_BITBANGING) += lcd_st7920.c lcd_hd44780.c buttons.c \
|
|
tmcuart.c spi_software.c neopixel.c sensor_adxl345.c pulse_counter.c
|