mirror of
https://github.com/andreili/klipper.git
synced 2025-09-22 21:04:41 +02:00
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>
20 lines
237 B
Plaintext
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
|