aboutsummaryrefslogtreecommitdiffstats
path: root/src/simulator/Kconfig
blob: 9065bb00b379ebe140449694f50de40821f3c428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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

endif