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

Commit b83cbc68 authored by Henri Chataing's avatar Henri Chataing
Browse files

Root-Canal: Adjust the eSCO retransmission window

- Increase the window for the retransmission mode
  Optimize for Link Quality: the PTS tool runs
  checks on the link parameters and expects higher
  retransmissions in this case

Bug: 209800014
Tag: #feature
Test: cert/run
Change-Id: I26c2c28ac711cf15deb25f5a2070ea063c5cd61f
parent c99fca95
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);