USB audio class samples are generic and can be built for any board that supports USB device and isochronous endpoints. Add app.overlay that uses aliases and remove board specific overlays. Note: USB audio is still experimental and even though the sample can be built for specific platform, it does not mean that it can be run on it without issues. Fixes: #25313 Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
22 lines
297 B
Plaintext
22 lines
297 B
Plaintext
/*
|
|
* Copyright (c) 2019 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
usbd0 {
|
|
hs_0 {
|
|
label = "HEADSET";
|
|
compatible = "usb-audio-hs";
|
|
mic-feature-mute;
|
|
mic-channel-l;
|
|
mic-channel-r;
|
|
|
|
hp-feature-mute;
|
|
hp-channel-l;
|
|
hp-channel-r;
|
|
};
|
|
};
|
|
};
|