Files
klipper/src/linux/Kconfig
Arksine 20ba396466 linux: implement i2c
Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
2020-01-13 22:29:50 -05:00

23 lines
366 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
config BOARD_DIRECTORY
string
default "linux"
config CLOCK_FREQ
int
default 20000000
endif