pub struct Ucpd<'d, T: Instance> { /* private fields */ }
Expand description
UCPD driver.
Implementations§
source§impl<'d, T: Instance> Ucpd<'d, T>
impl<'d, T: Instance> Ucpd<'d, T>
sourcepub fn new(
_peri: impl Peripheral<P = T> + 'd,
_irq: impl Binding<T::Interrupt, InterruptHandler<T>> + 'd,
cc1: impl Peripheral<P = impl Cc1Pin<T>> + 'd,
cc2: impl Peripheral<P = impl Cc2Pin<T>> + 'd,
config: Config,
) -> Self
pub fn new( _peri: impl Peripheral<P = T> + 'd, _irq: impl Binding<T::Interrupt, InterruptHandler<T>> + 'd, cc1: impl Peripheral<P = impl Cc1Pin<T>> + 'd, cc2: impl Peripheral<P = impl Cc2Pin<T>> + 'd, config: Config, ) -> Self
Creates a new UCPD driver instance.
sourcepub fn split_pd_phy(
self,
rx_dma: impl Peripheral<P = impl RxDma<T>> + 'd,
tx_dma: impl Peripheral<P = impl TxDma<T>> + 'd,
cc_sel: CcSel,
) -> (CcPhy<'d, T>, PdPhy<'d, T>)
pub fn split_pd_phy( self, rx_dma: impl Peripheral<P = impl RxDma<T>> + 'd, tx_dma: impl Peripheral<P = impl TxDma<T>> + 'd, cc_sel: CcSel, ) -> (CcPhy<'d, T>, PdPhy<'d, T>)
Splits the UCPD driver into a TypeC PHY to control and monitor CC voltage and a Power Delivery (PD) PHY with receiver and transmitter.
Auto Trait Implementations§
impl<'d, T> Freeze for Ucpd<'d, T>
impl<'d, T> RefUnwindSafe for Ucpd<'d, T>where
T: RefUnwindSafe,
impl<'d, T> Send for Ucpd<'d, T>where
T: Send,
impl<'d, T> Sync for Ucpd<'d, T>where
T: Sync,
impl<'d, T> Unpin for Ucpd<'d, T>
impl<'d, T> !UnwindSafe for Ucpd<'d, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more