or like: ```rust let start = timer.get_ticks(); let mut count = 0; while timer.millis_since(start) < 1000 { expensive(); count += 1; } defmt::println!("Iterations in 1s: {=u32}", count); ````