diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-12-15 12:23:32 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2024-04-09 16:32:43 -0400 |
commit | b8f1df3a9626a168d7152f1e2e923ef0e644eb84 (patch) | |
tree | 080b9a599dbafbaffb4c24924ea69d3389a7025b /src/Makefile | |
parent | acdf8bb1080ab829c6e8092dadf6d488aa416f77 (diff) | |
download | kutter-b8f1df3a9626a168d7152f1e2e923ef0e644eb84.tar.gz kutter-b8f1df3a9626a168d7152f1e2e923ef0e644eb84.tar.xz kutter-b8f1df3a9626a168d7152f1e2e923ef0e644eb84.zip |
sensor_ldc1612: Initial support for bulk reading ldc1612 sensor
Signed-off-by: Alan.Ma from BigTreeTech <tech@biqu3d.com>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
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 eddad978..ed98172e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -19,4 +19,5 @@ sensors-src-$(CONFIG_HAVE_GPIO_SPI) := thermocouple.c sensor_adxl345.c \ 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_NEED_SENSOR_BULK) += sensor_bulk.c |