1# USB AUDIO configuration options 2 3# Copyright (c) 2020 Nordic Semiconductor ASA 4# SPDX-License-Identifier: Apache-2.0 5 6config USB_DEVICE_AUDIO 7 bool "USB Audio Device Class Driver" 8 select EXPERIMENTAL 9 select USB_COMPOSITE_DEVICE 10 help 11 USB Audio Device Class driver. 12 Zephyr USB Audio Class is considered experimental 13 and not full. 14 Device configuration is done via dt overlay. 15 16if USB_DEVICE_AUDIO 17 18module = USB_AUDIO 19module-str = USB Audio 20source "subsys/logging/Kconfig.template.log_config" 21 22endif #USB_DEVICE_AUDIO 23