Home
last modified time | relevance | path

Searched +full:hp +full:- +full:feature +full:- +full:mute (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/dts/bindings/usb/
Dusb-audio-hs.yaml2 # SPDX-License-Identifier: Apache-2.0
8 compatible: "usb-audio-hs"
10 include: [usb-audio.yaml, usb-audio-feature-volume.yaml]
13 mic-resolution:
17 - 8
18 - 16
19 - 24
20 - 32
21 mic-sync-type:
29 - "No Synchronization"
[all …]
Dusb-audio-hp.yaml2 # SPDX-License-Identifier: Apache-2.0
8 compatible: "usb-audio-hp"
10 include: [usb-audio.yaml, usb-audio-feature-volume.yaml]
17 - 8
18 - 16
19 - 24
20 - 32
21 sample-rate-hz:
24 polling-interval:
28 channel-l:
[all …]
/Zephyr-latest/samples/subsys/usb/audio/headset/
Dapp.overlay4 * SPDX-License-Identifier: Apache-2.0
9 compatible = "usb-audio-hs";
10 mic-feature-mute;
11 mic-channel-l;
12 mic-channel-r;
14 hp-feature-mute;
15 hp-channel-l;
16 hp-channel-r;
18 hp-feature-volume;
19 volume-max = <0x0500>;
[all …]
/Zephyr-latest/samples/bluetooth/bap_broadcast_sink/boards/
Dnrf52833dk_nrf52833.overlay2 compatible = "nordic,nrf-usbd";
6 compatible = "usb-audio-hs";
7 mic-feature-mute;
8 mic-channel-l;
9 mic-channel-r;
11 hp-feature-mute;
12 hp-channel-l;
13 hp-channel-r;
Dnrf52840dongle_nrf52840.overlay2 compatible = "nordic,nrf-usbd";
6 compatible = "usb-audio-hs";
7 mic-feature-mute;
8 mic-channel-l;
9 mic-channel-r;
11 hp-feature-mute;
12 hp-channel-l;
13 hp-channel-r;
Dnrf5340dk_nrf5340_cpuapp.overlay2 compatible = "nordic,nrf-usbd";
6 compatible = "usb-audio-hs";
7 mic-feature-mute;
8 mic-channel-l;
9 mic-channel-r;
11 hp-feature-mute;
12 hp-channel-l;
13 hp-channel-r;
/Zephyr-latest/samples/bluetooth/bap_broadcast_source/boards/
Dnrf52833dk_nrf52833.overlay2 compatible = "nordic,nrf-usbd";
6 compatible = "usb-audio-hs";
7 mic-feature-mute;
8 mic-channel-l;
9 mic-channel-r;
11 hp-feature-mute;
12 hp-channel-l;
13 hp-channel-r;
Dnrf52840dongle_nrf52840.overlay2 compatible = "nordic,nrf-usbd";
6 compatible = "usb-audio-hs";
7 mic-feature-mute;
8 mic-channel-l;
9 mic-channel-r;
11 hp-feature-mute;
12 hp-channel-l;
13 hp-channel-r;
Dnrf5340dk_nrf5340_cpuapp.overlay2 compatible = "nordic,nrf-usbd";
6 compatible = "usb-audio-hs";
7 mic-feature-mute;
8 mic-channel-l;
9 mic-channel-r;
11 hp-feature-mute;
12 hp-channel-l;
13 hp-channel-r;
/Zephyr-latest/tests/bluetooth/shell/boards/
Dnrf5340dk_nrf5340_cpuapp.overlay2 compatible = "nordic,nrf-usbd";
6 compatible = "usb-audio-hs";
7 mic-feature-mute;
8 mic-channel-l;
9 mic-channel-r;
11 hp-feature-mute;
12 hp-channel-l;
13 hp-channel-r;
/Zephyr-latest/samples/subsys/usb/audio/headphones_microphone/
Dapp.overlay4 * SPDX-License-Identifier: Apache-2.0
9 compatible = "usb-audio-hp";
10 feature-mute;
11 channel-l;
12 channel-r;
14 feature-volume;
15 volume-max = <0x0500>;
16 volume-min = <0xBA00>;
17 volume-res = <0x100>;
20 compatible = "usb-audio-mic";
[all …]
/Zephyr-latest/boards/nordic/nrf5340_audio_dk/
Dnrf5340_audio_dk_nrf5340_cpuapp_common.dtsi2 * Copyright (c) 2020-2022 Nordic Semiconductor ASA
4 * SPDX-License-Identifier: Apache-2.0
6 #include "nrf5340_audio_dk_nrf5340_cpuapp_common-pinctrl.dtsi"
7 #include <zephyr/dt-bindings/sensor/ina230.h>
12 zephyr,shell-uart = &uart0;
13 zephyr,uart-mcumgr = &uart0;
14 zephyr,bt-mon-uart = &uart0;
15 zephyr,bt-c2h-uart = &uart0;
16 zephyr,bt-hci = &bt_hci_ipc0;
20 gpio_fwd: nrf-gpio-forwarder {
[all …]
/Zephyr-latest/subsys/usb/device/class/audio/
Daudio.c4 * SPDX-License-Identifier: Apache-2.0
50 /* Not applicable for not support volume feature device */
65 * @note Feature unit has variable length and only 1st field of
70 * @param [in] dev Device type. Must be HP/MIC
105 * @note Feature units have variable length and only 1st field of
186 * feature unit descriptor.
190 return (fu->bLength - FU_FIXED_ELEMS_SIZE)/sizeof(uint16_t); in get_num_of_channels()
195 * the feature unit descriptor.
199 return sys_get_le16((uint8_t *)&fu->bmaControls[0]); in get_controls()
210 ((uint8_t *)fu + fu->bLength); in get_fu_dir()
[all …]