zephyr/samples/drivers/espi/Kconfig
Gerard Marull-Paretas 87c6693f43 samples: drivers: espi: add option to control board_power
Add a new option to control usage of DT nodelabel board_power. This
option also allows to select GPIO when needed.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2024-12-18 18:15:15 +01:00

21 lines
450 B
Plaintext

# Private config options for eSPI sample app
# Copyright (c) 2019 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
mainmenu "Enhanced Serial Peripheral Interface application"
config ESPI_VIRTUAL_WIRE_TIMEOUT
int "Timeout for virtual wires"
default 5000
help
Timeout for virtual wires
config ESPI_USE_BOARD_POWER
bool "Use board power"
depends on $(dt_nodelabel_enabled,board_power)
select GPIO
default y
source "Kconfig.zephyr"