use crate::{into_ref, peripherals, Peripheral, PeripheralRef};
pub struct Config {}
pub struct Rf<'d, T: Instance> {
_peri: PeripheralRef<'d, T>,
}
pub(crate) mod sealed {
pub trait Instance {}
}
pub trait Instance: Peripheral<P = Self> + sealed::Instance {}
impl sealed::Instance for peripherals::BLE {}
impl Instance for peripherals::BLE {}