You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/rust/src/micropython/time.rs

6 lines
89 B

use super::ffi;
pub fn ticks_ms() -> u32 {
unsafe { ffi::mp_hal_ticks_ms() as _ }
}