hfp: use round robin for outgoing connections

This commit is contained in:
Matthias Ringwald 2024-04-02 11:08:15 +02:00
parent c874aa4683
commit a54f744344
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- SM: ignore Security Request after re-encryption has started
- ATT Server: support delayed read responses for registered services
- ATT Server: allow to start crypto operation from delayed att read/write request
- HFP: use round robin for outgoing connections
- HFP HF: send HF Indicator update only if enabled by AG
- 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

View File

@ -644,7 +644,7 @@ static hfp_connection_t * create_hfp_connection_context(void){
hfp_reset_context_flags(hfp_connection);
btstack_linked_list_add(&hfp_connections, (btstack_linked_item_t*)hfp_connection);
btstack_linked_list_add_tail(&hfp_connections, (btstack_linked_item_t*)hfp_connection);
return hfp_connection;
}