summaryrefslogtreecommitdiffstats
path: root/watch-library/simulator/watch/watch_private.c
diff options
context:
space:
mode:
Diffstat (limited to 'watch-library/simulator/watch/watch_private.c')
-rw-r--r--watch-library/simulator/watch/watch_private.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/watch-library/simulator/watch/watch_private.c b/watch-library/simulator/watch/watch_private.c
index b852893b..4ddc2182 100644
--- a/watch-library/simulator/watch/watch_private.c
+++ b/watch-library/simulator/watch/watch_private.c
@@ -67,12 +67,3 @@ int _write(int file, char *ptr, int len) {
int _read(void) {
return 0;
}
-
-// Alternate function that outputs to the debug UART. useful for debugging USB issues.
-// int _write(int file, char *ptr, int len) {
-// (void)file;
-// int pos = 0;
-// while(pos < len) watch_debug_putc(ptr[pos++]);
-
-// return 0;
-// }