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

Commit df847068 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Root-Canal: Adjust the eSCO retransmission window" am: 70bb86a5

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/1948545

Change-Id: Ib59abaf51c41e082b9b115f86d8a2269d2ad33b3
parents 287d637c 70bb86a5
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);