Move the definition of SERIAL_BAUD to the main src/Kconfig file. Only show this as an option if the user selects the ability to configure low-level options. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
23 lines
384 B
Plaintext
23 lines
384 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 CLOCK_FREQ
|
|
int
|
|
default 20000000
|
|
|
|
endif
|