We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8133657 commit 4a393e0Copy full SHA for 4a393e0
src/delay.rs
@@ -30,6 +30,7 @@ impl Delay {
30
}
31
32
/// Delay using the Cortex-M systick for a certain duration, in µs.
33
+ #[allow(clippy::missing_inline_in_public_items)]
34
pub fn delay_us(&mut self, us: u32) {
35
let ticks = (u64::from(us)) * (u64::from(self.ahb_frequency)) / 1_000_000;
36
0 commit comments