@@ -43,7 +43,7 @@ class CellularInformation {
43
43
* @param buf manufacturer identification as zero terminated string
44
44
* @param buf_size max length of manufacturer identification is 2048 characters
45
45
* @return NSAPI_ERROR_OK on success
46
- * NSAPI_ERROR_DEVICE_ERROR on case of failure
46
+ * NSAPI_ERROR_DEVICE_ERROR on failure
47
47
*/
48
48
virtual nsapi_error_t get_manufacturer (char *buf, size_t buf_size) = 0;
49
49
@@ -52,7 +52,7 @@ class CellularInformation {
52
52
* @param buf model identification as zero terminated string
53
53
* @param buf_size max length of model identification is 2048 characters
54
54
* @return NSAPI_ERROR_OK on success
55
- * NSAPI_ERROR_DEVICE_ERROR on case of failure
55
+ * NSAPI_ERROR_DEVICE_ERROR on failure
56
56
*/
57
57
virtual nsapi_error_t get_model (char *buf, size_t buf_size) = 0;
58
58
@@ -61,7 +61,7 @@ class CellularInformation {
61
61
* @param buf revision identification as zero terminated string
62
62
* @param buf_size max length of revision identification is 2048 characters
63
63
* @return NSAPI_ERROR_OK on success
64
- * NSAPI_ERROR_DEVICE_ERROR on case of failure
64
+ * NSAPI_ERROR_DEVICE_ERROR on failure
65
65
*/
66
66
virtual nsapi_error_t get_revision (char *buf, size_t buf_size) = 0;
67
67
@@ -71,8 +71,8 @@ class CellularInformation {
71
71
* @param buf_size max length of serial number is 2048 characters
72
72
* @param type serial number type to read
73
73
* @return NSAPI_ERROR_OK on success
74
- * NSAPI_ERROR_UNSUPPORTED if SerialNumberType is not supported by the modem
75
- * NSAPI_ERROR_DEVICE_ERROR on case of other failures
74
+ * NSAPI_ERROR_UNSUPPORTED if the modem does not support SerialNumberType
75
+ * NSAPI_ERROR_DEVICE_ERROR on other failures
76
76
*/
77
77
enum SerialNumberType {
78
78
SN = 0 , // Serial Number
0 commit comments