#[repr(transparent)]pub struct QmiDirectRx(pub u32);
Expand description
Read from the QMI direct-mode RX FIFO (fast bus access to QMI_DIRECT_RX)
Tuple Fields§
§0: u32
Implementations§
Source§impl QmiDirectRx
impl QmiDirectRx
Sourcepub const fn qmi_direct_rx(&self) -> u16
pub const fn qmi_direct_rx(&self) -> u16
With each byte clocked out on the serial interface, one byte will simultaneously be clocked in, and will appear in this FIFO. The serial interface will stall when this FIFO is full, to avoid dropping data. When 16-bit data is pushed into the TX FIFO, the corresponding RX FIFO push will also contain 16 bits of data. The least-significant byte is the first one received.
Sourcepub fn set_qmi_direct_rx(&mut self, val: u16)
pub fn set_qmi_direct_rx(&mut self, val: u16)
With each byte clocked out on the serial interface, one byte will simultaneously be clocked in, and will appear in this FIFO. The serial interface will stall when this FIFO is full, to avoid dropping data. When 16-bit data is pushed into the TX FIFO, the corresponding RX FIFO push will also contain 16 bits of data. The least-significant byte is the first one received.
Trait Implementations§
Source§impl Clone for QmiDirectRx
impl Clone for QmiDirectRx
Source§fn clone(&self) -> QmiDirectRx
fn clone(&self) -> QmiDirectRx
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more