From fff9c326c654d467a730bbd69342f5599541feeb Mon Sep 17 00:00:00 2001 From: Emil Gydesen Date: Wed, 21 Aug 2024 15:59:59 +0200 Subject: [PATCH] Bluetooth: TBS: Add UTF8 requirement to Kconfigs The UTF8 implementions for both client and server both use the utf8 API which require CONFIG_UTF8. Signed-off-by: Emil Gydesen --- subsys/bluetooth/audio/Kconfig.tbs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/subsys/bluetooth/audio/Kconfig.tbs b/subsys/bluetooth/audio/Kconfig.tbs index 94e17710f3b..2958d134366 100644 --- a/subsys/bluetooth/audio/Kconfig.tbs +++ b/subsys/bluetooth/audio/Kconfig.tbs @@ -13,6 +13,7 @@ config BT_TBS bool "Telephone Bearer Service Support" select BT_CCID select BT_GATT_DYNAMIC_DB + depends on UTF8 help This option enables support for Telephone Bearer Service. @@ -134,11 +135,13 @@ endif # BT_TBS config BT_TBS_CLIENT_GTBS bool "Generic Telephone Bearer Service client support" + depends on UTF8 help This option enables support for the GTBS-oriented Call Control client. config BT_TBS_CLIENT_TBS bool "Telephone Bearer Service client support" + depends on UTF8 help This option enables support for the TBS-oriented Call Control client.