zephyr/drivers/serial/Kconfig.test
Thomas Stranger 94f7ed356f drivers: serial: add a dummy driver for vnd,serial
This commit adds a serial dummy driver compatible to vnd,serial.
This is needed that devices can access the uart device in tests
like tests/drivers/build_all/... .

Add myself as codeowner to avoid complicance check failure.

Signed-off-by: Thomas Stranger <thomas.stranger@outlook.com>
2021-07-14 11:10:08 -05:00

9 lines
258 B
Plaintext

# Copyright (c) 2021, Thomas Stranger
# SPDX-License-Identifier: Apache-2.0
DT_COMPAT_VND_SERIAL := vnd,serial
# Hidden option to enable the vnd,serial dummy driver used in testing.
config SERIAL_TEST
def_bool $(dt_compat_enabled,$(DT_COMPAT_VND_SERIAL))