Bluetooth: Audio: Microphone Input Control Service and Client

This commit implements the microphone input  control service
(MICS) and client, The implementation supports and uses the
Audio Input Control Service (AICS) secondary service.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
Emil Gydesen 2021-05-03 17:28:01 +02:00 committed by Carles Cufí
commit 2c67bafb7b
9 changed files with 1540 additions and 2 deletions

View file

@ -14,3 +14,8 @@ if (CONFIG_BT_VCS OR CONFIG_BT_VCS_CLIENT)
zephyr_library_sources(vcs.c)
endif()
zephyr_library_sources_ifdef(CONFIG_BT_VCS_CLIENT vcs_client.c)
if (CONFIG_BT_MICS OR CONFIG_BT_MICS_CLIENT)
zephyr_library_sources(mics.c)
endif()
zephyr_library_sources_ifdef(CONFIG_BT_MICS_CLIENT mics_client.c)