aboutsummaryrefslogtreecommitdiffstats
path: root/src/simulator/Kconfig
blob: cda64b5aa5b282166c5ea3021848eac9c8d451a3 (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
# 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