mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-04 04:20:58 +00:00
fix sending of supported geneirc status indicators in ag role
This commit is contained in:
parent
5ca8a1e847
commit
6d0dd6a09e
@ -304,12 +304,12 @@ static int hfp_ag_list_supported_generic_status_indicators_cmd(uint16_t cid){
|
|||||||
|
|
||||||
static int hfp_ag_retrieve_supported_generic_status_indicators_cmd(uint16_t cid){
|
static int hfp_ag_retrieve_supported_generic_status_indicators_cmd(uint16_t cid){
|
||||||
char buffer[40];
|
char buffer[40];
|
||||||
int offset = snprintf(buffer, sizeof(buffer), "\r\n%s:", HFP_GENERIC_STATUS_INDICATOR);
|
int offset = snprintf(buffer, sizeof(buffer), "\r\n%s:(", HFP_GENERIC_STATUS_INDICATOR);
|
||||||
offset += hfp_hf_indicators_join(buffer+offset, sizeof(buffer)-offset);
|
offset += hfp_hf_indicators_join(buffer+offset, sizeof(buffer)-offset);
|
||||||
|
|
||||||
buffer[offset] = 0;
|
buffer[offset] = 0;
|
||||||
|
|
||||||
offset += snprintf(buffer+offset, sizeof(buffer)-offset, "\r\n\r\nOK\r\n");
|
offset += snprintf(buffer+offset, sizeof(buffer)-offset, ")\r\n\r\nOK\r\n");
|
||||||
buffer[offset] = 0;
|
buffer[offset] = 0;
|
||||||
return send_str_over_rfcomm(cid, buffer);
|
return send_str_over_rfcomm(cid, buffer);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user