diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-08-27 13:58:19 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-09-20 12:55:28 -0400 |
commit | 16d2ec3a905204dd804831611aff37a4b508e0fa (patch) | |
tree | 9f2b4f64b575fae07f24ea599b8796d95d5ec86e /src/linux/Kconfig | |
parent | 4d60567bc66417c48e7c3095ceded6c24ec1888f (diff) | |
download | kutter-16d2ec3a905204dd804831611aff37a4b508e0fa.tar.gz kutter-16d2ec3a905204dd804831611aff37a4b508e0fa.tar.xz kutter-16d2ec3a905204dd804831611aff37a4b508e0fa.zip |
linux: Add support for analog IIO devices
Add support for reading analog values via the standard Linux IIO
interface. This can be used on Replicape boards to sample analog
input pins.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/linux/Kconfig')
-rw-r--r-- | src/linux/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/linux/Kconfig b/src/linux/Kconfig index b80ca3a7..651f0874 100644 --- a/src/linux/Kconfig +++ b/src/linux/Kconfig @@ -3,6 +3,11 @@ if MACH_LINUX +config LINUX_SELECT + bool + default y + select HAVE_GPIO_ADC + config BOARD_DIRECTORY string default "linux" |