@@ -281,7 +281,7 @@ class ATHandler {
281
281
* @param resp_buf_size Response buffer size
282
282
* @param format Format string for variadic arguments to be added to AT command; No separator needed.
283
283
* Use %d for integer, %s for string and %b for byte string (requires 2 arguments: string and length)
284
- * @return @return last error that happened when parsing AT responses
284
+ * @return last error that happened when parsing AT responses
285
285
*/
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
@@ -292,18 +292,17 @@ class ATHandler {
292
292
* @param resp Integer to hold response
293
293
* @param format Format string for variadic arguments to be added to AT command; No separator needed.
294
294
* Use %d for integer, %s for string and %b for byte string (requires 2 arguments: string and length)
295
- * @return @return last error that happened when parsing AT responses
295
+ * @return last error that happened when parsing AT responses
296
296
*/
297
297
nsapi_error_t at_cmd_int (const char *cmd, const char *cmd_chr, int &resp, const char *format = " " , ...);
298
298
299
299
/* *
300
300
* @brief at_cmd_discard Send an AT command and read and discard a response. Locks and unlocks ATHandler for operation
301
301
* @param cmd AT command in form +<CMD> (will be used also in response reading, no extra chars allowed)
302
302
* @param cmd_chr Char to be added to specific AT command: '?', '=' or ''. Will be used as such so '=1' is valid as well.
303
- * @param resp Integer to hold response
304
303
* @param format Format string for variadic arguments to be added to AT command; No separator needed.
305
304
* Use %d for integer, %s for string and %b for byte string (requires 2 arguments: string and length)
306
- * @return @return last error that happened when parsing AT responses
305
+ * @return last error that happened when parsing AT responses
307
306
*/
308
307
nsapi_error_t at_cmd_discard (const char *cmd, const char *cmd_chr, const char *format = " " , ...);
309
308
0 commit comments