From 77cae0f45ca95b04e296c0e0d085018c53e4a567 Mon Sep 17 00:00:00 2001 From: Simon Duquennoy Date: Wed, 11 Oct 2017 17:43:26 +0200 Subject: [PATCH] Shell: prefix all lines with '#' --- os/services/shell/shell.c | 1 + 1 file changed, 1 insertion(+) diff --git a/os/services/shell/shell.c b/os/services/shell/shell.c index f10852414..1e344dc1a 100644 --- a/os/services/shell/shell.c +++ b/os/services/shell/shell.c @@ -106,6 +106,7 @@ shell_output_lladdr(shell_output_func output, const linkaddr_t *lladdr) static void output_prompt(shell_output_func output) { + SHELL_OUTPUT(output, "#"); shell_output_lladdr(output, &linkaddr_node_addr); SHELL_OUTPUT(output, "> "); }