cargo fmt

This commit is contained in:
Quentin Smith 2023-07-18 18:32:19 -04:00
parent be7fbe50d7
commit 7555a1e302

View file

@ -17,8 +17,6 @@ use crate::gpio::{AnyPin, Pin as GpioPin};
use crate::interrupt::typelevel::Interrupt;
use crate::pac::pdm::mode::{EDGE_A, OPERATION_A};
pub use crate::pac::pdm::pdmclkctrl::FREQ_A as Frequency;
use crate::{interrupt, Peripheral};
#[cfg(any(
feature = "nrf52840",
feature = "nrf52833",
@ -26,6 +24,7 @@ use crate::{interrupt, Peripheral};
feature = "_nrf9160",
))]
pub use crate::pac::pdm::ratio::RATIO_A as Ratio;
use crate::{interrupt, Peripheral};
/// Interrupt handler.
pub struct InterruptHandler<T: Instance> {