2012-04-25 15:54:59 +01:00
|
|
|
#
|
|
|
|
# Makefile for the industrial I/O core.
|
|
|
|
#
|
|
|
|
|
|
|
|
obj-$(CONFIG_IIO) += industrialio.o
|
|
|
|
industrialio-y := industrialio-core.o industrialio-event.o inkern.o
|
|
|
|
industrialio-$(CONFIG_IIO_BUFFER) += industrialio-buffer.o
|
|
|
|
industrialio-$(CONFIG_IIO_TRIGGER) += industrialio-trigger.o
|
|
|
|
|
2015-11-09 09:13:59 +02:00
|
|
|
obj-$(CONFIG_IIO_CONFIGFS) += industrialio-configfs.o
|
2016-04-25 16:15:51 +03:00
|
|
|
obj-$(CONFIG_IIO_SW_DEVICE) += industrialio-sw-device.o
|
2015-11-09 09:14:00 +02:00
|
|
|
obj-$(CONFIG_IIO_SW_TRIGGER) += industrialio-sw-trigger.o
|
2015-08-20 22:37:39 +03:00
|
|
|
obj-$(CONFIG_IIO_TRIGGERED_EVENT) += industrialio-triggered-event.o
|
|
|
|
|
2012-09-05 13:56:00 +01:00
|
|
|
obj-y += accel/
|
2012-05-11 15:35:33 +02:00
|
|
|
obj-y += adc/
|
2012-05-11 11:36:54 +02:00
|
|
|
obj-y += amplifiers/
|
2015-08-14 16:54:55 +02:00
|
|
|
obj-y += buffer/
|
2015-09-13 20:26:14 -07:00
|
|
|
obj-y += chemical/
|
2012-09-05 13:56:00 +01:00
|
|
|
obj-y += common/
|
2016-09-28 14:00:01 -04:00
|
|
|
obj-y += counter/
|
2012-11-13 13:28:00 +00:00
|
|
|
obj-y += dac/
|
2015-10-09 16:31:28 +03:00
|
|
|
obj-y += dummy/
|
2012-09-05 13:56:00 +01:00
|
|
|
obj-y += gyro/
|
2012-11-13 13:28:00 +00:00
|
|
|
obj-y += frequency/
|
2015-12-09 22:04:49 -08:00
|
|
|
obj-y += health/
|
2013-12-01 15:04:00 +00:00
|
|
|
obj-y += humidity/
|
2012-11-13 13:28:00 +00:00
|
|
|
obj-y += imu/
|
|
|
|
obj-y += light/
|
2012-09-05 13:56:00 +01:00
|
|
|
obj-y += magnetometer/
|
2013-11-06 00:11:00 +00:00
|
|
|
obj-y += orientation/
|
iio: mcp4531: Driver for Microchip digital potentiometers
Add support for Microchip digital potentiometers and rheostats
MCP4531, MCP4532, MCP4551, MCP4552
MCP4631, MCP4632, MCP4651, MCP4652
DEVICE Wipers Steps Resistor Opts (kOhm) i2c address
MCP4531 1 129 5, 10, 50, 100 010111x
MCP4532 1 129 5, 10, 50, 100 01011xx
MCP4551 1 257 5, 10, 50, 100 010111x
MCP4552 1 257 5, 10, 50, 100 01011xx
MCP4631 2 129 5, 10, 50, 100 0101xxx
MCP4632 2 129 5, 10, 50, 100 01011xx
MCP4651 2 257 5, 10, 50, 100 0101xxx
MCP4652 2 257 5, 10, 50, 100 01011xx
Datasheet: http://www.microchip.com/downloads/en/DeviceDoc/22096b.pdf
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
2015-09-23 16:26:23 +02:00
|
|
|
obj-y += potentiometer/
|
2016-09-24 21:03:00 -07:00
|
|
|
obj-y += potentiostat/
|
2013-08-08 17:39:00 +01:00
|
|
|
obj-y += pressure/
|
2014-12-03 12:53:00 +00:00
|
|
|
obj-y += proximity/
|
2013-08-08 17:39:00 +01:00
|
|
|
obj-y += temperature/
|
2013-04-14 12:54:00 +01:00
|
|
|
obj-y += trigger/
|