Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment