Bluetooth: audio: Factor out bt_audio_iso pool

This adds common bt_audio_iso pool that will be used across all the
roles/profiles. The pool range is dependent on the CONFIG_BT_ISO_MAX_CHAN
which is the maximum number of ISO connections the host can maintain.

Signed-off-by: Mariusz Skamra <mariusz.skamra@codecoup.pl>
This commit is contained in:
Mariusz Skamra 2022-10-21 14:35:10 +02:00 committed by Fabio Baltieri
commit 3fa456905d
13 changed files with 814 additions and 713 deletions

View file

@ -1,7 +1,10 @@
# SPDX-License-Identifier: Apache-2.0
zephyr_library()
zephyr_library_sources(audio.c)
zephyr_library_sources(
audio.c
audio_iso.c
)
if (CONFIG_BT_VOCS OR CONFIG_BT_VOCS_CLIENT)
zephyr_library_sources(vocs.c)