Skip to content

Commit 66823d4

Browse files
committed
include:ril: Update for LTE support
Signed-off-by: Ajay Bhargav <[email protected]>
1 parent ecf575d commit 66823d4

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

include/ril/ril.h

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,17 @@ enum simstate_e {
4343
};
4444

4545
/**
46-
* Network status
46+
* Network Registration status
4747
*/
4848
enum networkstate_e {
49-
NW_STAT_NOT_REGISTERED = 0, /**< Not register to network */
50-
NW_STAT_REGISTERED, /**< The normal network state */
51-
NW_STAT_SEARCHING, /**< Searching network */
52-
NW_STAT_REG_DENIED, /**< The register request is denied */
53-
NW_STAT_UNKNOWN, /**< status unknown */
54-
NW_STAT_REGISTERED_ROAMING /**< Registered and Roaming state */
49+
NW_STAT_NOT_REGISTERED = 0, /**< Not register and not searching */
50+
NW_STAT_REGISTERED_HOME, /**< Registered and in home network */
51+
NW_STAT_SEARCHING, /**< Not registered and Searching network */
52+
NW_STAT_REG_DENIED, /**< Registration is denied */
53+
NW_STAT_UNKNOWN, /**< Unknown registration */
54+
NW_STAT_REGISTERED_ROAMING, /**< Registered and in Roaming */
55+
NW_STAT_SMSONLY_HOME, /**< 4G LTE Only: Registered for SMS only in home network */
56+
NW_STAT_SMSONLY_ROAMING, /**< 4G LTE Only: Registered for SMS only in Roaming network */
5557
};
5658

5759
/**
@@ -94,8 +96,8 @@ enum sysurc_e {
9496
URC_SYS_INIT_STATE_IND, /**< Indication for module initialization state during boot stage, parameter value as @ref sysinitstate_e */
9597
URC_SIM_CARD_STATE_IND, /**< Indication for SIM card state (state change), parameter value as @ref simstate_e */
9698
URC_GSM_NW_STATE_IND, /**< Indication for GSM network state (state change), parameter value as @ref networkstate_e */
97-
URC_EGPRS_NW_STATE_IND = 3, /**< Indication for EPS Network registration status, parameter value as @ref networkstate_e */
9899
URC_GPRS_NW_STATE_IND, /**< Indication for GPRS network state (state change), parameter value as @ref networkstate_e */
100+
URC_EGPRS_NW_STATE_IND = 4, /**< Indication for EPS Network registration status, parameter value as @ref networkstate_e */
99101
URC_CFUN_STATE_IND, /**< Indication for CFUN state, with parameters as one of @ref cfunstate_e */
100102
URC_COMING_CALL_IND, /**< Indication for coming call with parameter as @ref ril_callinfo_t */
101103
URC_CALL_STATE_IND, /**< Indication for call state (state change), parameter value as @ref callstatus_e */

0 commit comments

Comments
 (0)