aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorGareth Farrington <gareth@waves.ky>2024-06-02 22:31:28 -0700
committerKevin O'Connor <kevin@koconnor.net>2024-07-31 21:22:06 -0400
commitc0095812ff18687ed25ce0f1ed468ebed8f81cfe (patch)
treecb57572e351128f439789306f2b9b99bb7ccba65 /src/Makefile
parent0844388d70f225f6458382c1c5d4e7eb37767758 (diff)
downloadkutter-c0095812ff18687ed25ce0f1ed468ebed8f81cfe.tar.gz
kutter-c0095812ff18687ed25ce0f1ed468ebed8f81cfe.tar.xz
kutter-c0095812ff18687ed25ce0f1ed468ebed8f81cfe.zip
hx71x: Load Cell Skeleton and HX71x bulk ADC
* Create the load_cell host module skeleton to create the sensors and start taking samples. * Add support for the HX717 and HX711 ADC sensors. Signed-off-by: Gareth Farrington <gareth@waves.ky>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index ed98172e..4a1d2436 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -20,4 +20,5 @@ sensors-src-$(CONFIG_HAVE_GPIO_I2C) += sensor_mpu9250.c
src-$(CONFIG_WANT_SENSORS) += $(sensors-src-y)
src-$(CONFIG_WANT_LIS2DW) += sensor_lis2dw.c
src-$(CONFIG_WANT_LDC1612) += sensor_ldc1612.c
+src-$(CONFIG_WANT_HX71X) += sensor_hx71x.c
src-$(CONFIG_NEED_SENSOR_BULK) += sensor_bulk.c