summaryrefslogtreecommitdiff
path: root/src/uart.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/uart.c')
-rw-r--r--src/uart.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/uart.c b/src/uart.c
index 0b65e30..4431be2 100644
--- a/src/uart.c
+++ b/src/uart.c
@@ -73,3 +73,9 @@ uint8_t uart_getchar(char *_c) {
return 0;
}
+
+void uart_putstring(char *_s) {
+ do {
+ uart_putchar(*_s);
+ } while(*(_s++));
+}