nxp-pac

Crates

git

Versions

mimxrt1011

Flavors

Endptctrl1

Struct Endptctrl1 

Source
#[repr(transparent)]
pub struct Endptctrl1(pub u32);
Expand description

Endpoint Control 1

Tuple Fields§

§0: u32

Implementations§

Source§

impl Endptctrl1

Source

pub const fn rxs(&self) -> bool

RX Endpoint Stall - Read/Write 0 End Point OK

Source

pub const fn set_rxs(&mut self, val: bool)

RX Endpoint Stall - Read/Write 0 End Point OK

Source

pub const fn rxd(&self) -> bool

RX Endpoint Data Sink - Read/Write 0 Dual Port Memory Buffer/DMA Engine [Default] Should always be written as zero

Source

pub const fn set_rxd(&mut self, val: bool)

RX Endpoint Data Sink - Read/Write 0 Dual Port Memory Buffer/DMA Engine [Default] Should always be written as zero

Source

pub const fn rxt(&self) -> u8

RX Endpoint Type - Read/Write 00 Control 01 Isochronous 10 Bulk 11 Interrupt

Source

pub const fn set_rxt(&mut self, val: u8)

RX Endpoint Type - Read/Write 00 Control 01 Isochronous 10 Bulk 11 Interrupt

Source

pub const fn rxi(&self) -> bool

RX Data Toggle Inhibit 0 Disabled [Default] 1 Enabled This bit is only used for test and should always be written as zero

Source

pub const fn set_rxi(&mut self, val: bool)

RX Data Toggle Inhibit 0 Disabled [Default] 1 Enabled This bit is only used for test and should always be written as zero

Source

pub const fn rxr(&self) -> bool

RX Data Toggle Reset (WS) Write 1 - Reset PID Sequence Whenever a configuration event is received for this Endpoint, software must write a one to this bit in order to synchronize the data PID’s between the host and device

Source

pub const fn set_rxr(&mut self, val: bool)

RX Data Toggle Reset (WS) Write 1 - Reset PID Sequence Whenever a configuration event is received for this Endpoint, software must write a one to this bit in order to synchronize the data PID’s between the host and device

Source

pub const fn rxe(&self) -> bool

RX Endpoint Enable 0 Disabled [Default] 1 Enabled An Endpoint should be enabled only after it has been configured

Source

pub const fn set_rxe(&mut self, val: bool)

RX Endpoint Enable 0 Disabled [Default] 1 Enabled An Endpoint should be enabled only after it has been configured

Source

pub const fn txs(&self) -> bool

TX Endpoint Stall - Read/Write 0 End Point OK 1 End Point Stalled This bit will be cleared automatically upon receipt of a SETUP request if this Endpoint is configured as a Control Endpoint and this bit will continue to be cleared by hardware until the associated ENDPTSETUPSTAT bit is cleared

Source

pub const fn set_txs(&mut self, val: bool)

TX Endpoint Stall - Read/Write 0 End Point OK 1 End Point Stalled This bit will be cleared automatically upon receipt of a SETUP request if this Endpoint is configured as a Control Endpoint and this bit will continue to be cleared by hardware until the associated ENDPTSETUPSTAT bit is cleared

Source

pub const fn txd(&self) -> bool

TX Endpoint Data Source - Read/Write 0 Dual Port Memory Buffer/DMA Engine [DEFAULT] Should always be written as 0

Source

pub const fn set_txd(&mut self, val: bool)

TX Endpoint Data Source - Read/Write 0 Dual Port Memory Buffer/DMA Engine [DEFAULT] Should always be written as 0

Source

pub const fn txt(&self) -> u8

TX Endpoint Type - Read/Write 00 Control 01 Isochronous 10 Bulk 11 Interrupt

Source

pub const fn set_txt(&mut self, val: u8)

TX Endpoint Type - Read/Write 00 Control 01 Isochronous 10 Bulk 11 Interrupt

Source

pub const fn txi(&self) -> bool

TX Data Toggle Inhibit 0 PID Sequencing Enabled

Source

pub const fn set_txi(&mut self, val: bool)

TX Data Toggle Inhibit 0 PID Sequencing Enabled

Source

pub const fn txr(&self) -> bool

TX Data Toggle Reset (WS) Write 1 - Reset PID Sequence Whenever a configuration event is received for this Endpoint, software must write a one to this bit in order to synchronize the data PID’s between the Host and device

Source

pub const fn set_txr(&mut self, val: bool)

TX Data Toggle Reset (WS) Write 1 - Reset PID Sequence Whenever a configuration event is received for this Endpoint, software must write a one to this bit in order to synchronize the data PID’s between the Host and device

Source

pub const fn txe(&self) -> bool

TX Endpoint Enable 0 Disabled [Default] 1 Enabled An Endpoint should be enabled only after it has been configured

Source

pub const fn set_txe(&mut self, val: bool)

TX Endpoint Enable 0 Disabled [Default] 1 Enabled An Endpoint should be enabled only after it has been configured

Trait Implementations§

Source§

impl Clone for Endptctrl1

Source§

fn clone(&self) -> Endptctrl1

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Endptctrl1

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Endptctrl1

Source§

fn default() -> Endptctrl1

Returns the “default value” for a type. Read more
Source§

impl PartialEq for Endptctrl1

Source§

fn eq(&self, other: &Endptctrl1) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Endptctrl1

Source§

impl Eq for Endptctrl1

Source§

impl StructuralPartialEq for Endptctrl1

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.