summaryrefslogtreecommitdiffstats
path: root/watch-library/shared/watch/watch_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'watch-library/shared/watch/watch_private.h')
-rw-r--r--watch-library/shared/watch/watch_private.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/watch-library/shared/watch/watch_private.h b/watch-library/shared/watch/watch_private.h
index 7bb91d1f..9d55bc21 100644
--- a/watch-library/shared/watch/watch_private.h
+++ b/watch-library/shared/watch/watch_private.h
@@ -44,7 +44,8 @@ void _watch_enable_usb(void);
// this function ends up getting called by printf to log stuff to the USB console.
int _write(int file, char *ptr, int len);
-// this method could be overridden to read stuff from the USB console? but no need rn.
-int _read(void);
+// i thought this would be called by gets but it doesn't? anyway it does get called by read()
+// so that's our mechanism for reading data from the USB serial console.
+int _read(int file, char *ptr, int len);
#endif