* @brief Gets the current system tick count. * * This system call returns the current value of the system tick counter, which is typically incremented * at a fixed interval (e.g., every millisecond or microsecond). The tick count can be used for timing * purposes, such as measuring the elapsed time or triggering time-based events. * * @return rt_tick_t The current value of the system tick
| 6373 | * @see sys_tick_init(), sys_tick_delay() |
| 6374 | */ |
| 6375 | rt_tick_t sys_tick_get(void) |
| 6376 | { |
| 6377 | return rt_tick_get(); |
| 6378 | } |
| 6379 | |
| 6380 | /** |
| 6381 | * @brief Delays the current thread for a specified number of milliseconds. |
nothing calls this directly
no test coverage detected