diff options
author | Gareth Farrington <gareth@waves.ky> | 2024-06-02 22:31:28 -0700 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-07-31 21:22:06 -0400 |
commit | c0095812ff18687ed25ce0f1ed468ebed8f81cfe (patch) | |
tree | cb57572e351128f439789306f2b9b99bb7ccba65 /src/Makefile | |
parent | 0844388d70f225f6458382c1c5d4e7eb37767758 (diff) | |
download | kutter-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/Makefile | 1 |
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 |