mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-21 21:41:13 +00:00
hci: sco tx scheduler - remove arbitrary threshold
This commit is contained in:
parent
fa53fe20c5
commit
761d36a943
@ -2580,7 +2580,7 @@ static void sco_schedule_tx(hci_connection_t * conn){
|
|||||||
int packet_offset = (int8_t) (conn->sco_tx_count - conn->sco_rx_count);
|
int packet_offset = (int8_t) (conn->sco_tx_count - conn->sco_rx_count);
|
||||||
tx_ms = conn->sco_rx_ms + ((packet_offset * 15) >> 1) + SCO_TX_AFTER_RX_MS;
|
tx_ms = conn->sco_rx_ms + ((packet_offset * 15) >> 1) + SCO_TX_AFTER_RX_MS;
|
||||||
time_delta_ms = (int) (tx_ms - now);
|
time_delta_ms = (int) (tx_ms - now);
|
||||||
if (time_delta_ms > 3){ // arbitrary threshold
|
if (time_delta_ms >= 3){
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
// skip packet
|
// skip packet
|
||||||
|
Loading…
x
Reference in New Issue
Block a user