avrcp: use round robin for outgoing connections

This commit is contained in:
Matthias Ringwald 2024-04-02 11:14:38 +02:00
parent dbdb76a871
commit d3a84258a9
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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;
}