diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-05-04 14:16:21 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-07-24 11:16:05 -0400 |
commit | eba252d3fd963ae10a51bea644f2b0c9e504e559 (patch) | |
tree | d472e0a01f04adedfe5a47a11e91133cd8166da1 /src/Makefile | |
parent | 940db6bd70be981c2002905bbbbb7f41977b79e9 (diff) | |
download | kutter-eba252d3fd963ae10a51bea644f2b0c9e504e559.tar.gz kutter-eba252d3fd963ae10a51bea644f2b0c9e504e559.tar.xz kutter-eba252d3fd963ae10a51bea644f2b0c9e504e559.zip |
thermocouple: Add initial support for common SPI temperature sensing chips
Signed-off-by: Petri Honkala <cruwaller@gmail.com>
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 22db35ea..f74b303a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -3,6 +3,6 @@ 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_SPI) += spicmds.c thermocouple.c src-$(CONFIG_HAVE_GPIO_HARD_PWM) += pwmcmds.c src-$(CONFIG_HAVE_USER_INTERFACE) += lcd_st7920.c lcd_hd44780.c buttons.c |