File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
features/cellular/framework/AT Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,11 @@ class AT_CellularBase {
42
42
*/
43
43
device_err_t get_device_error () const ;
44
44
45
+ /* Supported features by the modem
46
+ *
47
+ * NOTE! These are used as index to feature table, so the only allowed modification to this is appending
48
+ * to the end (just before PROPERTY_MAX). Do not modify any of the existing fields.
49
+ */
45
50
enum CellularProperty {
46
51
PROPERTY_C_EREG, // AT_CellularNetwork::RegistrationMode. What support modem has for this registration type.
47
52
PROPERTY_C_GREG, // AT_CellularNetwork::RegistrationMode. What support modem has for this registration type.
@@ -58,6 +63,7 @@ class AT_CellularBase {
58
63
PROPERTY_IPV4V6_PDP_TYPE, // 0 = not supported, 1 = supported. Does modem support dual stack IPV4V6?
59
64
PROPERTY_NON_IP_PDP_TYPE, // 0 = not supported, 1 = supported. Does modem support Non-IP?
60
65
PROPERTY_AT_CGEREP, // 0 = not supported, 1 = supported. Does modem support AT command AT+CGEREP.
66
+
61
67
PROPERTY_MAX
62
68
};
63
69
You can’t perform that action at this time.
0 commit comments