summaryrefslogtreecommitdiffstats
path: root/watch-library/simulator/watch/watch_uart.c
diff options
context:
space:
mode:
Diffstat (limited to 'watch-library/simulator/watch/watch_uart.c')
-rw-r--r--watch-library/simulator/watch/watch_uart.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/watch-library/simulator/watch/watch_uart.c b/watch-library/simulator/watch/watch_uart.c
index 7043383c..80c6a812 100644
--- a/watch-library/simulator/watch/watch_uart.c
+++ b/watch-library/simulator/watch/watch_uart.c
@@ -45,14 +45,3 @@ char watch_uart_getc(void) {
}
return 0;
}
-
-void watch_enable_debug_uart(uint32_t baud) {}
-
-void watch_debug_putc(char c) {}
-
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
-void watch_debug_puts(char *s) {
- while (*s) watch_debug_putc(*s++);
-}
-#pragma GCC diagnostic pop