This adds the Write Without Response property to the Broadcast Audio Scan Control Point characteristic, which is mandatory according to specification. --- src/shared/bass.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/bass.c b/src/shared/bass.c index fd4f28ac5..8906ca1ef 100644 --- a/src/shared/bass.c +++ b/src/shared/bass.c @@ -567,7 +567,8 @@ static void bass_new(struct bt_bass_db *bdb) gatt_db_service_add_characteristic(bdb->service, &uuid, BT_ATT_PERM_WRITE, - BT_GATT_CHRC_PROP_WRITE, + BT_GATT_CHRC_PROP_WRITE | + BT_GATT_CHRC_PROP_WRITE_WITHOUT_RESP, NULL, bass_bcast_audio_scan_cp_write, bdb); -- 2.34.1