summaryrefslogtreecommitdiff
path: root/avr/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'avr/debug.c')
-rw-r--r--avr/debug.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/avr/debug.c b/avr/debug.c
index 27b5329..796647b 100644
--- a/avr/debug.c
+++ b/avr/debug.c
@@ -112,6 +112,17 @@ command_ret_t do_eep_cp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[
return CMD_RET_SUCCESS;
}
+
+/*------------------------------------------------------------------------------*/
+
+command_ret_t do_testarg(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+{
+ my_puts_P(cmdtp->name);
+ printf_P(PSTR("\n%s\n"), argv[0]);
+
+ return CMD_RET_SUCCESS;
+}
+
/*------------------------------------------------------------------------------*/