mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 14:22:33 +00:00
fix fmt
This commit is contained in:
parent
292c1dd0b8
commit
a87b333034
@ -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…
Reference in New Issue
Block a user