Bluetooth: Seperate BT_ISO and BT_AUDIO
ISO is a building block for BT_AUDIO but it is not only useful for AUDIO, and as such should be possible to enable without enabling BT_AUDIO. This commit moves iso.c and iso_internal.h to the host directory (from host/audio) and removes the CMakeLists.txt. The /audio directory is left intact for the Kconfig options it provides, and as a directory for future BLE Audio content. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
25be47e7a4
commit
c6132c8fdb
9 changed files with 10 additions and 12 deletions
|
@ -60,6 +60,11 @@ if(CONFIG_BT_HCI_HOST)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
zephyr_library_sources_ifdef(
|
||||
CONFIG_BT_ISO
|
||||
iso.c
|
||||
)
|
||||
|
||||
if(CONFIG_BT_DF)
|
||||
zephyr_library_sources(
|
||||
direction.c
|
||||
|
@ -101,5 +106,3 @@ if(CONFIG_BT_CONN_DISABLE_SECURITY)
|
|||
Do not use in production."
|
||||
)
|
||||
endif()
|
||||
|
||||
add_subdirectory_ifdef(CONFIG_BT_AUDIO audio)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue