Skip to content

Commit 094f648

Browse files
authored
Merge pull request #10488 from kivaisan/add_cellularproperty_description
Cellular: Add description for CellularProperty
2 parents d04bfa2 + 38aa56e commit 094f648

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

features/cellular/framework/AT/AT_CellularBase.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ class AT_CellularBase {
4242
*/
4343
device_err_t get_device_error() const;
4444

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+
*/
4550
enum CellularProperty {
4651
PROPERTY_C_EREG, // AT_CellularNetwork::RegistrationMode. What support modem has for this registration type.
4752
PROPERTY_C_GREG, // AT_CellularNetwork::RegistrationMode. What support modem has for this registration type.
@@ -58,6 +63,7 @@ class AT_CellularBase {
5863
PROPERTY_IPV4V6_PDP_TYPE, // 0 = not supported, 1 = supported. Does modem support dual stack IPV4V6?
5964
PROPERTY_NON_IP_PDP_TYPE, // 0 = not supported, 1 = supported. Does modem support Non-IP?
6065
PROPERTY_AT_CGEREP, // 0 = not supported, 1 = supported. Does modem support AT command AT+CGEREP.
66+
6167
PROPERTY_MAX
6268
};
6369

0 commit comments

Comments
 (0)