goep_client: use round robin for outgoing connections

This commit is contained in:
Matthias Ringwald 2024-04-02 11:15:05 +02:00
parent d3a84258a9
commit 0e57192257
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- 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
- GOEP Client: 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

@ -529,7 +529,7 @@ uint8_t goep_client_connect_l2cap(goep_client_t *goep_client, l2cap_ertm_config_
memcpy(&goep_client->ertm_config, l2cap_ertm_config, sizeof(l2cap_ertm_config_t));
goep_client->ertm_buffer_size = l2cap_ertm_buffer_size;
goep_client->ertm_buffer = l2cap_ertm_buffer;
btstack_linked_list_add(&goep_clients, (btstack_linked_item_t *) goep_client);
btstack_linked_list_add_tail(&goep_clients, (btstack_linked_item_t *) goep_client);
goep_client->l2cap_psm = l2cap_psm;