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

Commit ad5872ba authored by Peter Qiu's avatar Peter Qiu Committed by android-build-merger
Browse files

Merge "WifiConfiguration: add constants for radio band" into mm-wireless-dev...

Merge "WifiConfiguration: add constants for radio band" into mm-wireless-dev am: 03d7581c am: b3f9ee0d
am: e9c4bc2c

* commit 'e9c4bc2c':
  WifiConfiguration: add constants for radio band
parents f84f0408 e9c4bc2c
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -238,13 +238,25 @@ public class WifiConfiguration implements Parcelable {
     */
    public String BSSID;

    /**
     * 2GHz band.
     * @hide
     */
    public static final int AP_BAND_2GHZ = 0;

    /**
     * 5GHz band.
     * @hide
     */
    public static final int AP_BAND_5GHZ = 1;

    /**
     * The band which AP resides on
     * 0-2G  1-5G
     * By default, 2G is chosen
     * @hide
     */
    public int apBand = 0;
    public int apBand = AP_BAND_2GHZ;

    /**
     * The channel which AP resides on,currently, US only