diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-07-19 23:59:35 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-07-20 10:44:31 -0400 |
commit | 4a6254fac3ae27d5c17a7d0acb94a263aeed4da1 (patch) | |
tree | 03600085489176409f34d7f9e1ad7d51b18ec62d /src/pru | |
parent | 649d26e093497991ebc1a89f4a5cfeb29d4602d4 (diff) | |
download | kutter-4a6254fac3ae27d5c17a7d0acb94a263aeed4da1.tar.gz kutter-4a6254fac3ae27d5c17a7d0acb94a263aeed4da1.tar.xz kutter-4a6254fac3ae27d5c17a7d0acb94a263aeed4da1.zip |
build: Allow boards to disable digital input/output support
Allow the micro-controller code to be built without support for
regular gpio pins. In this case, the code for endstops, steppers, and
gpiocmds will be disabled.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/pru')
-rw-r--r-- | src/pru/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pru/Kconfig b/src/pru/Kconfig index 5b177272..156d2e67 100644 --- a/src/pru/Kconfig +++ b/src/pru/Kconfig @@ -5,6 +5,7 @@ if MACH_PRU config PRU_SELECT bool default y + select HAVE_GPIO select HAVE_GPIO_ADC config BOARD_DIRECTORY |