summaryrefslogtreecommitdiffstats
path: root/app/stdio.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/stdio.c')
-rw-r--r--app/stdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/stdio.c b/app/stdio.c
index 286d4d2..4a46f3f 100644
--- a/app/stdio.c
+++ b/app/stdio.c
@@ -27,7 +27,7 @@ _write (int file,
int ret;
- ret = usart6_write (buf, nbytes, 1);
+ ret = usart1_write (buf, nbytes, 1);
if (ret < 0) {
errno = -ret;
@@ -77,5 +77,5 @@ isatty (int file)
void stdio_drain (void)
{
- usart6_drain();
+ usart1_drain();
}