Struct rp2040_pac2::i2c::regs::IcDmaTdlr[][src]

#[repr(transparent)]pub struct IcDmaTdlr(pub u32);

DMA Transmit Data Level Register

Implementations

impl IcDmaTdlr[src]

pub const fn dmatdl(&self) -> u8[src]

Transmit Data Level. This bit field controls the level at which a DMA request is made by the transmit logic. It is equal to the watermark level; that is, the dma_tx_req signal is generated when the number of valid data entries in the transmit FIFO is equal to or below this field value, and TDMAE = 1. Reset value: 0x0

pub fn set_dmatdl(&mut self, val: u8)[src]

Transmit Data Level. This bit field controls the level at which a DMA request is made by the transmit logic. It is equal to the watermark level; that is, the dma_tx_req signal is generated when the number of valid data entries in the transmit FIFO is equal to or below this field value, and TDMAE = 1. Reset value: 0x0

Trait Implementations

impl Clone for IcDmaTdlr[src]

impl Copy for IcDmaTdlr[src]

impl Default for IcDmaTdlr[src]

Auto Trait Implementations

impl Send for IcDmaTdlr

impl Sync for IcDmaTdlr

impl Unpin for IcDmaTdlr

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.