1# 2# Copyright (c) 2022 Nordic Semiconductor 3# 4# SPDX-License-Identifier: Apache-2.0 5# 6 7menuconfig UVB 8 bool 9 prompt "USB virtual bus" 10 help 11 USB virtual bus service intended for use by virtual UDC 12 and UHC controllers. 13 14if UVB 15 16config UVB_MAX_MESSAGES 17 int "Maximum number of messages allocatable" 18 range 4 256 19 default 16 20 help 21 Maximum number of messages allocatable. 22 23module = UVB 24module-str = USB virtual bus service 25source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config" 26 27endif # UVB 28