|
1 | 1 | /* |
2 | | - * Copyright (c) 2022-2023 Nordic Semiconductor ASA |
| 2 | + * Copyright (c) 2022-2024 Nordic Semiconductor ASA |
3 | 3 | * Copyright (c) 2024 Demant A/S |
4 | 4 | * |
5 | 5 | * SPDX-License-Identifier: Apache-2.0 |
6 | 6 | */ |
7 | 7 |
|
8 | | -#include <ctype.h> |
| 8 | +#include <errno.h> |
| 9 | +#include <stdint.h> |
| 10 | +#include <string.h> |
9 | 11 | #include <strings.h> |
10 | 12 |
|
| 13 | +#include <zephyr/autoconf.h> |
| 14 | +#include <zephyr/bluetooth/addr.h> |
| 15 | +#include <zephyr/bluetooth/audio/lc3.h> |
11 | 16 | #include <zephyr/bluetooth/bluetooth.h> |
12 | 17 | #include <zephyr/bluetooth/audio/audio.h> |
13 | 18 | #include <zephyr/bluetooth/audio/bap.h> |
14 | 19 | #include <zephyr/bluetooth/audio/pacs.h> |
| 20 | +#include <zephyr/bluetooth/conn.h> |
| 21 | +#include <zephyr/bluetooth/gap.h> |
| 22 | +#include <zephyr/bluetooth/hci.h> |
| 23 | +#include <zephyr/bluetooth/hci_types.h> |
| 24 | +#include <zephyr/bluetooth/iso.h> |
| 25 | +#include <zephyr/bluetooth/uuid.h> |
| 26 | +#include <zephyr/kernel.h> |
| 27 | +#include <zephyr/net_buf.h> |
15 | 28 | #include <zephyr/sys/byteorder.h> |
| 29 | +#include <zephyr/sys/printk.h> |
| 30 | +#include <zephyr/sys/util.h> |
| 31 | +#include <zephyr/sys/util_macro.h> |
| 32 | +#include <zephyr/sys_clock.h> |
| 33 | +#include <zephyr/toolchain.h> |
| 34 | + |
16 | 35 | #if defined(CONFIG_LIBLC3) |
17 | 36 | #include "lc3.h" |
18 | 37 | #endif /* defined(CONFIG_LIBLC3) */ |
19 | 38 | #if defined(CONFIG_USB_DEVICE_AUDIO) |
| 39 | +#include <zephyr/device.h> |
| 40 | +#include <zephyr/devicetree.h> |
20 | 41 | #include <zephyr/usb/usb_device.h> |
21 | 42 | #include <zephyr/usb/class/usb_audio.h> |
22 | 43 | #include <zephyr/sys/ring_buffer.h> |
|
0 commit comments