summaryrefslogtreecommitdiff
path: root/examples/host/hid_controller/src/main.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-03-19 10:40:50 +0700
committerhathach <[email protected]>2026-03-19 10:40:50 +0700
commit0fd8fd45b51a62f118203ec729574119eb03d526 (patch)
treef8262dca7347548a620b9e2212cbe207d93ce18e /examples/host/hid_controller/src/main.c
parent0dd509ad3639a49f7f6a885da02670c09c05a058 (diff)
parent8a9f44bdd267d05640d1028c07269d044291243b (diff)
Merge branch 'refs/heads/master' into rp2040-hcd-epx
Diffstat (limited to 'examples/host/hid_controller/src/main.c')
-rw-r--r--examples/host/hid_controller/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/host/hid_controller/src/main.c b/examples/host/hid_controller/src/main.c
index fa70d7d1a..a9eebc90b 100644
--- a/examples/host/hid_controller/src/main.c
+++ b/examples/host/hid_controller/src/main.c
@@ -79,7 +79,7 @@ void led_blinking_task(void) {
static bool led_state = false;
// Blink every interval ms
- if ( board_millis() - start_ms < interval_ms) return; // not enough time
+ if ( tusb_time_millis_api() - start_ms < interval_ms) return; // not enough time
start_ms += interval_ms;
board_led_write(led_state);