mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-16 04:13:37 +00:00
avrcp: use round robin for outgoing connections
This commit is contained in:
parent
dbdb76a871
commit
d3a84258a9
@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
- HFP AG: send OK after SLC for HF that does not support 3-way-calling or HF Indicators
|
||||
- HSP HS: use EV3 and 2EV3 packets for 7.5 ms voice interval
|
||||
- AVDTP: use round robin for outgoing connections
|
||||
- AVRCP: use round robin for outgoing connections
|
||||
|
||||
### Changed
|
||||
- HCI: hci_reserved_packet_buffer and higher layer functions asserts if packet buffer is free instead of return value
|
||||
|
@ -568,7 +568,7 @@ static avrcp_connection_t * avrcp_create_connection(avrcp_role_t role, bd_addr_t
|
||||
|
||||
log_info("avrcp_create_connection, role %d", role);
|
||||
(void)memcpy(connection->remote_addr, remote_addr, 6);
|
||||
btstack_linked_list_add(&avrcp_connections, (btstack_linked_item_t *) connection);
|
||||
btstack_linked_list_add_tail(&avrcp_connections, (btstack_linked_item_t *) connection);
|
||||
return connection;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user