Add support for virtual USB host controller intended for use together with virtual bus and virtual device controllers. This driver is not an emulation of any real host controller. The driver has initial support for handling control and bulk transfers. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
8 lines
264 B
CMake
8 lines
264 B
CMake
# Copyright (c) 2022 Nordic Semiconductor
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources(uhc_common.c)
|
|
zephyr_library_sources_ifdef(CONFIG_UHC_MAX3421E uhc_max3421e.c)
|
|
zephyr_library_sources_ifdef(CONFIG_UHC_VIRTUAL uhc_virtual.c)
|