uart_commands.c: nicer backspace

This commit is contained in:
Christian Kroll 2014-09-26 00:53:09 +02:00
parent 1e99121751
commit 656ec1c5c3
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ extern volatile unsigned char reverseMode;
char const UART_STR_NOTIMPL[] PROGMEM = "Not implemented."CR;
#endif
char const UART_STR_BACKSPACE[] PROGMEM = "\033[D \033[D";
char const UART_STR_BACKSPACE[] PROGMEM = "\b \b";
char const UART_STR_PROMPT[] PROGMEM = "> ";
char const UART_STR_MODE[] PROGMEM = "%d"CR;
char const UART_STR_MODE_ERR[] PROGMEM = "Range is between 0 and 255."CR;