From 002569caad872da7768de42d11fa7d24c45b2f6e Mon Sep 17 00:00:00 2001 From: Nordic Builder Date: Fri, 22 Nov 2024 13:44:42 +0000 Subject: [PATCH 1/2] manifest: Update sdk-zephyr revision (auto-manifest PR) Automatically created by Github Action Signed-off-by: Nordic Builder --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index 9d85df151cce..889532a51fbe 100644 --- a/west.yml +++ b/west.yml @@ -69,7 +69,7 @@ manifest: # https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html - name: zephyr repo-path: sdk-zephyr - revision: f4cb3034fc6db139d2917b2f0fff2946ac034e90 + revision: 01976a7968bd9fa0a601079c35022e06bfc809e7 import: # In addition to the zephyr repository itself, NCS also # imports the contents of zephyr/west.yml at the above From 27e52e6a999b087aae80621c746c1e8b9d055344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristoffer=20Rist=20Sk=C3=B8ien?= Date: Mon, 25 Nov 2024 15:02:52 +0100 Subject: [PATCH 2/2] Applications: Audio: Added parameter to CAP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - OCT-3214 - Added release=true. Releated to cherry-pick Signed-off-by: Kristoffer Rist Skøien --- .../src/bluetooth/bt_stream/unicast/unicast_client.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c b/applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c index 150b2b8492b0..26aabe4b25fb 100644 --- a/applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c +++ b/applications/nrf5340_audio/src/bluetooth/bt_stream/unicast/unicast_client.c @@ -757,6 +757,7 @@ static int update_cap_sink_stream_qos(struct le_audio_unicast_server *unicast_se param.streams = streams; param.count = 0; param.type = BT_CAP_SET_TYPE_AD_HOC; + param.release = true; if (playing_state && le_audio_ep_state_check(unicast_server->cap_sink_stream.bap_stream.ep, @@ -1680,6 +1681,7 @@ int unicast_client_stop(uint8_t cig_index) param.streams = streams; param.count = 0; param.type = BT_CAP_SET_TYPE_AD_HOC; + param.release = true; le_audio_event_publish(LE_AUDIO_EVT_NOT_STREAMING, NULL, 0);