1# Copyright (c) 2022 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4config UDC_VIRTUAL 5 bool "Virtual USB device controller driver" 6 select UVB 7 default y 8 depends on DT_HAS_ZEPHYR_UDC_VIRTUAL_ENABLED 9 help 10 Virtual USB device controller driver. 11 12config UDC_VIRTUAL_STACK_SIZE 13 int "Virtual controller driver internal thread stack size" 14 depends on UDC_VIRTUAL 15 default 512 16 help 17 Virtual device controller driver internal thread stack size. 18 19config UDC_VIRTUAL_THREAD_PRIORITY 20 int "Virtual controller driver thread priority" 21 depends on UDC_VIRTUAL 22 default 8 23 help 24 Virtual device controller driver thread priority. 25