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

Commit d6a2f19a authored by Thomas Nguyen's avatar Thomas Nguyen
Browse files

Add ENABLING_SATELLITE state

Bug: 330585109
Test: SatelliteManagerTestOnMockService SatelliteSessionControllerTest SatelliteControllerTest
Manual test with SatelliteTestApp

Change-Id: Ie6e61d7f289ef5d3393c3182629f7b218a37fc01
parent 7e5c107f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -953,6 +953,11 @@ public final class SatelliteManager {
     */
    @FlaggedApi(Flags.FLAG_OEM_ENABLED_SATELLITE_FLAG)
    public static final int SATELLITE_MODEM_STATE_CONNECTED = 7;
    /**
     * The satellite modem is being powered on.
     * @hide
     */
    public static final int SATELLITE_MODEM_STATE_ENABLING_SATELLITE = 8;
    /**
     * Satellite modem state is unknown. This generic modem state should be used only when the
     * modem state cannot be mapped to other specific modem states.
@@ -970,6 +975,7 @@ public final class SatelliteManager {
            SATELLITE_MODEM_STATE_UNAVAILABLE,
            SATELLITE_MODEM_STATE_NOT_CONNECTED,
            SATELLITE_MODEM_STATE_CONNECTED,
            SATELLITE_MODEM_STATE_ENABLING_SATELLITE,
            SATELLITE_MODEM_STATE_UNKNOWN
    })
    @Retention(RetentionPolicy.SOURCE)