fix wrong formatting due to not using nightly rustfmt
This commit is contained in:
parent
69d4b42841
commit
7931fcfb3d
1 changed files with 5 additions and 10 deletions
|
@ -12,17 +12,13 @@
|
|||
|
||||
use core::mem;
|
||||
|
||||
use defmt_rtt as _;
|
||||
use embassy_executor::Spawner;
|
||||
use embassy_rp::{
|
||||
bind_interrupts,
|
||||
peripherals::PIO0,
|
||||
pio::{Config, FifoJoin, InterruptHandler, Pio, ShiftConfig, ShiftDirection},
|
||||
Peripheral,
|
||||
};
|
||||
use embassy_rp::peripherals::PIO0;
|
||||
use embassy_rp::pio::{Config, FifoJoin, InterruptHandler, Pio, ShiftConfig, ShiftDirection};
|
||||
use embassy_rp::{bind_interrupts, Peripheral};
|
||||
use fixed::traits::ToFixed;
|
||||
use panic_probe as _;
|
||||
use static_cell::StaticCell;
|
||||
use {defmt_rtt as _, panic_probe as _};
|
||||
|
||||
bind_interrupts!(struct Irqs {
|
||||
PIO0_IRQ_0 => InterruptHandler<PIO0>;
|
||||
|
@ -127,4 +123,3 @@ async fn main(_spawner: Spawner) {
|
|||
mem::swap(&mut back_buffer, &mut front_buffer);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue