summaryrefslogtreecommitdiff
path: root/avr/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'avr/debug.c')
-rw-r--r--avr/debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/avr/debug.c b/avr/debug.c
index e29a085..384a5ad 100644
--- a/avr/debug.c
+++ b/avr/debug.c
@@ -1,9 +1,10 @@
/*
* (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
*
- * SPDX-License-Identifier: GPL-2.0+
+ * SPDX-License-Identifier: GPL-2.0
*/
+#include "debug.h"
#include "common.h"
#include <stdlib.h>
#include <string.h>
@@ -13,7 +14,6 @@
#include "command.h"
#include "cli_readline.h"
#include "print-utils.h"
-#include "debug.h"
/*
* Debugging
@@ -170,7 +170,7 @@ mod_mem_avr(cmd_tbl_t *cmdtp, int incrflag, int flag, int argc, char * const arg
data = *addr;
printf_P(PSTR("%04x: %02x"), addr, data);
- nbytes = cli_readline(PSTR(" ? "));
+ nbytes = cli_readline(PSTR(" ? "), 0);
if (nbytes == 0 || (nbytes == 1 && console_buffer[0] == '-')) {
/* <CR> pressed as only input, don't modify current
* location and move to next. "-" pressed will go back.