summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-02-27 23:34:48 +0700
committerhathach <[email protected]>2026-02-27 23:42:40 +0700
commit7ea02fd6c9e376679bc1fe025bb73e43664e17c6 (patch)
tree8ff5476245cfb8fe7d885512a4ec03c05167dfa9 /src/common
parent8302adfab8727896c4a10935a15c32fbdcba3b8e (diff)
add osal_time_millis() to osal requirement
implement tusb_time_millis_api() with osal_time_millis() when OS is not NONE
Diffstat (limited to 'src/common')
-rw-r--r--src/common/tusb_common.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/common/tusb_common.h b/src/common/tusb_common.h
index 6ac1405f3..9eb0a9337 100644
--- a/src/common/tusb_common.h
+++ b/src/common/tusb_common.h
@@ -90,12 +90,6 @@
// TODO move to a more obvious place/file
//--------------------------------------------------------------------+
-// Get current milliseconds, required by some port/configuration without RTOS
-extern uint32_t tusb_time_millis_api(void);
-
-// Delay in milliseconds, use tusb_time_millis_api() by default. required by some port/configuration with no RTOS
-extern void tusb_time_delay_ms_api(uint32_t ms);
-
// flush data cache
extern void tusb_app_dcache_flush(uintptr_t addr, uint32_t data_size);