mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
Allow use host GPIO pins for non-realtime purposes. Signed-off-by: Andrey Kunitsyn <blackicebox@gmail.com>
25 lines
419 B
Plaintext
25 lines
419 B
Plaintext
# Kconfig settings for compiling and running the micro-controller code
|
|
# in a Linux process
|
|
|
|
if MACH_LINUX
|
|
|
|
config LINUX_SELECT
|
|
bool
|
|
default y
|
|
select HAVE_GPIO_ADC
|
|
select HAVE_GPIO_SPI
|
|
select HAVE_GPIO_HARD_PWM
|
|
select HAVE_GPIO_I2C
|
|
select HAVE_GPIO_BITBANGING
|
|
select HAVE_GPIO
|
|
|
|
config BOARD_DIRECTORY
|
|
string
|
|
default "linux"
|
|
|
|
config CLOCK_FREQ
|
|
int
|
|
default 50000000
|
|
|
|
endif
|