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

Commit 61b53b5d authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by Andre Eisenbach
Browse files

Bluetooth: Fix interval low/min values

Bug: 38175945
Test: none
Change-Id: Idf487c7aafc518f2c57be78a1fa979b2c4a383d6
(cherry picked from commit 6b1f39502c7d5f71b42d82ac6d511ee0afd1191e)
parent 6aeb76d4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ public final class AdvertisingSetParameters implements Parcelable {
    * Advertise on low frequency, around every 1000ms. This is the default and
    * preferred advertising mode as it consumes the least power.
    */
    public static final int INTERVAL_LOW = 1600;
    public static final int INTERVAL_HIGH = 1600;

    /**
     * Advertise on medium frequency, around every 250ms. This is balanced
@@ -47,7 +47,7 @@ public final class AdvertisingSetParameters implements Parcelable {
     * has the highest power consumption and should not be used for continuous
     * background advertising.
     */
    public static final int INTERVAL_HIGH = 160;
    public static final int INTERVAL_LOW = 160;

    /**
     * Minimum value for advertising interval.