Add sample code for getting volume to headset sample and headphone_microphone sample Signed-off-by: Saw Xu <Saw1993@126.com>
24 lines
360 B
Plaintext
24 lines
360 B
Plaintext
/*
|
|
* Copyright (c) 2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&zephyr_udc0 {
|
|
hs_0 {
|
|
compatible = "usb-audio-hs";
|
|
mic-feature-mute;
|
|
mic-channel-l;
|
|
mic-channel-r;
|
|
|
|
hp-feature-mute;
|
|
hp-channel-l;
|
|
hp-channel-r;
|
|
|
|
hp-feature-volume;
|
|
volume-max = <0x0500>;
|
|
volume-min = <0xBA00>;
|
|
volume-res = <0x100>;
|
|
};
|
|
};
|