Skip to content

Commit 4a393e0

Browse files
Update src/delay.rs
Co-authored-by: Vadim Kaushan <[email protected]>
1 parent 8133657 commit 4a393e0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/delay.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ impl Delay {
3030
}
3131

3232
/// Delay using the Cortex-M systick for a certain duration, in µs.
33+
#[allow(clippy::missing_inline_in_public_items)]
3334
pub fn delay_us(&mut self, us: u32) {
3435
let ticks = (u64::from(us)) * (u64::from(self.ahb_frequency)) / 1_000_000;
3536

0 commit comments

Comments
 (0)