Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 70bb86a5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Root-Canal: Adjust the eSCO retransmission window"

parents bc10268c b83cbc68
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ std::optional<ScoLinkParameters> ScoConnectionParameters::GetLinkParameters() {
        retransmission_effort == (uint8_t)RetransmissionEffort::OPTIMIZED_FOR_POWER ?
            rx.slots + tx.slots :
        retransmission_effort == (uint8_t)RetransmissionEffort::OPTIMIZED_FOR_LINK_QUALITY ?
            rx.slots + tx.slots : 0;
            2 * (rx.slots + tx.slots) : 0;

      LOG_INFO("Retransmission window: %u slots", retransmission_window);