forked from Minki/linux
16b0526153
Add I2CXL-MaxSonar ultrasonic distance sensors of types mb1202, mb1212, mb1222, mb1232, mb1242, mb7040, mb7137 using an i2c interface Implemented functionality: - reading the distance via in_distance_raw - buffered mode with trigger - make use of interrupt to announce completion of ranging Add mb1232 driver to Kconfig and Makefile Signed-off-by: Andreas Klinger <ak@it-klinger.de> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
17 lines
484 B
Makefile
17 lines
484 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for IIO proximity sensors
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_AS3935) += as3935.o
|
|
obj-$(CONFIG_ISL29501) += isl29501.o
|
|
obj-$(CONFIG_LIDAR_LITE_V2) += pulsedlight-lidar-lite-v2.o
|
|
obj-$(CONFIG_MB1232) += mb1232.o
|
|
obj-$(CONFIG_RFD77402) += rfd77402.o
|
|
obj-$(CONFIG_SRF04) += srf04.o
|
|
obj-$(CONFIG_SRF08) += srf08.o
|
|
obj-$(CONFIG_SX9500) += sx9500.o
|
|
obj-$(CONFIG_VL53L0X_I2C) += vl53l0x-i2c.o
|
|
|