diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-27 12:04:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-27 12:10:25 -0400 |
commit | d6518515679b939d1fd5c4af490c4ff9e75f88a9 (patch) | |
tree | 1b76a0c3daa6bc7fea61672685ac2e8d45e4a1a5 /src/pru | |
parent | 41058d22a6f607a800eb69ae642c7e1da967db34 (diff) | |
download | kutter-d6518515679b939d1fd5c4af490c4ff9e75f88a9.tar.gz kutter-d6518515679b939d1fd5c4af490c4ff9e75f88a9.tar.xz kutter-d6518515679b939d1fd5c4af490c4ff9e75f88a9.zip |
pru: Disable ADC reading directly from the PRU
The PRU code size has grown too close to the maximum - remove the ADC
code to reduce its overall size. (On the beaglebone, the Linux
process can, and typically does, do the ADC reading.)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/pru')
-rw-r--r-- | src/pru/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pru/Kconfig b/src/pru/Kconfig index 156d2e67..bc521536 100644 --- a/src/pru/Kconfig +++ b/src/pru/Kconfig @@ -6,7 +6,7 @@ config PRU_SELECT bool default y select HAVE_GPIO - select HAVE_GPIO_ADC + #select HAVE_GPIO_ADC config BOARD_DIRECTORY string |