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

Commit e4b7ab8d authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Add satellite modem busy error code." into udc-dev am: 95977e06 am:...

Merge "Add satellite modem busy error code." into udc-dev am: 95977e06 am: ea9eab0d am: a4b32a0d

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/22612534



Change-Id: I7c33fb54380dc4e7205a9014e3748638f092bcd3
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 0309e162 a4b32a0d
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -278,6 +278,11 @@ public class SatelliteManager {
     */
    public static final int SATELLITE_REQUEST_IN_PROGRESS = 21;

    /**
     * Satellite modem is currently busy due to which current request cannot be processed.
     */
    public static final int SATELLITE_MODEM_BUSY = 22;

    /** @hide */
    @IntDef(prefix = {"SATELLITE_"}, value = {
            SATELLITE_ERROR_NONE,
@@ -301,7 +306,8 @@ public class SatelliteManager {
            SATELLITE_NOT_REACHABLE,
            SATELLITE_NOT_AUTHORIZED,
            SATELLITE_NOT_SUPPORTED,
            SATELLITE_REQUEST_IN_PROGRESS
            SATELLITE_REQUEST_IN_PROGRESS,
            SATELLITE_MODEM_BUSY
    })
    @Retention(RetentionPolicy.SOURCE)
    public @interface SatelliteError {}