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

Commit 88c6269a authored by Anthony's avatar Anthony
Browse files

Add enum value for BT main / scanning toggle states

Bug: 215574482
Test: compile
Change-Id: Ic8160375f79acf4fb8b69e90478e86cb1cbf32d4
parent 82d45061
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -39,4 +39,6 @@ enum Setting {
  WIFI_SCANNING = 3,
  AIRPLANE_MODE = 4,
  MICROPHONE = 5,
  BT_MAIN = 6,
  BT_SCANNING = 7,
}
+8 −0
Original line number Diff line number Diff line
@@ -39,4 +39,12 @@ enum Setting {
     * by CHRE.
     */
    MICROPHONE,
    /**
     * The main BT toggle in the Android settings for BT connectivity.
     */
    BT_MAIN,
    /**
     * The "BT scanning" setting for location scans.
     */
    BT_SCANNING,
}