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

Commit fbc24970 authored by Aishwarya Mallampati's avatar Aishwarya Mallampati
Browse files

Added getMaxCharPerTextMessage() API.

Bug: 260896985
Test: atest CtsTelephonyTestCases
Change-Id: Ie42bf3091a4d7b24842c9346f7032e0db0f4ca17
parent 8387422c
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -5263,6 +5263,15 @@ public abstract class Phone extends Handler implements PhoneInternalInterface {
        mCi.stopSendingSatellitePointingInfo(result);
    }

    /**
     * Get maximum number of characters per text message on satellite.
     * @param result - message object which contains maximum characters on success
     *               and error code on failure.
     */
    public void getMaxCharactersPerSatelliteTextMessage(Message result) {
        mCi.getMaxCharactersPerSatelliteTextMessage(result);
    }

    /**
     * Registers for pointing info changed from satellite modem.
     *
+0 −1
Original line number Diff line number Diff line
@@ -6026,7 +6026,6 @@ public class RILUtils {
            CommandException.Error error) {
        switch (error) {
            case INTERNAL_ERR:
                return SatelliteManager.SATELLITE_SERVICE_INTERNAL_ERROR;
            case MODEM_ERR:
                return SatelliteManager.SATELLITE_SERVICE_MODEM_ERROR;
            case SYSTEM_ERR: