Embassy
embassy-usb-synopsys-otg

Crates

git

Versions

default

Flavors

Struct embassy_usb_synopsys_otg::otg_v1::regs::Gintsts

source ·
#[repr(transparent)]
pub struct Gintsts(pub u32);
Expand description

Core interrupt register

Tuple Fields§

§0: u32

Implementations§

source§

impl Gintsts

source

pub const fn cmod(&self) -> bool

Current mode of operation

source

pub fn set_cmod(&mut self, val: bool)

Current mode of operation

source

pub const fn mmis(&self) -> bool

Mode mismatch interrupt

source

pub fn set_mmis(&mut self, val: bool)

Mode mismatch interrupt

source

pub const fn otgint(&self) -> bool

OTG interrupt

source

pub fn set_otgint(&mut self, val: bool)

OTG interrupt

source

pub const fn sof(&self) -> bool

Start of frame

source

pub fn set_sof(&mut self, val: bool)

Start of frame

source

pub const fn rxflvl(&self) -> bool

RxFIFO non-empty

source

pub fn set_rxflvl(&mut self, val: bool)

RxFIFO non-empty

source

pub const fn nptxfe(&self) -> bool

Non-periodic TxFIFO empty

source

pub fn set_nptxfe(&mut self, val: bool)

Non-periodic TxFIFO empty

source

pub const fn ginakeff(&self) -> bool

Global IN non-periodic NAK effective

source

pub fn set_ginakeff(&mut self, val: bool)

Global IN non-periodic NAK effective

source

pub const fn goutnakeff(&self) -> bool

Global OUT NAK effective

source

pub fn set_goutnakeff(&mut self, val: bool)

Global OUT NAK effective

source

pub const fn esusp(&self) -> bool

Early suspend

source

pub fn set_esusp(&mut self, val: bool)

Early suspend

source

pub const fn usbsusp(&self) -> bool

USB suspend

source

pub fn set_usbsusp(&mut self, val: bool)

USB suspend

source

pub const fn usbrst(&self) -> bool

USB reset

source

pub fn set_usbrst(&mut self, val: bool)

USB reset

source

pub const fn enumdne(&self) -> bool

Enumeration done

source

pub fn set_enumdne(&mut self, val: bool)

Enumeration done

source

pub const fn isoodrp(&self) -> bool

Isochronous OUT packet dropped interrupt

source

pub fn set_isoodrp(&mut self, val: bool)

Isochronous OUT packet dropped interrupt

source

pub const fn eopf(&self) -> bool

End of periodic frame interrupt

source

pub fn set_eopf(&mut self, val: bool)

End of periodic frame interrupt

source

pub const fn iepint(&self) -> bool

IN endpoint interrupt

source

pub fn set_iepint(&mut self, val: bool)

IN endpoint interrupt

source

pub const fn oepint(&self) -> bool

OUT endpoint interrupt

source

pub fn set_oepint(&mut self, val: bool)

OUT endpoint interrupt

source

pub const fn iisoixfr(&self) -> bool

Incomplete isochronous IN transfer

source

pub fn set_iisoixfr(&mut self, val: bool)

Incomplete isochronous IN transfer

source

pub const fn ipxfr_incompisoout(&self) -> bool

Incomplete periodic transfer (host mode) / Incomplete isochronous OUT transfer (device mode)

source

pub fn set_ipxfr_incompisoout(&mut self, val: bool)

Incomplete periodic transfer (host mode) / Incomplete isochronous OUT transfer (device mode)

source

pub const fn datafsusp(&self) -> bool

Data fetch suspended

source

pub fn set_datafsusp(&mut self, val: bool)

Data fetch suspended

source

pub const fn hprtint(&self) -> bool

Host port interrupt

source

pub fn set_hprtint(&mut self, val: bool)

Host port interrupt

source

pub const fn hcint(&self) -> bool

Host channels interrupt

source

pub fn set_hcint(&mut self, val: bool)

Host channels interrupt

source

pub const fn ptxfe(&self) -> bool

Periodic TxFIFO empty

source

pub fn set_ptxfe(&mut self, val: bool)

Periodic TxFIFO empty

source

pub const fn cidschg(&self) -> bool

Connector ID status change

source

pub fn set_cidschg(&mut self, val: bool)

Connector ID status change

source

pub const fn discint(&self) -> bool

Disconnect detected interrupt

source

pub fn set_discint(&mut self, val: bool)

Disconnect detected interrupt

source

pub const fn srqint(&self) -> bool

Session request/new session detected interrupt

source

pub fn set_srqint(&mut self, val: bool)

Session request/new session detected interrupt

source

pub const fn wkupint(&self) -> bool

Resume/remote wakeup detected interrupt

source

pub fn set_wkupint(&mut self, val: bool)

Resume/remote wakeup detected interrupt

Trait Implementations§

source§

impl Clone for Gintsts

source§

fn clone(&self) -> Gintsts

Returns a copy 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 Default for Gintsts

source§

fn default() -> Gintsts

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

impl PartialEq for Gintsts

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Gintsts

source§

impl Eq for Gintsts

source§

impl StructuralPartialEq for Gintsts

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> 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>,

§

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>,

§

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.