diff options
| author | hathach <[email protected]> | 2026-03-11 16:20:14 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2026-03-11 16:20:14 +0700 |
| commit | d13f600721671a603579350be1e9c935a0d40547 (patch) | |
| tree | fbb9402972c3a2925efc554b94e79855d7364dce /examples/device/dfu_runtime/src | |
| parent | 5efa72cd57325615efae6a26ff8c9fe8a9c7b3b5 (diff) | |
| parent | f2450788b13f8424b2f75e33240ed21329a875ad (diff) | |
Merge branch 'master' into zlp-hs-on-fs
Diffstat (limited to 'examples/device/dfu_runtime/src')
| -rw-r--r-- | examples/device/dfu_runtime/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/device/dfu_runtime/src/main.c b/examples/device/dfu_runtime/src/main.c index 5de651bcd..6f412e8de 100644 --- a/examples/device/dfu_runtime/src/main.c +++ b/examples/device/dfu_runtime/src/main.c @@ -132,7 +132,7 @@ void led_blinking_task(void) static bool led_state = false; // Blink every interval ms - if (board_millis() - start_ms < blink_interval_ms) { + if (tusb_time_millis_api() - start_ms < blink_interval_ms) { return; // not enough time } start_ms += blink_interval_ms; |
