1/* 2 * Copyright (c) 2019 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&zephyr_udc0 { 8 hp_0 { 9 compatible = "usb-audio-hp"; 10 feature-mute; 11 channel-l; 12 channel-r; 13 14 feature-volume; 15 volume-max = <0x0500>; 16 volume-min = <0xBA00>; 17 volume-res = <0x100>; 18 }; 19 mic_0 { 20 compatible = "usb-audio-mic"; 21 feature-mute; 22 channel-l; 23 channel-r; 24 }; 25}; 26