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

Commit fa97f8d0 authored by Mandip Savsani's avatar Mandip Savsani
Browse files

leaudio: Make LE Connection Interval a multiple of SDU_Interval

Updating CI to 60 msec which is in multiple of both (7.5 and 10 msec)
SDU_Interval. This will help improve scheduling of CIS and associated LE
connection.

Test: atest --host bluetooth_le_audio_client_test

Change-Id: I49e9719b3359a182a88d1c66145408091fbe4d36
parent afee2d5c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -544,7 +544,7 @@ struct le_impl : public bluetooth::hci::LeAddressManagerCallback {
    OwnAddressType own_address_type =
        static_cast<OwnAddressType>(le_address_manager_->GetCurrentAddress().GetAddressType());
    uint16_t conn_interval_min = 0x0018;
    uint16_t conn_interval_max = 0x0028;
    uint16_t conn_interval_max = 0x0030;
    uint16_t conn_latency = 0x0000;
    uint16_t supervision_timeout = 0x001f4;
    ASSERT(check_connection_parameters(conn_interval_min, conn_interval_max, conn_latency, supervision_timeout));