@@ -263,7 +263,7 @@ class ATHandler {
263
263
264
264
/* *
265
265
* @brief cmd_start_stop Starts an AT command, writes given variadic arguments and stops the command. Use this
266
- * command when you need multiple responses to be handled.
266
+ * command when you need multiple response parameters to be handled.
267
267
* NOTE: Does not lock ATHandler for process!
268
268
*
269
269
* @param cmd AT command in form +<CMD> (will be used also in response reading, no extra chars allowed)
@@ -274,7 +274,7 @@ class ATHandler {
274
274
void cmd_start_stop (const char *cmd, const char *cmd_chr, const char *format = " " , ...);
275
275
276
276
/* *
277
- * @brief at_cmd_str Send an AT command and read 1 line string response. Locks and unlocks ATHandler for operation
277
+ * @brief at_cmd_str Send an AT command and read a single string response. Locks and unlocks ATHandler for operation
278
278
* @param cmd AT command in form +<CMD> (will be used also in response reading, no extra chars allowed)
279
279
* @param cmd_chr Char to be added to specific AT command: '?', '=' or ''. Will be used as such so '=1' is valid as well.
280
280
* @param resp_buf Response buffer
@@ -286,7 +286,7 @@ class ATHandler {
286
286
nsapi_error_t at_cmd_str (const char *cmd, const char *cmd_chr, char *resp_buf, size_t resp_buf_size, const char *format = " " , ...);
287
287
288
288
/* *
289
- * @brief at_cmd_int Send an AT command and read 1 line integer response. Locks and unlocks ATHandler for operation
289
+ * @brief at_cmd_int Send an AT command and read a single integer response. Locks and unlocks ATHandler for operation
290
290
* @param cmd AT command in form +<CMD> (will be used also in response reading, no extra chars allowed)
291
291
* @param cmd_chr Char to be added to specific AT command: '?', '=' or ''. Will be used as such so '=1' is valid as well.
292
292
* @param resp Integer to hold response
0 commit comments