summaryrefslogtreecommitdiff
path: root/hw/bsp/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/bsp/board.c')
-rw-r--r--hw/bsp/board.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/bsp/board.c b/hw/bsp/board.c
index bb339f613..6d9488431 100644
--- a/hw/bsp/board.c
+++ b/hw/bsp/board.c
@@ -134,3 +134,8 @@ int board_getchar(void) {
char c;
return (sys_read(0, &c, 1) > 0) ? (int) c : (-1);
}
+
+
+uint32_t tusb_time_millis_api(void) {
+ return board_millis();
+}