From d3c0dfbf3699fc98e01909ecf9a2ee834d7f4d41 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Mon, 20 May 2024 12:13:00 +0200 Subject: [PATCH] tests: Bluetooth: tester: Fix assert in OTS MCS OTS support doesn't implement OTS checksum and if this is globally enabled assert is triggered. [00:00:03.409,484] bttester_gap: set_io_cap: io_cap: 0 ASSERTION FAIL [ots_init->cb->obj_cal_checksum] @ WEST_TOPDIR/zephyr/subsys/bluetooth/services/ots/ots.c:476 Callback for object calculate checksum is not set This should be reverted when Zephyr issue #72471 is fixed. Signed-off-by: Szymon Janc --- tests/bluetooth/tester/overlay-le-audio.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/bluetooth/tester/overlay-le-audio.conf b/tests/bluetooth/tester/overlay-le-audio.conf index 6b0186e55d8..4954b75fd9b 100644 --- a/tests/bluetooth/tester/overlay-le-audio.conf +++ b/tests/bluetooth/tester/overlay-le-audio.conf @@ -134,6 +134,8 @@ CONFIG_BT_MPL_OBJECTS=y CONFIG_BT_OTS=y CONFIG_BT_OTS_SECONDARY_SVC=y CONFIG_BT_OTS_MAX_OBJ_CNT=0x30 +#disable OTS checksum support until 72471 is fixed +CONFIG_BT_OTS_OACP_CHECKSUM_SUPPORT=n CONFIG_BT_MCS=y CONFIG_MCTL_LOCAL_PLAYER_LOCAL_CONTROL=y CONFIG_MCTL_REMOTE_PLAYER_CONTROL_OBJECTS=y