bluez5: backend-native: Handle AT+CCWA command

Claim that call waiting notifications are supported.
Required for some devices (e.g. Soundcore Motion 300),
as they stop sending commands if the reply to CCWA is not OK.
This commit is contained in:
Severin von Wnuck-Lipinski 2024-08-10 13:10:19 +02:00 committed by Wim Taymans
parent ba7656fcfd
commit 55dc9c3c27

View file

@ -975,6 +975,13 @@ next_indicator:
}
rfcomm_send_reply(rfcomm, "OK");
} else if (spa_strstartswith(buf, "AT+CCWA=")) {
/*
* Claim that call waiting notifications are supported.
* Required for some devices (e.g. Soundcore Motion 300),
* as they stop sending commands if the reply to CCWA is not OK.
*/
rfcomm_send_reply(rfcomm, "OK");
} else if (spa_strstartswith(buf, "AT+CLCC")) {
struct spa_list *calls;
struct call *call;