fix fmt
This commit is contained in:
parent
292c1dd0b8
commit
a87b333034
2 changed files with 8 additions and 2 deletions
examples
|
@ -46,6 +46,9 @@ async fn main(spawner: Spawner) {
|
|||
let period = pwm_input.get_period_ticks();
|
||||
let width = pwm_input.get_width_ticks();
|
||||
let duty_cycle = pwm_input.get_duty_cycle();
|
||||
info!("period ticks: {} width ticks: {} duty cycle: {}", period, width, duty_cycle);
|
||||
info!(
|
||||
"period ticks: {} width ticks: {} duty cycle: {}",
|
||||
period, width, duty_cycle
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,6 +46,9 @@ async fn main(spawner: Spawner) {
|
|||
let period = pwm_input.get_period_ticks();
|
||||
let width = pwm_input.get_width_ticks();
|
||||
let duty_cycle = pwm_input.get_duty_cycle();
|
||||
info!("period ticks: {} width ticks: {} duty cycle: {}", period, width, duty_cycle);
|
||||
info!(
|
||||
"period ticks: {} width ticks: {} duty cycle: {}",
|
||||
period, width, duty_cycle
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue