You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add GPS Motion assistance support
* Add API to get current network type
* Add RIL event for network type change
* Add support for custom name for tasks
Signed-off-by: Ajay Bhargav <[email protected]>
Copy file name to clipboardExpand all lines: include/ril/ril.h
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,15 @@ enum networkstate_e {
56
56
NW_STAT_SMSONLY_ROAMING, /**< 4G LTE Only: Registered for SMS only in Roaming network */
57
57
};
58
58
59
+
/**
60
+
* Network Mode value
61
+
*/
62
+
enumnetworkmode_e {
63
+
NW_MODE_UNKNOWN, /**< Unknown mode */
64
+
NW_MODE_GSM, /**< GSM Mode */
65
+
NW_MODE_LTE, /**< LTE Mode */
66
+
};
67
+
59
68
/**
60
69
* Phone functionality state
61
70
*/
@@ -106,6 +115,7 @@ enum sysurc_e {
106
115
URC_ALARM_RING_IND, /**< Indication for clock alarm. */
107
116
URC_STKPCI_RSP_IND, /**< Indication for un-handled STKPCI responses, Only when SIM Toolkit is enabled, Parameter value is incoming +STKPCI response as null terminated string */
108
117
URC_RRC_STATUS_IND, /**< 4G LTE & NBIoT RRC Status update */
118
+
URL_NW_MODE_CHANGE_IND, /**< Indication for change of network mode, only available on 4G LTE modules */
0 commit comments