aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/libboard/owhw/source/owhw.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/libboard/owhw/source/owhw.c')
-rw-r--r--firmware/libboard/owhw/source/owhw.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/libboard/owhw/source/owhw.c b/firmware/libboard/owhw/source/owhw.c
index 1238082..405ed92 100644
--- a/firmware/libboard/owhw/source/owhw.c
+++ b/firmware/libboard/owhw/source/owhw.c
@@ -25,16 +25,16 @@ void board_exec_dbg_cmd(int ch)
{
switch (ch) {
case '?':
- printf("\t?\thelp\n\r");
- printf("\tR\treset SAM3\n\r");
+ printf("\t?\thelp\r\n");
+ printf("\tR\treset SAM3\r\n");
break;
case 'R':
- printf("Asking NVIC to reset us\n\r");
+ printf("Asking NVIC to reset us\r\n");
USBD_Disconnect();
NVIC_SystemReset();
break;
default:
- printf("Unknown command '%c'\n\r", ch);
+ printf("Unknown command '%c'\r\n", ch);
break;
}
}