klipper/src/pru/Kconfig
Kevin O'Connor 4a6254fac3 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>
2017-07-20 10:44:31 -04:00

20 lines
237 B
Plaintext

# Kconfig settings for PRU
if MACH_PRU
config PRU_SELECT
bool
default y
select HAVE_GPIO
select HAVE_GPIO_ADC
config BOARD_DIRECTORY
string
default "pru"
config CLOCK_FREQ
int
default 200000000
endif