Skip to content

Commit 417e364

Browse files
committed
Allow clippy::uninlined_format_args to hrtim examples
defmt does not support inlined format arguments
1 parent 8073030 commit 417e364

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

examples/hrtim/adc-trigger.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![no_std]
22
#![no_main]
3+
#![allow(clippy::uninlined_format_args)]
34

45
#[path = "../utils/mod.rs"]
56
mod utils;

examples/hrtim/capture-dma.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![no_std]
22
#![no_main]
3+
#![allow(clippy::uninlined_format_args)]
34

45
#[path = "../utils/mod.rs"]
56
mod utils;

examples/hrtim/deadtime.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![no_std]
22
#![no_main]
3+
#![allow(clippy::uninlined_format_args)]
34

45
#[path = "../utils/mod.rs"]
56
mod utils;

0 commit comments

Comments
 (0)