mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-12-25 17:18:37 -07:00
Increase timer resolution for linux mcu Signed-off-by: Andrey Kunitsyn <blackicebox@gmail.com>
22 lines
366 B
Text
22 lines
366 B
Text
# 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 50000000
|
|
|
|
endif
|