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

Commit 08159700 authored by Wink Saville's avatar Wink Saville Committed by Gerrit Code Review
Browse files

Merge "CatService: Add support for GET_CHANNEL_STATUS p-cmd."

parents 8becf90a 86968438
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -64,7 +64,8 @@ public interface AppInterface {
        OPEN_CHANNEL(0x40),
        CLOSE_CHANNEL(0x41),
        RECEIVE_DATA(0x42),
        SEND_DATA(0x43);
        SEND_DATA(0x43),
        GET_CHANNEL_STATUS(0x44);

        private int mValue;

+3 −0
Original line number Diff line number Diff line
@@ -80,6 +80,9 @@ public class CatCmdMessage implements Parcelable {
            mToneSettings = params.settings;
            mTextMsg = params.textMsg;
            break;
        case GET_CHANNEL_STATUS:
            mTextMsg = ((CallSetupParams) cmdParams).confirmMsg;
            break;
        case SET_UP_CALL:
            mCallSettings = new CallSettings();
            mCallSettings.confirmMsg = ((CallSetupParams) cmdParams).confirmMsg;
+1 −0
Original line number Diff line number Diff line
@@ -150,6 +150,7 @@ class CommandParamsFactory extends Handler {
             case SEND_USSD:
                 cmdPending = processEventNotify(cmdDet, ctlvs);
                 break;
             case GET_CHANNEL_STATUS:
             case SET_UP_CALL:
                 cmdPending = processSetupCall(cmdDet, ctlvs);
                 break;