From 6decf019d63037940febd2492a7c2498b9ecd9fc Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 11 Aug 2023 13:53:52 +0200 Subject: [PATCH] hfp_ag: trigger WBS config for ENABLE_BCM_PCM_WBS --- CHANGELOG.md | 1 + src/classic/hfp_ag.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26f3a2471..49bcddf51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - HFP: use 'don't care' to accept SCO connections, fixes issue on ESP32 - HFP: fix LC3-WB init - HFP AG: fix setup of audio connection in service level established event +- HFP AG: fix BCM WBS setup - HID Device: set Report Mode as default ### Changed diff --git a/src/classic/hfp_ag.c b/src/classic/hfp_ag.c index 0522cde8c..4b77fc88c 100644 --- a/src/classic/hfp_ag.c +++ b/src/classic/hfp_ag.c @@ -653,6 +653,9 @@ static int codecs_exchange_state_machine(hfp_connection_t * hfp_connection){ #ifdef ENABLE_CC256X_ASSISTED_HFP hfp_cc256x_prepare_for_sco(hfp_connection); #endif +#ifdef ENABLE_BCM_PCM_WBS + hfp_bcm_prepare_for_sco(hfp_connection); +#endif #ifdef ENABLE_RTK_PCM_WBS hfp_connection->rtk_send_sco_config = true; #endif