diff --git a/drivers/at/at.c b/drivers/at/at.c index 175200deef326b36be9db014b3f79e097b9fb682..84ad661afcd4a78f84dcfb908aa2bb6627ef49a4 100644 --- a/drivers/at/at.c +++ b/drivers/at/at.c @@ -121,8 +121,6 @@ ssize_t at_send_cmd_get_lines(at_dev_t *dev, const char *command, size_t bytes_left = len - 1; char *pos = resp_buf; - memset(resp_buf, '\0', len); - at_drain(dev); res = at_send_cmd(dev, command, timeout); @@ -130,6 +128,10 @@ ssize_t at_send_cmd_get_lines(at_dev_t *dev, const char *command, goto out; } + /* only clear the response buffer after sending the command, + * so the same buffer can be used for command and response */ + memset(resp_buf, '\0', len); + while (1) { res = at_readline(dev, pos, bytes_left, keep_eol, timeout); if (res == 0) {