1# Private config options for eSPI sample app
2
3# Copyright (c) 2019 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "Enhanced Serial Peripheral Interface application"
7
8config ESPI_VIRTUAL_WIRE_TIMEOUT
9	int "Timeout for virtual wires"
10	default 5000
11	help
12	  Timeout for virtual wires
13
14config ESPI_USE_BOARD_POWER
15	bool "Use board power"
16	depends on $(dt_nodelabel_enabled,board_power)
17	select GPIO
18	default y
19
20source "Kconfig.zephyr"
21