mirror of
https://github.com/andreili/klipper.git
synced 2025-08-24 03:44:06 +02:00
Commit b6ccd268 inadvertently broke the simulator build - fix it. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
26 lines
413 B
Plaintext
26 lines
413 B
Plaintext
# Kconfig settings for compiling and running the firmware on the host
|
|
# processor for simulation purposes.
|
|
|
|
if MACH_SIMU
|
|
|
|
config BOARD_DIRECTORY
|
|
string
|
|
default "simulator"
|
|
|
|
config SIMULATOR_SELECT
|
|
bool
|
|
default y
|
|
select HAVE_GPIO
|
|
select HAVE_GPIO_ADC
|
|
select HAVE_GPIO_SPI
|
|
select HAVE_GPIO_HARD_PWM
|
|
|
|
config SERIAL
|
|
default y
|
|
|
|
config CLOCK_FREQ
|
|
int
|
|
default 20000000
|
|
|
|
endif
|