Commit 00ef7708 authored by Mike Looijmans's avatar Mike Looijmans Committed by Jonathan Cameron
Browse files

iio: adc: ti-ads1298: Add driver



Skeleton driver for the TI ADS1298 medical ADC. This device is
typically used for ECG and similar measurements. Supports data
acquisition at configurable scale and sampling frequency.

Reviewed-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarMike Looijmans <mike.looijmans@topic.nl>
Link: https://lore.kernel.org/r/20240216153020.485201-2-mike.looijmans@topic.nl


Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent bc4d251e
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -1312,6 +1312,17 @@ config TI_ADS1100
	  This driver can also be built as a module. If so, the module will be
	  called ti-ads1100.

config TI_ADS1298
	tristate "Texas Instruments ADS1298"
	depends on SPI
	select IIO_BUFFER
	help
	  If you say yes here you get support for Texas Instruments ADS1298
	  medical ADC chips

	  This driver can also be built as a module. If so, the module will be
	  called ti-ads1298.

config TI_ADS7950
	tristate "Texas Instruments ADS7950 ADC driver"
	depends on SPI && GPIOLIB
+1 −0
Original line number Diff line number Diff line
@@ -116,6 +116,7 @@ obj-$(CONFIG_TI_ADC128S052) += ti-adc128s052.o
obj-$(CONFIG_TI_ADC161S626) += ti-adc161s626.o
obj-$(CONFIG_TI_ADS1015) += ti-ads1015.o
obj-$(CONFIG_TI_ADS1100) += ti-ads1100.o
obj-$(CONFIG_TI_ADS1298) += ti-ads1298.o
obj-$(CONFIG_TI_ADS7924) += ti-ads7924.o
obj-$(CONFIG_TI_ADS7950) += ti-ads7950.o
obj-$(CONFIG_TI_ADS8344) += ti-ads8344.o
+769 −0

File added.

Preview size limit exceeded, changes collapsed.