@@ -43,15 +43,17 @@ enum simstate_e {
43
43
};
44
44
45
45
/**
46
- * Network status
46
+ * Network Registration status
47
47
*/
48
48
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 */
55
57
};
56
58
57
59
/**
@@ -94,8 +96,8 @@ enum sysurc_e {
94
96
URC_SYS_INIT_STATE_IND , /**< Indication for module initialization state during boot stage, parameter value as @ref sysinitstate_e */
95
97
URC_SIM_CARD_STATE_IND , /**< Indication for SIM card state (state change), parameter value as @ref simstate_e */
96
98
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 */
98
99
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 */
99
101
URC_CFUN_STATE_IND , /**< Indication for CFUN state, with parameters as one of @ref cfunstate_e */
100
102
URC_COMING_CALL_IND , /**< Indication for coming call with parameter as @ref ril_callinfo_t */
101
103
URC_CALL_STATE_IND , /**< Indication for call state (state change), parameter value as @ref callstatus_e */
0 commit comments