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

Commit abf1ce0d 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 am:...

Merge "Root-Canal: Adjust the eSCO retransmission window" am: 70bb86a5 am: df847068 am: cdc6231b am: 212058ce

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

Change-Id: I7d0714b8751bdb923aef6f6dc44cac161ee69bf0
parents d0f8836c 212058ce
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);