aboutsummaryrefslogtreecommitdiffstats
path: root/src/simulator/Kconfig
blob: bb74fad63ce4181247ff9d7e8f038d5c5f574c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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

config SERIAL_BAUD
    int
    default 250000

endif