Struct nrf52833_hal::pac::generic::Reg[][src]

pub struct Reg<U, REG> { /* fields omitted */ }

This structure provides volatile access to register

Implementations

impl<U, REG> Reg<U, REG> where
    U: Copy,
    Reg<U, REG>: Readable
[src]

pub fn read(&self) -> R<U, Reg<U, REG>>[src]

Reads the contents of Readable register

You can read the contents of a register in such way:

let bits = periph.reg.read().bits();

or get the content of a particular field of a register.

let reader = periph.reg.read();
let bits = reader.field1().bits();
let flag = reader.field2().bit_is_set();

impl<U, REG> Reg<U, REG> where
    U: Copy,
    Reg<U, REG>: ResetValue,
    Reg<U, REG>: Writable,
    <Reg<U, REG> as ResetValue>::Type == U, 
[src]

pub fn reset(&self)[src]

Writes the reset value to Writable register

Resets the register to its initial state

impl<U, REG> Reg<U, REG> where
    U: Copy,
    Reg<U, REG>: ResetValue,
    Reg<U, REG>: Writable,
    <Reg<U, REG> as ResetValue>::Type == U, 
[src]

pub fn write<F>(&self, f: F) where
    F: FnOnce(&mut W<U, Reg<U, REG>>) -> &mut W<U, Reg<U, REG>>, 
[src]

Writes bits to Writable register

You can write raw bits into a register:

periph.reg.write(|w| unsafe { w.bits(rawbits) });

or write only the fields you need:

periph.reg.write(|w| w
    .field1().bits(newfield1bits)
    .field2().set_bit()
    .field3().variant(VARIANT)
);

Other fields will have reset value.

impl<U, REG> Reg<U, REG> where
    U: Copy + Default,
    Reg<U, REG>: Writable
[src]

pub fn write_with_zero<F>(&self, f: F) where
    F: FnOnce(&mut W<U, Reg<U, REG>>) -> &mut W<U, Reg<U, REG>>, 
[src]

Writes Zero to Writable register

Similar to write, but unused bits will contain 0.

impl<U, REG> Reg<U, REG> where
    U: Copy,
    Reg<U, REG>: Readable,
    Reg<U, REG>: Writable
[src]

pub fn modify<F>(&self, f: F) where
    F: for<'w> FnOnce(&R<U, Reg<U, REG>>, &'w mut W<U, Reg<U, REG>>) -> &'w mut W<U, Reg<U, REG>>, 
[src]

Modifies the contents of the register

E.g. to do a read-modify-write sequence to change parts of a register:

periph.reg.modify(|r, w| unsafe { w.bits(
   r.bits() | 3
) });

or

periph.reg.modify(|_, w| w
    .field1().bits(newfield1bits)
    .field2().set_bit()
    .field3().variant(VARIANT)
);

Other fields will have value they had before call modify.

Trait Implementations

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _EVENTS_END>[src]

read() method returns events_end::R reader structure

impl Readable for Reg<u32, _SDA>[src]

read() method returns sda::R reader structure

impl Readable for Reg<u32, _B>[src]

read() method returns b::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDECB>[src]

read() method returns events_endecb::R reader structure

impl Readable for Reg<u32, _GPREGRET>[src]

read() method returns gpregret::R reader structure

impl Readable for Reg<u32, _REGIONENSET>[src]

read() method returns regionenset::R reader structure

impl Readable for Reg<u32, _RXMATCH>[src]

read() method returns rxmatch::R reader structure

impl Readable for Reg<u32, _A1>[src]

read() method returns a1::R reader structure

impl Readable for Reg<u32, _EVENTS_CCASTOPPED>[src]

read() method returns events_ccastopped::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _MODE>[src]

read() method returns mode::R reader structure

impl Readable for Reg<u32, _MCK>[src]

read() method returns mck::R reader structure

impl Readable for Reg<u32, _CSNPOL>[src]

read() method returns csnpol::R reader structure

impl Readable for Reg<u32, _B2>[src]

read() method returns b2::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _HFCLKSTAT>[src]

read() method returns hfclkstat::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _EVENTS_RXDRDY>[src]

read() method returns events_rxdrdy::R reader structure

impl Readable for Reg<u32, _EVENTS_IN>[src]

read() method returns events_in::R reader structure

impl Readable for Reg<u32, _EVENTS_TXFRAMEEND>[src]

read() method returns events_txframeend::R reader structure

impl Readable for Reg<u32, _ISOSPLIT>[src]

read() method returns isosplit::R reader structure

impl Readable for Reg<u32, _GAINR>[src]

read() method returns gainr::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _DFECTRL1>[src]

read() method returns dfectrl1::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _REGIONEN>[src]

read() method returns regionen::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _FRAMEDELAYMODE>[src]

read() method returns framedelaymode::R reader structure

impl Readable for Reg<u32, _DCDCEN>[src]

read() method returns dcdcen::R reader structure

impl Readable for Reg<u32, _STATUS>[src]

read() method returns status::R reader structure

impl Readable for Reg<u32, _CTS>[src]

read() method returns cts::R reader structure

impl Readable for Reg<u32, _DBFEN>[src]

read() method returns dbfen::R reader structure

impl Readable for Reg<u32, _FRAMEDELAYMAX>[src]

read() method returns framedelaymax::R reader structure

impl Readable for Reg<u32, _A4>[src]

read() method returns a4::R reader structure

impl Readable for Reg<u32, _EVENTS_POFWARN>[src]

read() method returns events_pofwarn::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _LFXODEBOUNCE>[src]

read() method returns lfxodebounce::R reader structure

impl Readable for Reg<u32, _IMISS>[src]

read() method returns imiss::R reader structure

impl Readable for Reg<u32, _SDOUT>[src]

read() method returns sdout::R reader structure

impl Readable for Reg<u32, _MATCH>[src]

read() method returns match_::R reader structure

impl Readable for Reg<u32, _A1>[src]

read() method returns a1::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _WLENGTHL>[src]

read() method returns wlengthl::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _MAINREGSTATUS>[src]

read() method returns mainregstatus::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _BMREQUESTTYPE>[src]

read() method returns bmrequesttype::R reader structure

impl Readable for Reg<u32, _MOSI>[src]

read() method returns mosi::R reader structure

impl Readable for Reg<u32, _NFCID1_2ND_LAST>[src]

read() method returns nfcid1_2nd_last::R reader structure

impl Readable for Reg<u32, _EVENTS_CTSTOPPED>[src]

read() method returns events_ctstopped::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _PACKETPTR>[src]

read() method returns packetptr::R reader structure

impl Readable for Reg<u32, _NIRK>[src]

read() method returns nirk::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _EVENTS_READY>[src]

read() method returns events_ready::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _EVENTS_END>[src]

read() method returns events_end::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _SAMPLERATE>[src]

read() method returns samplerate::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _EVENTS_RXREADY>[src]

read() method returns events_rxready::R reader structure

impl Readable for Reg<u32, _EVENTS_CRCOK>[src]

read() method returns events_crcok::R reader structure

impl Readable for Reg<u32, _ORC>[src]

read() method returns orc::R reader structure

impl Readable for Reg<u32, _VALUE>[src]

read() method returns value::R reader structure

impl Readable for Reg<u32, _REFSEL>[src]

read() method returns refsel::R reader structure

impl Readable for Reg<u32, _EVENTS_EPDATA>[src]

read() method returns events_epdata::R reader structure

impl Readable for Reg<u32, _OUTCLR>[src]

read() method returns outclr::R reader structure

impl Readable for Reg<u32, _MOSI>[src]

read() method returns mosi::R reader structure

impl Readable for Reg<u32, _EVENTS_DONE>[src]

read() method returns events_done::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _NFCPINS>[src]

read() method returns nfcpins::R reader structure

impl Readable for Reg<u32, _EVENTS_CALIBRATEDONE>[src]

read() method returns events_calibratedone::R reader structure

impl Readable for Reg<u32, _SCL>[src]

read() method returns scl::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _T2>[src]

read() method returns t2::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _PSEL>[src]

read() method returns psel::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _FRAMEDELAYMIN>[src]

read() method returns framedelaymin::R reader structure

impl Readable for Reg<u32, _EVENTS_EP0SETUP>[src]

read() method returns events_ep0setup::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _SDA>[src]

read() method returns sda::R reader structure

impl Readable for Reg<u32, _EVENTS_REPORTRDY>[src]

read() method returns events_reportrdy::R reader structure

impl Readable for Reg<u32, _EVENTS_DONE>[src]

read() method returns events_done::R reader structure

impl Readable for Reg<u32, _NRFFW>[src]

read() method returns nrffw::R reader structure

impl Readable for Reg<u32, _ENDDELAY>[src]

read() method returns enddelay::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _LFCLKSTAT>[src]

read() method returns lfclkstat::R reader structure

impl Readable for Reg<u32, _TXD>[src]

read() method returns txd::R reader structure

impl Readable for Reg<u32, _EVENTS_DEVMATCH>[src]

read() method returns events_devmatch::R reader structure

impl Readable for Reg<u32, _LOWPOWER>[src]

read() method returns lowpower::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _EVENTS_TXREADY>[src]

read() method returns events_txready::R reader structure

impl Readable for Reg<u32, _REGOUT0>[src]

read() method returns regout0::R reader structure

impl Readable for Reg<u32, _EEP>[src]

read() method returns eep::R reader structure

impl Readable for Reg<u32, _RTS>[src]

read() method returns rts::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _EVENTS_COMPARE>[src]

read() method returns events_compare::R reader structure

impl Readable for Reg<u32, _RXD>[src]

read() method returns rxd::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _SELRES>[src]

read() method returns selres::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _EVENTS_USBPWRRDY>[src]

read() method returns events_usbpwrrdy::R reader structure

impl Readable for Reg<u32, _EVENTS_EDSTOPPED>[src]

read() method returns events_edstopped::R reader structure

impl Readable for Reg<u32, _T4>[src]

read() method returns t4::R reader structure

impl Readable for Reg<u32, _ERRORSTATUS>[src]

read() method returns errorstatus::R reader structure

impl Readable for Reg<u32, _HYST>[src]

read() method returns hyst::R reader structure

impl Readable for Reg<u32, _SFD>[src]

read() method returns sfd::R reader structure

impl Readable for Reg<u32, _EVENTS_UP>[src]

read() method returns events_up::R reader structure

impl Readable for Reg<u32, _TXEN>[src]

read() method returns txen::R reader structure

impl Readable for Reg<u32, _EVENTS_PWMPERIODEND>[src]

read() method returns events_pwmperiodend::R reader structure

impl Readable for Reg<u32, _EVENTS_RXSTARTED>[src]

read() method returns events_rxstarted::R reader structure

impl Readable for Reg<u32, _END>[src]

read() method returns end::R reader structure

impl Readable for Reg<u32, _ADDRPTR>[src]

read() method returns addrptr::R reader structure

impl Readable for Reg<u32, _EVENTS_TICK>[src]

read() method returns events_tick::R reader structure

impl Readable for Reg<u32, _BAUDRATE>[src]

read() method returns baudrate::R reader structure

impl Readable for Reg<u32, _NRFHW>[src]

read() method returns nrfhw::R reader structure

impl Readable for Reg<u32, _PERM>[src]

read() method returns perm::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_SOF>[src]

read() method returns events_sof::R reader structure

impl Readable for Reg<u32, _POWER>[src]

read() method returns power::R reader structure

impl Readable for Reg<u32, _RAM>[src]

read() method returns ram::R reader structure

impl Readable for Reg<u32, _EVENTS_READY>[src]

read() method returns events_ready::R reader structure

impl Readable for Reg<u32, _TEP>[src]

read() method returns tep::R reader structure

impl Readable for Reg<u32, _PSELRESET>[src]

read() method returns pselreset::R reader structure

impl Readable for Reg<u32, _EVENTS_LFCLKSTARTED>[src]

read() method returns events_lfclkstarted::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _EVENTS_DATARDY>[src]

read() method returns events_datardy::R reader structure

impl Readable for Reg<u32, _A3>[src]

read() method returns a3::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _START>[src]

read() method returns start::R reader structure

impl Readable for Reg<u32, _B3>[src]

read() method returns b3::R reader structure

impl Readable for Reg<u32, _REGIONENCLR>[src]

read() method returns regionenclr::R reader structure

impl Readable for Reg<u32, _FREQUENCY>[src]

read() method returns frequency::R reader structure

impl Readable for Reg<u32, _EVENTS_LASTTX>[src]

read() method returns events_lasttx::R reader structure

impl Readable for Reg<u32, _EVENTS_SAMPLERDY>[src]

read() method returns events_samplerdy::R reader structure

impl Readable for Reg<u32, _DFESTATUS>[src]

read() method returns dfestatus::R reader structure

impl Readable for Reg<u32, _EVENTS_RESOLVED>[src]

read() method returns events_resolved::R reader structure

impl Readable for Reg<u32, _DIRSET>[src]

read() method returns dirset::R reader structure

impl Readable for Reg<u32, _CSN>[src]

read() method returns csn::R reader structure

impl Readable for Reg<u32, _A0>[src]

read() method returns a0::R reader structure

impl Readable for Reg<u32, _ACC>[src]

read() method returns acc::R reader structure

impl Readable for Reg<u32, _REFSEL>[src]

read() method returns refsel::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _ER>[src]

read() method returns er::R reader structure

impl Readable for Reg<u32, _RUNSTATUS>[src]

read() method returns runstatus::R reader structure

impl Readable for Reg<u32, _WVALUEH>[src]

read() method returns wvalueh::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _EVENTS_NCTS>[src]

read() method returns events_ncts::R reader structure

impl Readable for Reg<u32, _EVENTS_UP>[src]

read() method returns events_up::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _TIFS>[src]

read() method returns tifs::R reader structure

impl Readable for Reg<u32, _READYNEXT>[src]

read() method returns readynext::R reader structure

impl Readable for Reg<u32, _RXCRC>[src]

read() method returns rxcrc::R reader structure

impl Readable for Reg<u32, _PART>[src]

read() method returns part::R reader structure

impl Readable for Reg<u32, _EVENTS_AUTOCOLRESSTARTED>[src]

read() method returns events_autocolresstarted::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _NMIEN>[src]

read() method returns nmien::R reader structure

impl Readable for Reg<u32, _DETECTMODE>[src]

read() method returns detectmode::R reader structure

impl Readable for Reg<u32, _EVENTS_RSSIEND>[src]

read() method returns events_rssiend::R reader structure

impl Readable for Reg<u32, _ADDRESS>[src]

read() method returns address::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _PCNF0>[src]

read() method returns pcnf0::R reader structure

impl Readable for Reg<u32, _EVENTS_TXFRAMESTART>[src]

read() method returns events_txframestart::R reader structure

impl Readable for Reg<u32, _USBADDR>[src]

read() method returns usbaddr::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _CODEPAGESIZE>[src]

read() method returns codepagesize::R reader structure

impl Readable for Reg<u32, _ALIGN>[src]

read() method returns align::R reader structure

impl Readable for Reg<u32, _MODULATIONCTRL>[src]

read() method returns modulationctrl::R reader structure

impl Readable for Reg<u32, _MAXLEN>[src]

read() method returns maxlen::R reader structure

impl Readable for Reg<u32, _RESETREAS>[src]

read() method returns resetreas::R reader structure

impl Readable for Reg<u32, _SCL>[src]

read() method returns scl::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _PREFIX1>[src]

read() method returns prefix1::R reader structure

impl Readable for Reg<u32, _NMIENSET>[src]

read() method returns nmienset::R reader structure

impl Readable for Reg<u32, _MCKFREQ>[src]

read() method returns mckfreq::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDTX>[src]

read() method returns events_endtx::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _RXD>[src]

read() method returns rxd::R reader structure

impl Readable for Reg<u32, _TXPOWER>[src]

read() method returns txpower::R reader structure

impl Readable for Reg<u32, _B3>[src]

read() method returns b3::R reader structure

impl Readable for Reg<u32, _EVENTS_MHRMATCH>[src]

read() method returns events_mhrmatch::R reader structure

impl Readable for Reg<u32, _EVENTS_TXDRDY>[src]

read() method returns events_txdrdy::R reader structure

impl Readable for Reg<u32, _DTOGGLE>[src]

read() method returns dtoggle::R reader structure

impl Readable for Reg<u32, _DIN>[src]

read() method returns din::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _SDA>[src]

read() method returns sda::R reader structure

impl Readable for Reg<u32, _SCK>[src]

read() method returns sck::R reader structure

impl Readable for Reg<u32, _T2>[src]

read() method returns t2::R reader structure

impl Readable for Reg<u32, _EVENTCAUSE>[src]

read() method returns eventcause::R reader structure

impl Readable for Reg<u32, _PRESCALER>[src]

read() method returns prescaler::R reader structure

impl Readable for Reg<u32, _EVENTS_ERROR>[src]

read() method returns events_error::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _RSSISAMPLE>[src]

read() method returns rssisample::R reader structure

impl Readable for Reg<u32, _EDSAMPLE>[src]

read() method returns edsample::R reader structure

impl Readable for Reg<u32, _ACCDBLREAD>[src]

read() method returns accdblread::R reader structure

impl Readable for Reg<u32, _PDUSTAT>[src]

read() method returns pdustat::R reader structure

impl Readable for Reg<u32, _EVENTS_CCAIDLE>[src]

read() method returns events_ccaidle::R reader structure

impl Readable for Reg<u32, _SWIDTH>[src]

read() method returns swidth::R reader structure

impl Readable for Reg<u32, _DEVICEID>[src]

read() method returns deviceid::R reader structure

impl Readable for Reg<u32, _VARIANT>[src]

read() method returns variant::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _SCK>[src]

read() method returns sck::R reader structure

impl Readable for Reg<u32, _EVENTS_PHYEND>[src]

read() method returns events_phyend::R reader structure

impl Readable for Reg<u32, _POWER>[src]

read() method returns power::R reader structure

impl Readable for Reg<u32, _PRESCALER>[src]

read() method returns prescaler::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _TXD>[src]

read() method returns txd::R reader structure

impl Readable for Reg<u32, _NMIENCLR>[src]

read() method returns nmienclr::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _EVENTS_EDEND>[src]

read() method returns events_edend::R reader structure

impl Readable for Reg<u32, _USBPULLUP>[src]

read() method returns usbpullup::R reader structure

impl Readable for Reg<u32, _CTS>[src]

read() method returns cts::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _TEP>[src]

read() method returns tep::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _EVENTS_STARTED>[src]

read() method returns events_started::R reader structure

impl Readable for Reg<u32, _PRESCALER>[src]

read() method returns prescaler::R reader structure

impl Readable for Reg<u32, _EVENTS_CTEPRESENT>[src]

read() method returns events_ctepresent::R reader structure

impl Readable for Reg<u32, _EVENTS_RXFRAMEEND>[src]

read() method returns events_rxframeend::R reader structure

impl Readable for Reg<u32, _EVENTS_SEQSTARTED>[src]

read() method returns events_seqstarted::R reader structure

impl Readable for Reg<u32, _EVENTS_VALRDY>[src]

read() method returns events_valrdy::R reader structure

impl Readable for Reg<u32, _RATIO>[src]

read() method returns ratio::R reader structure

impl Readable for Reg<u32, _TEMP>[src]

read() method returns temp::R reader structure

impl Readable for Reg<u32, _ISOOUT>[src]

read() method returns isoout::R reader structure

impl Readable for Reg<u32, _ERRORSRC>[src]

read() method returns errorsrc::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _WA>[src]

read() method returns wa::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_SLEEPEXIT>[src]

read() method returns events_sleepexit::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _FRAMECNTR>[src]

read() method returns framecntr::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _LFCLKSRC>[src]

read() method returns lfclksrc::R reader structure

impl Readable for Reg<u32, _EVENTS_RXDREADY>[src]

read() method returns events_rxdready::R reader structure

impl Readable for Reg<u32, _EVENTS_READY>[src]

read() method returns events_ready::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _EVENTS_ERROR>[src]

read() method returns events_error::R reader structure

impl Readable for Reg<u32, _EVENTS_ERROR>[src]

read() method returns events_error::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _ERRORSRC>[src]

read() method returns errorsrc::R reader structure

impl Readable for Reg<u32, _UNUSED>[src]

read() method returns unused::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_READY>[src]

read() method returns events_ready::R reader structure

impl Readable for Reg<u32, _DAI>[src]

read() method returns dai::R reader structure

impl Readable for Reg<u32, _EVENTS_STARTED>[src]

read() method returns events_started::R reader structure

impl Readable for Reg<u32, _SEMSTAT>[src]

read() method returns semstat::R reader structure

impl Readable for Reg<u32, _EVENTS_USBRESET>[src]

read() method returns events_usbreset::R reader structure

impl Readable for Reg<u32, _EVENTS_RXTO>[src]

read() method returns events_rxto::R reader structure

impl Readable for Reg<u32, _DFECTRL2>[src]

read() method returns dfectrl2::R reader structure

impl Readable for Reg<u32, _EVENTS_SEQEND>[src]

read() method returns events_seqend::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _CNFPTR>[src]

read() method returns cnfptr::R reader structure

impl Readable for Reg<u32, _A3>[src]

read() method returns a3::R reader structure

impl Readable for Reg<u32, _B5>[src]

read() method returns b5::R reader structure

impl Readable for Reg<u32, _EVENTS_ERRORECB>[src]

read() method returns events_errorecb::R reader structure

impl Readable for Reg<u32, _INPTR>[src]

read() method returns inptr::R reader structure

impl Readable for Reg<u32, _EVENTS_WRITE>[src]

read() method returns events_write::R reader structure

impl Readable for Reg<u32, _DFEMODE>[src]

read() method returns dfemode::R reader structure

impl Readable for Reg<u32, _SLEEPSTATE>[src]

read() method returns sleepstate::R reader structure

impl Readable for Reg<u32, _BASE1>[src]

read() method returns base1::R reader structure

impl Readable for Reg<u32, _DPDMVALUE>[src]

read() method returns dpdmvalue::R reader structure

impl Readable for Reg<u32, _SENSRES>[src]

read() method returns sensres::R reader structure

impl Readable for Reg<u32, _EVENTS_TXSTARTED>[src]

read() method returns events_txstarted::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _CRCCNF>[src]

read() method returns crccnf::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _EVENTS_BB>[src]

read() method returns events_bb::R reader structure

impl Readable for Reg<u32, _DAB>[src]

read() method returns dab::R reader structure

impl Readable for Reg<u32, _PRODTEST>[src]

read() method returns prodtest::R reader structure

impl Readable for Reg<u32, _SIZE>[src]

read() method returns size::R reader structure

impl Readable for Reg<u32, _DCXCNT>[src]

read() method returns dcxcnt::R reader structure

impl Readable for Reg<u32, _EVENTS_USBDETECTED>[src]

read() method returns events_usbdetected::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _EVENTS_RXPTRUPD>[src]

read() method returns events_rxptrupd::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _PACKAGE>[src]

read() method returns package::R reader structure

impl Readable for Reg<u32, _ERASEPAGEPARTIALCFG>[src]

read() method returns erasepagepartialcfg::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _EVENTS_CROSS>[src]

read() method returns events_cross::R reader structure

impl Readable for Reg<u32, _EVENTS_HFCLKSTARTED>[src]

read() method returns events_hfclkstarted::R reader structure

impl Readable for Reg<u32, _DIRCLR>[src]

read() method returns dirclr::R reader structure

impl Readable for Reg<u32, _B5>[src]

read() method returns b5::R reader structure

impl Readable for Reg<u32, _EVENTS_FIELDDETECTED>[src]

read() method returns events_fielddetected::R reader structure

impl Readable for Reg<u32, _SCRATCHPTR>[src]

read() method returns scratchptr::R reader structure

impl Readable for Reg<u32, _LED>[src]

read() method returns led::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _BCC>[src]

read() method returns bcc::R reader structure

impl Readable for Reg<u32, _EVENTS_END>[src]

read() method returns events_end::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _CTIV>[src]

read() method returns ctiv::R reader structure

impl Readable for Reg<u32, _EVENTS_STARTED>[src]

read() method returns events_started::R reader structure

impl Readable for Reg<u32, _A0>[src]

read() method returns a0::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _RX>[src]

read() method returns rx::R reader structure

impl Readable for Reg<u32, _DEBUGCTRL>[src]

read() method returns debugctrl::R reader structure

impl Readable for Reg<u32, _EPDATASTATUS>[src]

read() method returns epdatastatus::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _B0>[src]

read() method returns b0::R reader structure

impl Readable for Reg<u32, _OVERSAMPLE>[src]

read() method returns oversample::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _CRV>[src]

read() method returns crv::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_READ>[src]

read() method returns events_read::R reader structure

impl Readable for Reg<u32, _IN>[src]

read() method returns in_::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _EVENTS_CTSTARTED>[src]

read() method returns events_ctstarted::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_OVRFLW>[src]

read() method returns events_ovrflw::R reader structure

impl Readable for Reg<u32, _FREQUENCY>[src]

read() method returns frequency::R reader structure

impl Readable for Reg<u32, _EVENTS_RXERROR>[src]

read() method returns events_rxerror::R reader structure

impl Readable for Reg<u32, _CUSTOMER>[src]

read() method returns customer::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _EVENTS_PORT>[src]

read() method returns events_port::R reader structure

impl Readable for Reg<u32, _TXADDRESS>[src]

read() method returns txaddress::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _MHRMATCHMAS>[src]

read() method returns mhrmatchmas::R reader structure

impl Readable for Reg<u32, _EVENTS_SYNC>[src]

read() method returns events_sync::R reader structure

impl Readable for Reg<u32, _MISO>[src]

read() method returns miso::R reader structure

impl Readable for Reg<u32, _A>[src]

read() method returns a::R reader structure

impl Readable for Reg<u32, _EVENTS_CCABUSY>[src]

read() method returns events_ccabusy::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _EVENTS_COMPARE>[src]

read() method returns events_compare::R reader structure

impl Readable for Reg<u32, _HFXODEBOUNCE>[src]

read() method returns hfxodebounce::R reader structure

impl Readable for Reg<u32, _RA>[src]

read() method returns ra::R reader structure

impl Readable for Reg<u32, _PSELP>[src]

read() method returns pselp::R reader structure

impl Readable for Reg<u32, _MOSI>[src]

read() method returns mosi::R reader structure

impl Readable for Reg<u32, _BAUDRATE>[src]

read() method returns baudrate::R reader structure

impl Readable for Reg<u32, _EVENTS_NOTRESOLVED>[src]

read() method returns events_notresolved::R reader structure

impl Readable for Reg<u32, _CHENCLR>[src]

read() method returns chenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDTX>[src]

read() method returns events_endtx::R reader structure

impl Readable for Reg<u32, _EVENTS_USBEVENT>[src]

read() method returns events_usbevent::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _LEDPRE>[src]

read() method returns ledpre::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _ORC>[src]

read() method returns orc::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDRX>[src]

read() method returns events_endrx::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _EVENTS_STARTED>[src]

read() method returns events_started::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _FORMAT>[src]

read() method returns format::R reader structure

impl Readable for Reg<u32, _RXD>[src]

read() method returns rxd::R reader structure

impl Readable for Reg<u32, _STALLSTAT>[src]

read() method returns stallstat::R reader structure

impl Readable for Reg<u32, _LOOP>[src]

read() method returns loop_::R reader structure

impl Readable for Reg<u32, _EVENTS_DOWN>[src]

read() method returns events_down::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _RXDELAY>[src]

read() method returns rxdelay::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDCRYPT>[src]

read() method returns events_endcrypt::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDKSGEN>[src]

read() method returns events_endksgen::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _EVENTS_EP0DATADONE>[src]

read() method returns events_ep0datadone::R reader structure

impl Readable for Reg<u32, _RXEN>[src]

read() method returns rxen::R reader structure

impl Readable for Reg<u32, _MODE>[src]

read() method returns mode::R reader structure

impl Readable for Reg<u32, _SUBS>[src]

read() method returns subs::R reader structure

impl Readable for Reg<u32, _CRCPOLY>[src]

read() method returns crcpoly::R reader structure

impl Readable for Reg<u32, _SCRATCHPTR>[src]

read() method returns scratchptr::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _EVENTS_TIMEOUT>[src]

read() method returns events_timeout::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _MHRMATCHCONF>[src]

read() method returns mhrmatchconf::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDTX>[src]

read() method returns events_endtx::R reader structure

impl Readable for Reg<u32, _MCKEN>[src]

read() method returns mcken::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _RXD>[src]

read() method returns rxd::R reader structure

impl Readable for Reg<u32, _AUTOCOLRESCONFIG>[src]

read() method returns autocolresconfig::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _EVENTS_SLEEPENTER>[src]

read() method returns events_sleepenter::R reader structure

impl Readable for Reg<u32, _CSN>[src]

read() method returns csn::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _EVENTS_CRCERROR>[src]

read() method returns events_crcerror::R reader structure

impl Readable for Reg<u32, _CNT>[src]

read() method returns cnt::R reader structure

impl Readable for Reg<u32, _PREFIX0>[src]

read() method returns prefix0::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _WVALUEL>[src]

read() method returns wvaluel::R reader structure

impl Readable for Reg<u32, _A2>[src]

read() method returns a2::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDISOOUT>[src]

read() method returns events_endisoout::R reader structure

impl Readable for Reg<u32, _PSELN>[src]

read() method returns pseln::R reader structure

impl Readable for Reg<u32, _EPOUTEN>[src]

read() method returns epouten::R reader structure

impl Readable for Reg<u32, _EVENTS_RXDRDY>[src]

read() method returns events_rxdrdy::R reader structure

impl Readable for Reg<u32, _EVENTS_END>[src]

read() method returns events_end::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _START>[src]

read() method returns start::R reader structure

impl Readable for Reg<u32, _SUBSTATRA>[src]

read() method returns substatra::R reader structure

impl Readable for Reg<u32, _CTESTATUS>[src]

read() method returns ctestatus::R reader structure

impl Readable for Reg<u32, _EVENTS_ADDRESS>[src]

read() method returns events_address::R reader structure

impl Readable for Reg<u32, _CLEARPATTERN>[src]

read() method returns clearpattern::R reader structure

impl Readable for Reg<u32, _EVENTS_COLLISION>[src]

read() method returns events_collision::R reader structure

impl Readable for Reg<u32, _EXTREFSEL>[src]

read() method returns extrefsel::R reader structure

impl Readable for Reg<u32, _CRCINIT>[src]

read() method returns crcinit::R reader structure

impl Readable for Reg<u32, _END>[src]

read() method returns end::R reader structure

impl Readable for Reg<u32, _SCK>[src]

read() method returns sck::R reader structure

impl Readable for Reg<u32, _FREQUENCY>[src]

read() method returns frequency::R reader structure

impl Readable for Reg<u32, _DEF>[src]

read() method returns def::R reader structure

impl Readable for Reg<u32, _CHANNELS>[src]

read() method returns channels::R reader structure

impl Readable for Reg<u32, _A2>[src]

read() method returns a2::R reader structure

impl Readable for Reg<u32, _T1>[src]

read() method returns t1::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _NFCID1_3RD_LAST>[src]

read() method returns nfcid1_3rd_last::R reader structure

impl Readable for Reg<u32, _WINDEXH>[src]

read() method returns windexh::R reader structure

impl Readable for Reg<u32, _EVENTS_RXFRAMESTART>[src]

read() method returns events_rxframestart::R reader structure

impl Readable for Reg<u32, _ANADETECT>[src]

read() method returns anadetect::R reader structure

impl Readable for Reg<u32, _EPOUT>[src]

read() method returns epout::R reader structure

impl Readable for Reg<u32, _ORC>[src]

read() method returns orc::R reader structure

impl Readable for Reg<u32, _A5>[src]

read() method returns a5::R reader structure

impl Readable for Reg<u32, _A5>[src]

read() method returns a5::R reader structure

impl Readable for Reg<u32, _TAGHEADER2>[src]

read() method returns tagheader2::R reader structure

impl Readable for Reg<u32, _EVENTS_FRAMESTART>[src]

read() method returns events_framestart::R reader structure

impl Readable for Reg<u32, _CRCSTATUS>[src]

read() method returns crcstatus::R reader structure

impl Readable for Reg<u32, _COUNTERTOP>[src]

read() method returns countertop::R reader structure

impl Readable for Reg<u32, _EVENTS_RATEBOOST>[src]

read() method returns events_rateboost::R reader structure

impl Readable for Reg<u32, _MISO>[src]

read() method returns miso::R reader structure

impl Readable for Reg<u32, _EVENTS_CTS>[src]

read() method returns events_cts::R reader structure

impl Readable for Reg<u32, _DECODER>[src]

read() method returns decoder::R reader structure

impl Readable for Reg<u32, _STATUS>[src]

read() method returns status::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDRX>[src]

read() method returns events_endrx::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _HFCLKRUN>[src]

read() method returns hfclkrun::R reader structure

impl Readable for Reg<u32, _T4>[src]

read() method returns t4::R reader structure

impl Readable for Reg<u32, _MODE>[src]

read() method returns mode::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _RATIO>[src]

read() method returns ratio::R reader structure

impl Readable for Reg<u32, _EVENTS_ACCOF>[src]

read() method returns events_accof::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_ACQUIRED>[src]

read() method returns events_acquired::R reader structure

impl Readable for Reg<u32, _FREQUENCY>[src]

read() method returns frequency::R reader structure

impl Readable for Reg<u32, _REFRESH>[src]

read() method returns refresh::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_PAYLOAD>[src]

read() method returns events_payload::R reader structure

impl Readable for Reg<u32, _EVENTS_DBLRDY>[src]

read() method returns events_dblrdy::R reader structure

impl Readable for Reg<u32, _EPINEN>[src]

read() method returns epinen::R reader structure

impl Readable for Reg<u32, _SAMPLEPER>[src]

read() method returns sampleper::R reader structure

impl Readable for Reg<u32, _PACKETPTR>[src]

read() method returns packetptr::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _STATUS>[src]

read() method returns status::R reader structure

impl Readable for Reg<u32, _POFCON>[src]

read() method returns pofcon::R reader structure

impl Readable for Reg<u32, _LATCH>[src]

read() method returns latch::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _EVENTS_DOWN>[src]

read() method returns events_down::R reader structure

impl Readable for Reg<u32, _REQSTATUS>[src]

read() method returns reqstatus::R reader structure

impl Readable for Reg<u32, _BREQUEST>[src]

read() method returns brequest::R reader structure

impl Readable for Reg<u32, _SWITCHPATTERN>[src]

read() method returns switchpattern::R reader structure

impl Readable for Reg<u32, _FRAMECONFIG>[src]

read() method returns frameconfig::R reader structure

impl Readable for Reg<u32, _APPROTECT>[src]

read() method returns approtect::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDEPIN>[src]

read() method returns events_endepin::R reader structure

impl Readable for Reg<u32, _EVENTS_END>[src]

read() method returns events_end::R reader structure

impl Readable for Reg<u32, _ECBDATAPTR>[src]

read() method returns ecbdataptr::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _WINDEXL>[src]

read() method returns windexl::R reader structure

impl Readable for Reg<u32, _EVTENCLR>[src]

read() method returns evtenclr::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_TXDSENT>[src]

read() method returns events_txdsent::R reader structure

impl Readable for Reg<u32, _CC>[src]

read() method returns cc::R reader structure

impl Readable for Reg<u32, _LRCK>[src]

read() method returns lrck::R reader structure

impl Readable for Reg<u32, _EVENTS_CTTO>[src]

read() method returns events_ctto::R reader structure

impl Readable for Reg<u32, _MODE>[src]

read() method returns mode::R reader structure

impl Readable for Reg<u32, _MODE>[src]

read() method returns mode::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDRX>[src]

read() method returns events_endrx::R reader structure

impl Readable for Reg<u32, _SDIN>[src]

read() method returns sdin::R reader structure

impl Readable for Reg<u32, _SAMPLE>[src]

read() method returns sample::R reader structure

impl Readable for Reg<u32, _RATEOVERRIDE>[src]

read() method returns rateoverride::R reader structure

impl Readable for Reg<u32, _RA>[src]

read() method returns ra::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _EVENTS_RESULTDONE>[src]

read() method returns events_resultdone::R reader structure

impl Readable for Reg<u32, _SHORTS>[src]

read() method returns shorts::R reader structure

impl Readable for Reg<u32, _GPREGRET2>[src]

read() method returns gpregret2::R reader structure

impl Readable for Reg<u32, _MODE>[src]

read() method returns mode::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _CC>[src]

read() method returns cc::R reader structure

impl Readable for Reg<u32, _TAGHEADER0>[src]

read() method returns tagheader0::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _EVENTS_SUSPENDED>[src]

read() method returns events_suspended::R reader structure

impl Readable for Reg<u32, _EVENTS_ERROR>[src]

read() method returns events_error::R reader structure

impl Readable for Reg<u32, _CODESIZE>[src]

read() method returns codesize::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _T1>[src]

read() method returns t1::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_DISABLED>[src]

read() method returns events_disabled::R reader structure

impl Readable for Reg<u32, _EVENTS_RXTO>[src]

read() method returns events_rxto::R reader structure

impl Readable for Reg<u32, _EVENTS_TXSTOPPED>[src]

read() method returns events_txstopped::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_USBREMOVED>[src]

read() method returns events_usbremoved::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_ERROR>[src]

read() method returns events_error::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _HYST>[src]

read() method returns hyst::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _MICSTATUS>[src]

read() method returns micstatus::R reader structure

impl Readable for Reg<u32, _RAMSTATUS>[src]

read() method returns ramstatus::R reader structure

impl Readable for Reg<u32, _LIST>[src]

read() method returns list::R reader structure

impl Readable for Reg<u32, _MODECNF0>[src]

read() method returns modecnf0::R reader structure

impl Readable for Reg<u32, _EVENTS_RXSTARTED>[src]

read() method returns events_rxstarted::R reader structure

impl Readable for Reg<u32, _EVENTS_READY>[src]

read() method returns events_ready::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _TAGHEADER1>[src]

read() method returns tagheader1::R reader structure

impl Readable for Reg<u32, _MAXPACKETSIZE>[src]

read() method returns maxpacketsize::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _LIMITH>[src]

read() method returns limith::R reader structure

impl Readable for Reg<u32, _TXD>[src]

read() method returns txd::R reader structure

impl Readable for Reg<u32, _ICACHECNF>[src]

read() method returns icachecnf::R reader structure

impl Readable for Reg<u32, _EVENTS_ERROR>[src]

read() method returns events_error::R reader structure

impl Readable for Reg<u32, _SUBSTATWA>[src]

read() method returns substatwa::R reader structure

impl Readable for Reg<u32, _EPSTATUS>[src]

read() method returns epstatus::R reader structure

impl Readable for Reg<u32, _EVENTS_TRIGGERED>[src]

read() method returns events_triggered::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _ERRORSRC>[src]

read() method returns errorsrc::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _DEVICEADDR>[src]

read() method returns deviceaddr::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDRX>[src]

read() method returns events_endrx::R reader structure

impl Readable for Reg<u32, _REPORTPER>[src]

read() method returns reportper::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _MODE>[src]

read() method returns mode::R reader structure

impl Readable for Reg<u32, _NFCTAGSTATE>[src]

read() method returns nfctagstate::R reader structure

impl Readable for Reg<u32, _ERRORSRC>[src]

read() method returns errorsrc::R reader structure

impl Readable for Reg<u32, _EVENTS_SELECTED>[src]

read() method returns events_selected::R reader structure

impl Readable for Reg<u32, _EVENTS_ERROR>[src]

read() method returns events_error::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _DFEGPIO>[src]

read() method returns dfegpio::R reader structure

impl Readable for Reg<u32, _ISOINCONFIG>[src]

read() method returns isoinconfig::R reader structure

impl Readable for Reg<u32, _EVENTS_CTS>[src]

read() method returns events_cts::R reader structure

impl Readable for Reg<u32, _EVENTS_SUSPENDED>[src]

read() method returns events_suspended::R reader structure

impl Readable for Reg<u32, _A4>[src]

read() method returns a4::R reader structure

impl Readable for Reg<u32, _DATAWHITEIV>[src]

read() method returns datawhiteiv::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _RXD>[src]

read() method returns rxd::R reader structure

impl Readable for Reg<u32, _TRACECONFIG>[src]

read() method returns traceconfig::R reader structure

impl Readable for Reg<u32, _IHIT>[src]

read() method returns ihit::R reader structure

impl Readable for Reg<u32, _FLASH>[src]

read() method returns flash::R reader structure

impl Readable for Reg<u32, _OUT>[src]

read() method returns out::R reader structure

impl Readable for Reg<u32, _FIELDPRESENT>[src]

read() method returns fieldpresent::R reader structure

impl Readable for Reg<u32, _EVENTS_TXSTARTED>[src]

read() method returns events_txstarted::R reader structure

impl Readable for Reg<u32, _B4>[src]

read() method returns b4::R reader structure

impl Readable for Reg<u32, _LIMIT>[src]

read() method returns limit::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _EVENTS_FIELDLOST>[src]

read() method returns events_fieldlost::R reader structure

impl Readable for Reg<u32, _T3>[src]

read() method returns t3::R reader structure

impl Readable for Reg<u32, _TAGHEADER3>[src]

read() method returns tagheader3::R reader structure

impl Readable for Reg<u32, _ACCREAD>[src]

read() method returns accread::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _B2>[src]

read() method returns b2::R reader structure

impl Readable for Reg<u32, _MISO>[src]

read() method returns miso::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _LFCLKSRCCOPY>[src]

read() method returns lfclksrccopy::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _EVENTS_LOOPSDONE>[src]

read() method returns events_loopsdone::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EDCNT>[src]

read() method returns edcnt::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDEPOUT>[src]

read() method returns events_endepout::R reader structure

impl Readable for Reg<u32, _EVENTS_BCMATCH>[src]

read() method returns events_bcmatch::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _IRKPTR>[src]

read() method returns irkptr::R reader structure

impl Readable for Reg<u32, _MODULATIONPSEL>[src]

read() method returns modulationpsel::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _PIN_CNF>[src]

read() method returns pin_cnf::R reader structure

impl Readable for Reg<u32, _DIR>[src]

read() method returns dir::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _B4>[src]

read() method returns b4::R reader structure

impl Readable for Reg<u32, _CCACTRL>[src]

read() method returns ccactrl::R reader structure

impl Readable for Reg<u32, _WLENGTHH>[src]

read() method returns wlengthh::R reader structure

impl Readable for Reg<u32, _ACCDBL>[src]

read() method returns accdbl::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _CHENSET>[src]

read() method returns chenset::R reader structure

impl Readable for Reg<u32, _EVENTS_RXSTARTED>[src]

read() method returns events_rxstarted::R reader structure

impl Readable for Reg<u32, _TH>[src]

read() method returns th::R reader structure

impl Readable for Reg<u32, _FRAMECONFIG>[src]

read() method returns frameconfig::R reader structure

impl Readable for Reg<u32, _BASE0>[src]

read() method returns base0::R reader structure

impl Readable for Reg<u32, _USBREGSTATUS>[src]

read() method returns usbregstatus::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _EVENTS_STARTED>[src]

read() method returns events_started::R reader structure

impl Readable for Reg<u32, _OUT>[src]

read() method returns out::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _TXD>[src]

read() method returns txd::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _SCL>[src]

read() method returns scl::R reader structure

impl Readable for Reg<u32, _EVENTS_TXDRDY>[src]

read() method returns events_txdrdy::R reader structure

impl Readable for Reg<u32, _ADDRESS>[src]

read() method returns address::R reader structure

impl Readable for Reg<u32, _EPIN>[src]

read() method returns epin::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _COUNTER>[src]

read() method returns counter::R reader structure

impl Readable for Reg<u32, _READY>[src]

read() method returns ready::R reader structure

impl Readable for Reg<u32, _LIMITL>[src]

read() method returns limitl::R reader structure

impl Readable for Reg<u32, _EPOUT>[src]

read() method returns epout::R reader structure

impl Readable for Reg<u32, _T0>[src]

read() method returns t0::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _OUTSET>[src]

read() method returns outset::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _EVENTS_TXPTRUPD>[src]

read() method returns events_txptrupd::R reader structure

impl Readable for Reg<u32, _IR>[src]

read() method returns ir::R reader structure

impl Readable for Reg<u32, _CTEINLINECONF>[src]

read() method returns cteinlineconf::R reader structure

impl Readable for Reg<u32, _RESULT>[src]

read() method returns result::R reader structure

impl Readable for Reg<u32, _EXTREFSEL>[src]

read() method returns extrefsel::R reader structure

impl Readable for Reg<u32, _LFCLKRUN>[src]

read() method returns lfclkrun::R reader structure

impl Readable for Reg<u32, _BITMODE>[src]

read() method returns bitmode::R reader structure

impl Readable for Reg<u32, _STATE>[src]

read() method returns state::R reader structure

impl Readable for Reg<u32, _EVENTS_TXSTARTED>[src]

read() method returns events_txstarted::R reader structure

impl Readable for Reg<u32, _SCK>[src]

read() method returns sck::R reader structure

impl Readable for Reg<u32, _PTR>[src]

read() method returns ptr::R reader structure

impl Readable for Reg<u32, _DACNF>[src]

read() method returns dacnf::R reader structure

impl Readable for Reg<u32, _ADDRESS>[src]

read() method returns address::R reader structure

impl Readable for Reg<u32, _EVENTS_STOPPED>[src]

read() method returns events_stopped::R reader structure

impl Readable for Reg<u32, _OUTPTR>[src]

read() method returns outptr::R reader structure

impl Readable for Reg<u32, _AMOUNT>[src]

read() method returns amount::R reader structure

impl Readable for Reg<u32, _EVTENSET>[src]

read() method returns evtenset::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _B1>[src]

read() method returns b1::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _INTEN>[src]

read() method returns inten::R reader structure

impl Readable for Reg<u32, _CLK>[src]

read() method returns clk::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _B0>[src]

read() method returns b0::R reader structure

impl Readable for Reg<u32, _RREN>[src]

read() method returns rren::R reader structure

impl Readable for Reg<u32, _EVENTS_ENDISOIN>[src]

read() method returns events_endisoin::R reader structure

impl Readable for Reg<u32, _DEVICEADDRTYPE>[src]

read() method returns deviceaddrtype::R reader structure

impl Readable for Reg<u32, _FREQUENCY>[src]

read() method returns frequency::R reader structure

impl Readable for Reg<u32, _RTS>[src]

read() method returns rts::R reader structure

impl Readable for Reg<u32, _EVENTS_DEVMISS>[src]

read() method returns events_devmiss::R reader structure

impl Readable for Reg<u32, _PCNF1>[src]

read() method returns pcnf1::R reader structure

impl Readable for Reg<u32, _GAINL>[src]

read() method returns gainl::R reader structure

impl Readable for Reg<u32, _INTENSET>[src]

read() method returns intenset::R reader structure

impl Readable for Reg<u32, _T3>[src]

read() method returns t3::R reader structure

impl Readable for Reg<u32, _EVTEN>[src]

read() method returns evten::R reader structure

impl Readable for Reg<u32, _PSEL>[src]

read() method returns psel::R reader structure

impl Readable for Reg<u32, _PDMCLKCTRL>[src]

read() method returns pdmclkctrl::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _RESOLUTION>[src]

read() method returns resolution::R reader structure

impl Readable for Reg<u32, _PSELDCX>[src]

read() method returns pseldcx::R reader structure

impl Readable for Reg<u32, _DAP>[src]

read() method returns dap::R reader structure

impl Readable for Reg<u32, _T0>[src]

read() method returns t0::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _RESULT>[src]

read() method returns result::R reader structure

impl Readable for Reg<u32, _EVENTS_LASTRX>[src]

read() method returns events_lastrx::R reader structure

impl Readable for Reg<u32, _LEDPOL>[src]

read() method returns ledpol::R reader structure

impl Readable for Reg<u32, _WA>[src]

read() method returns wa::R reader structure

impl Readable for Reg<u32, _RXADDRESSES>[src]

read() method returns rxaddresses::R reader structure

impl Readable for Reg<u32, _NFCID1_LAST>[src]

read() method returns nfcid1_last::R reader structure

impl Readable for Reg<u32, _ENABLE>[src]

read() method returns enable::R reader structure

impl Readable for Reg<u32, _EVENTS_NCTS>[src]

read() method returns events_ncts::R reader structure

impl Readable for Reg<u32, _ERRORSRC>[src]

read() method returns errorsrc::R reader structure

impl Readable for Reg<u32, _EVENTS_CROSS>[src]

read() method returns events_cross::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _B1>[src]

read() method returns b1::R reader structure

impl Readable for Reg<u32, _EVENTS_END>[src]

read() method returns events_end::R reader structure

impl Readable for Reg<u32, _CSNDUR>[src]

read() method returns csndur::R reader structure

impl Readable for Reg<u32, _MAXCNT>[src]

read() method returns maxcnt::R reader structure

impl Readable for Reg<u32, _CONFIG>[src]

read() method returns config::R reader structure

impl Readable for Reg<u32, _CHEN>[src]

read() method returns chen::R reader structure

impl Readable for Reg<u32, _INTENCLR>[src]

read() method returns intenclr::R reader structure

impl Readable for Reg<u32, _ADDR>[src]

read() method returns addr::R reader structure

impl Readable for Reg<u32, _CHG>[src]

read() method returns chg::R reader structure

impl ResetValue for Reg<u32, _ADDRESS>[src]

Register ADDRESS[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SUBSTATRA>[src]

Register SUBSTATRA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTTX>[src]

Register TASKS_STARTTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTRX>[src]

Register TASKS_STARTRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CRCPOLY>[src]

Register CRCPOLY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CTS>[src]

Register CTS reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DOWN>[src]

Register EVENTS_DOWN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FRAMECONFIG>[src]

Register FRAMECONFIG reset()’s with value 0x17

type Type = u32

Register size

impl ResetValue for Reg<u32, _FRAMECONFIG>[src]

Register FRAMECONFIG reset()’s with value 0x15

type Type = u32

Register size

impl ResetValue for Reg<u32, _T3>[src]

Register T3 reset()’s with value 0x3c

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_END>[src]

Register EVENTS_END reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CRCERROR>[src]

Register EVENTS_CRCERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_PWMPERIODEND>[src]

Register EVENTS_PWMPERIODEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DIN>[src]

Register DIN reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _DEF>[src]

Register DEF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_TRIGGER>[src]

Register TASKS_TRIGGER[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _GAINR>[src]

Register GAINR reset()’s with value 0x28

type Type = u32

Register size

impl ResetValue for Reg<u32, _OUT>[src]

Register OUT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODULATIONPSEL>[src]

Register MODULATIONPSEL reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXPACKETSIZE>[src]

Register MAXPACKETSIZE reset()’s with value 0xfb

type Type = u32

Register size

impl ResetValue for Reg<u32, _B4>[src]

Register B4 reset()’s with value 0x0124

type Type = u32

Register size

impl ResetValue for Reg<u32, _OUTSET>[src]

Register OUTSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTRX>[src]

Register TASKS_STARTRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DIRCLR>[src]

Register DIRCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_DISABLE>[src]

Register TASKS_DISABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SENSRES>[src]

Register SENSRES reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_BB>[src]

Register EVENTS_BB reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_EP0DATADONE>[src]

Register EVENTS_EP0DATADONE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CRCCNF>[src]

Register CRCCNF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _T0>[src]

Register T0 reset()’s with value 0xe2

type Type = u32

Register size

impl ResetValue for Reg<u32, _DATAWHITEIV>[src]

Register DATAWHITEIV reset()’s with value 0x40

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_END>[src]

Register EVENTS_END reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERRORECB>[src]

Register EVENTS_ERRORECB reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTEPOUT>[src]

Register TASKS_STARTEPOUT[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LFXODEBOUNCE>[src]

Register LFXODEBOUNCE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _B1>[src]

Register B1 reset()’s with value 0x3fbe

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERASEALL>[src]

Register ERASEALL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _END>[src]

Register END reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REFRESH>[src]

Register REFRESH reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REPORTPER>[src]

Register REPORTPER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDTX>[src]

Register EVENTS_ENDTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CLK>[src]

Register CLK reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _AUTOCOLRESCONFIG>[src]

Register AUTOCOLRESCONFIG reset()’s with value 0x02

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXSTARTED>[src]

Register EVENTS_RXSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXD>[src]

Register TXD reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SUSPEND>[src]

Register TASKS_SUSPEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RDCLRACC>[src]

Register TASKS_RDCLRACC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CRYPT>[src]

Register TASKS_CRYPT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXERROR>[src]

Register EVENTS_RXERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_END>[src]

Register EVENTS_END reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STARTED>[src]

Register EVENTS_STARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODULATIONCTRL>[src]

Register MODULATIONCTRL reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_READY>[src]

Register EVENTS_READY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STARTED>[src]

Register EVENTS_STARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDECB>[src]

Register EVENTS_ENDECB reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PSEL>[src]

Register PSEL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERRORSRC>[src]

Register ERRORSRC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_READY>[src]

Register EVENTS_READY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RESUME>[src]

Register TASKS_RESUME reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DATARDY>[src]

Register EVENTS_DATARDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _WA>[src]

Register WA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CALIBRATEDONE>[src]

Register EVENTS_CALIBRATEDONE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_BCMATCH>[src]

Register EVENTS_BCMATCH reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DEVMISS>[src]

Register EVENTS_DEVMISS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RXDELAY>[src]

Register RXDELAY reset()’s with value 0x02

type Type = u32

Register size

impl ResetValue for Reg<u32, _LATCH>[src]

Register LATCH reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _BCC>[src]

Register BCC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _IHIT>[src]

Register IHIT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_COMPARE>[src]

Register EVENTS_COMPARE[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_PREPARERX>[src]

Register TASKS_PREPARERX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RR>[src]

Register RR[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MHRMATCHMAS>[src]

Register MHRMATCHMAS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ANADETECT>[src]

Register ANADETECT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERASEUICR>[src]

Register ERASEUICR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DCDCEN>[src]

Register DCDCEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NRFHW>[src]

Register NRFHW[%s] reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DONE>[src]

Register EVENTS_DONE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CROSS>[src]

Register EVENTS_CROSS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CTSTART>[src]

Register TASKS_CTSTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_READY>[src]

Register EVENTS_READY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TRIGGERED>[src]

Register EVENTS_TRIGGERED[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DEVMATCH>[src]

Register EVENTS_DEVMATCH reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DCXCNT>[src]

Register DCXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CAPTURE>[src]

Register TASKS_CAPTURE[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LOWPOWER>[src]

Register LOWPOWER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _B2>[src]

Register B2 reset()’s with value 0x3fbe

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_EPDATA>[src]

Register EVENTS_EPDATA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_WRITE>[src]

Register EVENTS_WRITE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_HFCLKSTARTED>[src]

Register EVENTS_HFCLKSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODE>[src]

Register MODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FREQUENCY>[src]

Register FREQUENCY reset()’s with value 0x02

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TIMEOUT>[src]

Register EVENTS_TIMEOUT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RTS>[src]

Register RTS reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _POWERSET>[src]

Register POWERSET reset()’s with value 0xffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MISO>[src]

Register MISO reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EPOUTEN>[src]

Register EPOUTEN reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SOF>[src]

Register EVENTS_SOF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DIS>[src]

Register DIS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERASEPAGE>[src]

Register ERASEPAGE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REGIONEN>[src]

Register REGIONEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RXEN>[src]

Register TASKS_RXEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_PORT>[src]

Register EVENTS_PORT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _T2>[src]

Register T2 reset()’s with value 0x19

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_NOTRESOLVED>[src]

Register EVENTS_NOTRESOLVED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PREFIX1>[src]

Register PREFIX1 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTISOIN>[src]

Register TASKS_STARTISOIN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _T4>[src]

Register T4 reset()’s with value 0x50

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_USBRESET>[src]

Register EVENTS_USBRESET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXREADY>[src]

Register EVENTS_RXREADY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _POFCON>[src]

Register POFCON reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EPSTATUS>[src]

Register EPSTATUS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_LASTTX>[src]

Register EVENTS_LASTTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODE>[src]

Register MODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_MHRMATCH>[src]

Register EVENTS_MHRMATCH reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDEPIN>[src]

Register EVENTS_ENDEPIN[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXSTOPPED>[src]

Register EVENTS_TXSTOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CTS>[src]

Register CTS reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDISOIN>[src]

Register EVENTS_ENDISOIN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DETECTMODE>[src]

Register DETECTMODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTRX>[src]

Register TASKS_STARTRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXFRAMESTART>[src]

Register EVENTS_TXFRAMESTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXADDRESS>[src]

Register TXADDRESS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_PREPARETX>[src]

Register TASKS_PREPARETX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_BCSTART>[src]

Register TASKS_BCSTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERRORSRC>[src]

Register ERRORSRC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SELRES>[src]

Register SELRES reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXD>[src]

Register TXD reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CAL>[src]

Register TASKS_CAL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EPINEN>[src]

Register EPINEN reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOPECB>[src]

Register TASKS_STOPECB reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RX>[src]

Register RX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CTS>[src]

Register EVENTS_CTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _OUT>[src]

Register OUT[%s] reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DBLRDY>[src]

Register EVENTS_DBLRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RESOLUTION>[src]

Register RESOLUTION reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXD>[src]

Register TXD reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXFRAMEEND>[src]

Register EVENTS_TXFRAMEEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TIFS>[src]

Register TIFS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0x1000

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NFCID1_LAST>[src]

Register NFCID1_LAST reset()’s with value 0x6363

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_FIELDLOST>[src]

Register EVENTS_FIELDLOST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXDREADY>[src]

Register EVENTS_RXDREADY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTRX>[src]

Register TASKS_STARTRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CNFPTR>[src]

Register CNFPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PCNF1>[src]

Register PCNF1 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CTSTARTED>[src]

Register EVENTS_CTSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ACQUIRED>[src]

Register EVENTS_ACQUIRED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EEP>[src]

Register EEP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_IN>[src]

Register EVENTS_IN[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DTOGGLE>[src]

Register DTOGGLE reset()’s with value 0x0100

type Type = u32

Register size

impl ResetValue for Reg<u32, _PACKETPTR>[src]

Register PACKETPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _COUNTERTOP>[src]

Register COUNTERTOP reset()’s with value 0x03ff

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_READY>[src]

Register EVENTS_READY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NMIEN>[src]

Register NMIEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CC>[src]

Register CC[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REGIONENCLR>[src]

Register REGIONENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCRATCHPTR>[src]

Register SCRATCHPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PSELN>[src]

Register PSELN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CCAIDLE>[src]

Register EVENTS_CCAIDLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_ENABLERXDATA>[src]

Register TASKS_ENABLERXDATA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _POWER>[src]

Register POWER reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _A0>[src]

Register A0 reset()’s with value 0x0326

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_EP0STATUS>[src]

Register TASKS_EP0STATUS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _BAUDRATE>[src]

Register BAUDRATE reset()’s with value 0x0400_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RESUME>[src]

Register TASKS_RESUME reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_DPDMNODRIVE>[src]

Register TASKS_DPDMNODRIVE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERRORSRC>[src]

Register ERRORSRC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DONE>[src]

Register EVENTS_DONE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RELEASE>[src]

Register TASKS_RELEASE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RATEOVERRIDE>[src]

Register TASKS_RATEOVERRIDE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EDCNT>[src]

Register EDCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RSSISTART>[src]

Register TASKS_RSSISTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVTENCLR>[src]

Register EVTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_NCTS>[src]

Register EVENTS_NCTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERASEPCR1>[src]

Register ERASEPCR1 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SUBS>[src]

Register SUBS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODECNF0>[src]

Register MODECNF0 reset()’s with value 0x0200

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXDRDY>[src]

Register EVENTS_RXDRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDTX>[src]

Register EVENTS_ENDTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CCABUSY>[src]

Register EVENTS_CCABUSY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SUSPENDED>[src]

Register EVENTS_SUSPENDED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _HYST>[src]

Register HYST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXDRDY>[src]

Register EVENTS_TXDRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERASEPCR0>[src]

Register ERASEPCR0 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOPRX>[src]

Register TASKS_STOPRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERROR>[src]

Register EVENTS_ERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXFRAMEEND>[src]

Register EVENTS_RXFRAMEEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _IRKPTR>[src]

Register IRKPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXTO>[src]

Register EVENTS_RXTO reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FRAMEDELAYMODE>[src]

Register FRAMEDELAYMODE reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_KSGEN>[src]

Register TASKS_KSGEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_TXEN>[src]

Register TASKS_TXEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RESUME>[src]

Register TASKS_RESUME reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_UP>[src]

Register EVENTS_UP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CONSTLAT>[src]

Register TASKS_CONSTLAT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RESULTDONE>[src]

Register EVENTS_RESULTDONE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXSTARTED>[src]

Register EVENTS_RXSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _T1>[src]

Register T1 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTECB>[src]

Register TASKS_STARTECB reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FRAMEDELAYMIN>[src]

Register FRAMEDELAYMIN reset()’s with value 0x0480

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_HFCLKSTART>[src]

Register TASKS_HFCLKSTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DEBUGCTRL>[src]

Register DEBUGCTRL reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ADDRESS>[src]

Register EVENTS_ADDRESS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ECBDATAPTR>[src]

Register ECBDATAPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERROR>[src]

Register EVENTS_ERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _A2>[src]

Register A2 reset()’s with value 0x03aa

type Type = u32

Register size

impl ResetValue for Reg<u32, _LRCK>[src]

Register LRCK reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CROSS>[src]

Register EVENTS_CROSS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _IMISS>[src]

Register IMISS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PIN_CNF>[src]

Register PIN_CNF[%s] reset()’s with value 0x02

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODE>[src]

Register MODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ADDRPTR>[src]

Register ADDRPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCL>[src]

Register SCL reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _SDA>[src]

Register SDA reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_AUTOCOLRESSTARTED>[src]

Register EVENTS_AUTOCOLRESSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _A3>[src]

Register A3 reset()’s with value 0x040e

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CC>[src]

Register CC[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CHANNELS>[src]

Register CHANNELS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STARTED>[src]

Register EVENTS_STARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PDMCLKCTRL>[src]

Register PDMCLKCTRL reset()’s with value 0x0840_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _POWER>[src]

Register POWER reset()’s with value 0xffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SDA>[src]

Register SDA reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTEPIN>[src]

Register TASKS_STARTEPIN[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVTEN>[src]

Register EVTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DAP>[src]

Register DAP[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCK>[src]

Register SCK reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTTX>[src]

Register TASKS_STARTTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SDIN>[src]

Register SDIN reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FREQUENCY>[src]

Register FREQUENCY reset()’s with value 0x0400_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SUSPEND>[src]

Register TASKS_SUSPEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_END>[src]

Register EVENTS_END reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_FIELDDETECTED>[src]

Register EVENTS_FIELDDETECTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CSN>[src]

Register CSN reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _SAMPLEPER>[src]

Register SAMPLEPER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDTX>[src]

Register EVENTS_ENDTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _A>[src]

Register A reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SET>[src]

Register TASKS_SET[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_LFCLKSTARTED>[src]

Register EVENTS_LFCLKSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CUSTOMER>[src]

Register CUSTOMER[%s] reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CCASTOPPED>[src]

Register EVENTS_CCASTOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REGIONENSET>[src]

Register REGIONENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_USBEVENT>[src]

Register EVENTS_USBEVENT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_ACTIVATE>[src]

Register TASKS_ACTIVATE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _A1>[src]

Register A1 reset()’s with value 0x0348

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOPTX>[src]

Register TASKS_STOPTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NIRK>[src]

Register NIRK reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _MCKEN>[src]

Register MCKEN reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ACCOF>[src]

Register EVENTS_ACCOF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERRORSRC>[src]

Register ERRORSRC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXPTRUPD>[src]

Register EVENTS_TXPTRUPD reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_POFWARN>[src]

Register EVENTS_POFWARN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXD>[src]

Register TXD reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERRORSTATUS>[src]

Register ERRORSTATUS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SAMPLERATE>[src]

Register SAMPLERATE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CRCINIT>[src]

Register CRCINIT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NMIENSET>[src]

Register NMIENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXTO>[src]

Register EVENTS_RXTO reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SUSPENDED>[src]

Register EVENTS_SUSPENDED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TH>[src]

Register TH reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_TRIGOVRFLW>[src]

Register TASKS_TRIGOVRFLW reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _B0>[src]

Register B0 reset()’s with value 0x3fef

type Type = u32

Register size

impl ResetValue for Reg<u32, _RXD>[src]

Register RXD reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DFEMODE>[src]

Register DFEMODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_PAYLOAD>[src]

Register EVENTS_PAYLOAD reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REFSEL>[src]

Register REFSEL reset()’s with value 0x04

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MISO>[src]

Register MISO reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MOSI>[src]

Register MOSI reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TEP>[src]

Register TEP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXEN>[src]

Register TXEN reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _DIR>[src]

Register DIR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SEQSTARTED>[src]

Register EVENTS_SEQSTARTED[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODE>[src]

Register MODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PSEL>[src]

Register PSEL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RESUME>[src]

Register TASKS_RESUME reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RXADDRESSES>[src]

Register RXADDRESSES reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MISO>[src]

Register MISO reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _PCNF0>[src]

Register PCNF0 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _BASE1>[src]

Register BASE1 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PSELRESET>[src]

Register PSELRESET[%s] reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _GPREGRET2>[src]

Register GPREGRET2 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CTEPRESENT>[src]

Register EVENTS_CTEPRESENT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTCAUSE>[src]

Register EVENTCAUSE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ISOINCONFIG>[src]

Register ISOINCONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CRV>[src]

Register CRV reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DISABLED>[src]

Register EVENTS_DISABLED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_NEXTSTEP>[src]

Register TASKS_NEXTSTEP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _WA>[src]

Register WA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SAMPLERDY>[src]

Register EVENTS_SAMPLERDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_FRAMESTART>[src]

Register EVENTS_FRAMESTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DFEGPIO>[src]

Register DFEGPIO[%s] reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PRESCALER>[src]

Register PRESCALER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_BCSTOP>[src]

Register TASKS_BCSTOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXSTARTED>[src]

Register EVENTS_TXSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PACKETPTR>[src]

Register PACKETPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RATEOVERRIDE>[src]

Register RATEOVERRIDE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERROR>[src]

Register EVENTS_ERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTTX>[src]

Register TASKS_STARTTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_EDSTOP>[src]

Register TASKS_EDSTOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCK>[src]

Register SCK reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXLEN>[src]

Register MAXLEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RXEN>[src]

Register RXEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SYNC>[src]

Register EVENTS_SYNC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STARTED>[src]

Register EVENTS_STARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SWITCHPATTERN>[src]

Register SWITCHPATTERN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SUSPEND>[src]

Register TASKS_SUSPEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EPSTALL>[src]

Register EPSTALL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_READ>[src]

Register EVENTS_READ reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXDRDY>[src]

Register EVENTS_TXDRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _BASE0>[src]

Register BASE0 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _POWERCLR>[src]

Register POWERCLR reset()’s with value 0xffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_DPDMDRIVE>[src]

Register TASKS_DPDMDRIVE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RA>[src]

Register RA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SUSPEND>[src]

Register TASKS_SUSPEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _HFXODEBOUNCE>[src]

Register HFXODEBOUNCE reset()’s with value 0x10

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERROR>[src]

Register EVENTS_ERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CTTO>[src]

Register EVENTS_CTTO reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _B>[src]

Register B reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDRX>[src]

Register EVENTS_ENDRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_ACQUIRE>[src]

Register TASKS_ACQUIRE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PRESCALER>[src]

Register PRESCALER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_LOOPSDONE>[src]

Register EVENTS_LOOPSDONE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDKSGEN>[src]

Register EVENTS_ENDKSGEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERRORSRC>[src]

Register ERRORSRC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CTSTOP>[src]

Register TASKS_CTSTOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_REPORTRDY>[src]

Register EVENTS_REPORTRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SEQSTART>[src]

Register TASKS_SEQSTART[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ICACHECNF>[src]

Register ICACHECNF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SHUTDOWN>[src]

Register TASKS_SHUTDOWN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MOSI>[src]

Register MOSI reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIMITH>[src]

Register LIMITH reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCL>[src]

Register SCL reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_VALRDY>[src]

Register EVENTS_VALRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PSELDCX>[src]

Register PSELDCX reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _USBPULLUP>[src]

Register USBPULLUP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _APPROTECT>[src]

Register APPROTECT reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _RESETREAS>[src]

Register RESETREAS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDRX>[src]

Register EVENTS_ENDRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXDRDY>[src]

Register EVENTS_RXDRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_READY>[src]

Register EVENTS_READY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _B5>[src]

Register B5 reset()’s with value 0x027c

type Type = u32

Register size

impl ResetValue for Reg<u32, _SUBSTATWA>[src]

Register SUBSTATWA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXSTARTED>[src]

Register EVENTS_TXSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NRFFW>[src]

Register NRFFW[%s] reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_END>[src]

Register EVENTS_END reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DFECTRL2>[src]

Register DFECTRL2 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SWIDTH>[src]

Register SWIDTH reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RATEBOOST>[src]

Register EVENTS_RATEBOOST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERASEPAGEPARTIALCFG>[src]

Register ERASEPAGEPARTIALCFG reset()’s with value 0x0a

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXPTRUPD>[src]

Register EVENTS_RXPTRUPD reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0x0002_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SLEEPENTER>[src]

Register EVENTS_SLEEPENTER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_USBDETECTED>[src]

Register EVENTS_USBDETECTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CLR>[src]

Register TASKS_CLR[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FREQUENCY>[src]

Register FREQUENCY reset()’s with value 0x0400_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIMIT>[src]

Register LIMIT reset()’s with value 0x7fff_8000

type Type = u32

Register size

impl ResetValue for Reg<u32, _PREFIX0>[src]

Register PREFIX0 reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTTX>[src]

Register TASKS_STARTTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SENSE>[src]

Register TASKS_SENSE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STARTED>[src]

Register EVENTS_STARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ADDRESS>[src]

Register ADDRESS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REFSEL>[src]

Register REFSEL reset()’s with value 0x04

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CLEAR>[src]

Register TASKS_CLEAR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_NCTS>[src]

Register EVENTS_NCTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCK>[src]

Register SCK reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _DACNF>[src]

Register DACNF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MCK>[src]

Register MCK reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _SDA>[src]

Register SDA reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _ORC>[src]

Register ORC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NFCID1_2ND_LAST>[src]

Register NFCID1_2ND_LAST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_GOSLEEP>[src]

Register TASKS_GOSLEEP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_EDSTOPPED>[src]

Register EVENTS_EDSTOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MCKFREQ>[src]

Register MCKFREQ reset()’s with value 0x2000_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _REGOUT0>[src]

Register REGOUT0 reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERROR>[src]

Register EVENTS_ERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_COMPARE>[src]

Register EVENTS_COMPARE[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CSNDUR>[src]

Register CSNDUR reset()’s with value 0x02

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTISOOUT>[src]

Register TASKS_STARTISOOUT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _HYST>[src]

Register HYST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTEN>[src]

Register INTEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CTIV>[src]

Register CTIV reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_PHYEND>[src]

Register EVENTS_PHYEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CRCOK>[src]

Register EVENTS_CRCOK reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TICK>[src]

Register EVENTS_TICK reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _A4>[src]

Register A4 reset()’s with value 0x04bd

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SELECTED>[src]

Register EVENTS_SELECTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _BAUDRATE>[src]

Register BAUDRATE reset()’s with value 0x0400_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _EN>[src]

Register EN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDRX>[src]

Register EVENTS_ENDRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _B3>[src]

Register B3 reset()’s with value 0x12

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_END>[src]

Register EVENTS_END reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CNT>[src]

Register CNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EXTREFSEL>[src]

Register EXTREFSEL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_OVRFLW>[src]

Register EVENTS_OVRFLW reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCL>[src]

Register SCL reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXSTARTED>[src]

Register EVENTS_RXSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NFCID1_3RD_LAST>[src]

Register NFCID1_3RD_LAST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_EDEND>[src]

Register EVENTS_EDEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TRACECONFIG>[src]

Register TRACECONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_EP0STALL>[src]

Register TASKS_EP0STALL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_UP>[src]

Register EVENTS_UP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _OUTPTR>[src]

Register OUTPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TEP>[src]

Register TEP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_HFCLKSTOP>[src]

Register TASKS_HFCLKSTOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SFD>[src]

Register SFD reset()’s with value 0xa7

type Type = u32

Register size

impl ResetValue for Reg<u32, _RA>[src]

Register RA reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_EP0SETUP>[src]

Register EVENTS_EP0SETUP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ISOSPLIT>[src]

Register ISOSPLIT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RATIO>[src]

Register RATIO reset()’s with value 0x06

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SAMPLE>[src]

Register TASKS_SAMPLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVTENSET>[src]

Register EVTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SYSTEMOFF>[src]

Register SYSTEMOFF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INPTR>[src]

Register INPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _STATUS>[src]

Register STATUS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _START>[src]

Register START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SUSPEND>[src]

Register TASKS_SUSPEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RSSIEND>[src]

Register EVENTS_RSSIEND reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDISOOUT>[src]

Register EVENTS_ENDISOOUT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_LASTRX>[src]

Register EVENTS_LASTRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIMITL>[src]

Register LIMITL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PTR>[src]

Register PTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FREQUENCY>[src]

Register FREQUENCY reset()’s with value 0x0400_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CHENCLR>[src]

Register CHENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RDCLRDBL>[src]

Register TASKS_RDCLRDBL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SAMPLE>[src]

Register TASKS_SAMPLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DPDMVALUE>[src]

Register DPDMVALUE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DAB>[src]

Register DAB[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXREADY>[src]

Register EVENTS_TXREADY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_LOWPWR>[src]

Register TASKS_LOWPWR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CCACTRL>[src]

Register CCACTRL reset()’s with value 0x052d_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODE>[src]

Register MODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXPOWER>[src]

Register TXPOWER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ORC>[src]

Register ORC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TXD>[src]

Register TXD reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DFECTRL1>[src]

Register DFECTRL1 reset()’s with value 0x0002_3282

type Type = u32

Register size

impl ResetValue for Reg<u32, _ADDR>[src]

Register ADDR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DBFEN>[src]

Register DBFEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MHRMATCHCONF>[src]

Register MHRMATCHCONF reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CALIBRATEOFFSET>[src]

Register TASKS_CALIBRATEOFFSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STARTTX>[src]

Register TASKS_STARTTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_READCLRACC>[src]

Register TASKS_READCLRACC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DECODER>[src]

Register DECODER reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _A5>[src]

Register A5 reset()’s with value 0x05a3

type Type = u32

Register size

impl ResetValue for Reg<u32, _GPREGRET>[src]

Register GPREGRET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODE>[src]

Register MODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SIZE>[src]

Register SIZE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NFCPINS>[src]

Register NFCPINS reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_EDSTART>[src]

Register TASKS_EDSTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _DIRSET>[src]

Register DIRSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LIST>[src]

Register LIST reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENCLR>[src]

Register INTENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_LFCLKSTOP>[src]

Register TASKS_LFCLKSTOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _NMIENCLR>[src]

Register NMIENCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ALIGN>[src]

Register ALIGN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EPDATASTATUS>[src]

Register EPDATASTATUS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LEDPRE>[src]

Register LEDPRE reset()’s with value 0x10

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_OUT>[src]

Register TASKS_OUT[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CONFIG>[src]

Register CONFIG reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SLEEPEXIT>[src]

Register EVENTS_SLEEPEXIT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LED>[src]

Register LED reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _RXD>[src]

Register RXD reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_COUNT>[src]

Register TASKS_COUNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_USBREMOVED>[src]

Register EVENTS_USBREMOVED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EXTREFSEL>[src]

Register EXTREFSEL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_SAMPLE>[src]

Register TASKS_SAMPLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCK>[src]

Register SCK reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _ERASEPAGEPARTIAL>[src]

Register ERASEPAGEPARTIAL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_STOPPED>[src]

Register EVENTS_STOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CSN>[src]

Register CSN reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LEDPOL>[src]

Register LEDPOL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LFCLKSRC>[src]

Register LFCLKSRC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOPTX>[src]

Register TASKS_STOPTX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PSELP>[src]

Register PSELP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CCASTART>[src]

Register TASKS_CCASTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CTSTOPPED>[src]

Register EVENTS_CTSTOPPED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RTS>[src]

Register RTS reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDRX>[src]

Register EVENTS_ENDRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SDOUT>[src]

Register SDOUT reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXDSENT>[src]

Register EVENTS_TXDSENT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SCRATCHPTR>[src]

Register SCRATCHPTR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_USBPWRRDY>[src]

Register EVENTS_USBPWRRDY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_CTS>[src]

Register EVENTS_CTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MOSI>[src]

Register MOSI reset()’s with value 0xffff_ffff

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RESOLVED>[src]

Register EVENTS_RESOLVED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PRESCALER>[src]

Register PRESCALER reset()’s with value 0x04

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENABLE>[src]

Register ENABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDCRYPT>[src]

Register EVENTS_ENDCRYPT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _OUTCLR>[src]

Register OUTCLR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FORMAT>[src]

Register FORMAT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_TXSTARTED>[src]

Register EVENTS_TXSTARTED reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ADDRESS>[src]

Register ADDRESS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_COLLISION>[src]

Register EVENTS_COLLISION reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CHG>[src]

Register CHG[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_SEQEND>[src]

Register EVENTS_SEQEND[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MAXCNT>[src]

Register MAXCNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERROR>[src]

Register EVENTS_ERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _RATIO>[src]

Register RATIO reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_EP0RCVOUT>[src]

Register TASKS_EP0RCVOUT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _AMOUNT>[src]

Register AMOUNT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CSNPOL>[src]

Register CSNPOL reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_FLUSHRX>[src]

Register TASKS_FLUSHRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _LOOP>[src]

Register LOOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EPOUT>[src]

Register EPOUT[%s] reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _GAINL>[src]

Register GAINL reset()’s with value 0x28

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_START>[src]

Register TASKS_START reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_RXFRAMESTART>[src]

Register EVENTS_RXFRAMESTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_RSSISTOP>[src]

Register TASKS_RSSISTOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CTEINLINECONF>[src]

Register CTEINLINECONF reset()’s with value 0x2800

type Type = u32

Register size

impl ResetValue for Reg<u32, _BITMODE>[src]

Register BITMODE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _SHORTS>[src]

Register SHORTS reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CHENSET>[src]

Register CHENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOPRX>[src]

Register TASKS_STOPRX reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CCASTOP>[src]

Register TASKS_CCASTOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CHEN>[src]

Register CHEN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FRAMEDELAYMAX>[src]

Register FRAMEDELAYMAX reset()’s with value 0x1000

type Type = u32

Register size

impl ResetValue for Reg<u32, _RREN>[src]

Register RREN reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _OVERSAMPLE>[src]

Register OVERSAMPLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ORC>[src]

Register ORC reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_STOP>[src]

Register TASKS_STOP reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_DISABLE>[src]

Register TASKS_DISABLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _ENDDELAY>[src]

Register ENDDELAY reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _FREQUENCY>[src]

Register FREQUENCY reset()’s with value 0x0400_0000

type Type = u32

Register size

impl ResetValue for Reg<u32, _STALLSTAT>[src]

Register STALLSTAT reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_DOWN>[src]

Register EVENTS_DOWN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_GOIDLE>[src]

Register TASKS_GOIDLE reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _PERM>[src]

Register PERM reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _MODE>[src]

Register MODE reset()’s with value 0x01

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_LFCLKSTART>[src]

Register TASKS_LFCLKSTART reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _INTENSET>[src]

Register INTENSET reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _TASKS_CLEAR>[src]

Register TASKS_CLEAR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _CLEARPATTERN>[src]

Register CLEARPATTERN reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ERROR>[src]

Register EVENTS_ERROR reset()’s with value 0

type Type = u32

Register size

impl ResetValue for Reg<u32, _EVENTS_ENDEPOUT>[src]

Register EVENTS_ENDEPOUT[%s] reset()’s with value 0

type Type = u32

Register size

impl<U, REG> Send for Reg<U, REG> where
    U: Send
[src]

impl Writable for Reg<u32, _WA>[src]

write(|w| ..) method takes wa::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _EVENTS_SUSPENDED>[src]

write(|w| ..) method takes events_suspended::W writer structure

impl Writable for Reg<u32, _EVENTS_CCASTOPPED>[src]

write(|w| ..) method takes events_ccastopped::W writer structure

impl Writable for Reg<u32, _TXPOWER>[src]

write(|w| ..) method takes txpower::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _TASKS_CTSTART>[src]

write(|w| ..) method takes tasks_ctstart::W writer structure

impl Writable for Reg<u32, _REGIONENSET>[src]

write(|w| ..) method takes regionenset::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _TEP>[src]

write(|w| ..) method takes tep::W writer structure

impl Writable for Reg<u32, _NRFHW>[src]

write(|w| ..) method takes nrfhw::W writer structure

impl Writable for Reg<u32, _EVENTS_END>[src]

write(|w| ..) method takes events_end::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _TH>[src]

write(|w| ..) method takes th::W writer structure

impl Writable for Reg<u32, _FRAMEDELAYMODE>[src]

write(|w| ..) method takes framedelaymode::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _MAXPACKETSIZE>[src]

write(|w| ..) method takes maxpacketsize::W writer structure

impl Writable for Reg<u32, _INPTR>[src]

write(|w| ..) method takes inptr::W writer structure

impl Writable for Reg<u32, _EVENTS_STARTED>[src]

write(|w| ..) method takes events_started::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _TASKS_RELEASE>[src]

write(|w| ..) method takes tasks_release::W writer structure

impl Writable for Reg<u32, _STATUS>[src]

write(|w| ..) method takes status::W writer structure

impl Writable for Reg<u32, _DIRSET>[src]

write(|w| ..) method takes dirset::W writer structure

impl Writable for Reg<u32, _POFCON>[src]

write(|w| ..) method takes pofcon::W writer structure

impl Writable for Reg<u32, _WA>[src]

write(|w| ..) method takes wa::W writer structure

impl Writable for Reg<u32, _CLEARPATTERN>[src]

write(|w| ..) method takes clearpattern::W writer structure

impl Writable for Reg<u32, _RREN>[src]

write(|w| ..) method takes rren::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _CRCINIT>[src]

write(|w| ..) method takes crcinit::W writer structure

impl Writable for Reg<u32, _EVENTS_SLEEPEXIT>[src]

write(|w| ..) method takes events_sleepexit::W writer structure

impl Writable for Reg<u32, _LFCLKSRC>[src]

write(|w| ..) method takes lfclksrc::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _EXTREFSEL>[src]

write(|w| ..) method takes extrefsel::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _ERASEPCR0>[src]

write(|w| ..) method takes erasepcr0::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_TICK>[src]

write(|w| ..) method takes events_tick::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_RXTO>[src]

write(|w| ..) method takes events_rxto::W writer structure

impl Writable for Reg<u32, _OUTPTR>[src]

write(|w| ..) method takes outptr::W writer structure

impl Writable for Reg<u32, _LRCK>[src]

write(|w| ..) method takes lrck::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_NOTRESOLVED>[src]

write(|w| ..) method takes events_notresolved::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _TASKS_CRYPT>[src]

write(|w| ..) method takes tasks_crypt::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _TASKS_CCASTOP>[src]

write(|w| ..) method takes tasks_ccastop::W writer structure

impl Writable for Reg<u32, _TASKS_EDSTOP>[src]

write(|w| ..) method takes tasks_edstop::W writer structure

impl Writable for Reg<u32, _RTS>[src]

write(|w| ..) method takes rts::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _SCK>[src]

write(|w| ..) method takes sck::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _MODE>[src]

write(|w| ..) method takes mode::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _ORC>[src]

write(|w| ..) method takes orc::W writer structure

impl Writable for Reg<u32, _TASKS_ACTIVATE>[src]

write(|w| ..) method takes tasks_activate::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _IRKPTR>[src]

write(|w| ..) method takes irkptr::W writer structure

impl Writable for Reg<u32, _EVENTS_CRCOK>[src]

write(|w| ..) method takes events_crcok::W writer structure

impl Writable for Reg<u32, _EXTREFSEL>[src]

write(|w| ..) method takes extrefsel::W writer structure

impl Writable for Reg<u32, _EVENTS_RXDRDY>[src]

write(|w| ..) method takes events_rxdrdy::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _EVENTS_RXTO>[src]

write(|w| ..) method takes events_rxto::W writer structure

impl Writable for Reg<u32, _TASKS_LFCLKSTOP>[src]

write(|w| ..) method takes tasks_lfclkstop::W writer structure

impl Writable for Reg<u32, _EVENTS_READY>[src]

write(|w| ..) method takes events_ready::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_CRCERROR>[src]

write(|w| ..) method takes events_crcerror::W writer structure

impl Writable for Reg<u32, _MCK>[src]

write(|w| ..) method takes mck::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDTX>[src]

write(|w| ..) method takes events_endtx::W writer structure

impl Writable for Reg<u32, _TASKS_STARTRX>[src]

write(|w| ..) method takes tasks_startrx::W writer structure

impl Writable for Reg<u32, _A0>[src]

write(|w| ..) method takes a0::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _T2>[src]

write(|w| ..) method takes t2::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _TASKS_EP0RCVOUT>[src]

write(|w| ..) method takes tasks_ep0rcvout::W writer structure

impl Writable for Reg<u32, _EVENTS_ERROR>[src]

write(|w| ..) method takes events_error::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _EVENTS_TRIGGERED>[src]

write(|w| ..) method takes events_triggered::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _RXD>[src]

write(|w| ..) method takes rxd::W writer structure

impl Writable for Reg<u32, _EVENTS_USBEVENT>[src]

write(|w| ..) method takes events_usbevent::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _EPSTALL>[src]

write(|w| ..) method takes epstall::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _RATIO>[src]

write(|w| ..) method takes ratio::W writer structure

impl Writable for Reg<u32, _DBFEN>[src]

write(|w| ..) method takes dbfen::W writer structure

impl Writable for Reg<u32, _TASKS_RESUME>[src]

write(|w| ..) method takes tasks_resume::W writer structure

impl Writable for Reg<u32, _TASKS_BCSTOP>[src]

write(|w| ..) method takes tasks_bcstop::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _NMIEN>[src]

write(|w| ..) method takes nmien::W writer structure

impl Writable for Reg<u32, _CNT>[src]

write(|w| ..) method takes cnt::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _EVENTS_RXSTARTED>[src]

write(|w| ..) method takes events_rxstarted::W writer structure

impl Writable for Reg<u32, _TASKS_SAMPLE>[src]

write(|w| ..) method takes tasks_sample::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _SCRATCHPTR>[src]

write(|w| ..) method takes scratchptr::W writer structure

impl Writable for Reg<u32, _PSELP>[src]

write(|w| ..) method takes pselp::W writer structure

impl Writable for Reg<u32, _ALIGN>[src]

write(|w| ..) method takes align::W writer structure

impl Writable for Reg<u32, _BASE1>[src]

write(|w| ..) method takes base1::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _A1>[src]

write(|w| ..) method takes a1::W writer structure

impl Writable for Reg<u32, _LIMIT>[src]

write(|w| ..) method takes limit::W writer structure

impl Writable for Reg<u32, _EVENTS_TXFRAMESTART>[src]

write(|w| ..) method takes events_txframestart::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_END>[src]

write(|w| ..) method takes events_end::W writer structure

impl Writable for Reg<u32, _TASKS_DPDMNODRIVE>[src]

write(|w| ..) method takes tasks_dpdmnodrive::W writer structure

impl Writable for Reg<u32, _FREQUENCY>[src]

write(|w| ..) method takes frequency::W writer structure

impl Writable for Reg<u32, _EN>[src]

write(|w| ..) method takes en::W writer structure

impl Writable for Reg<u32, _EPOUT>[src]

write(|w| ..) method takes epout::W writer structure

impl Writable for Reg<u32, _EVENTS_AUTOCOLRESSTARTED>[src]

write(|w| ..) method takes events_autocolresstarted::W writer structure

impl Writable for Reg<u32, _EVENTS_CCABUSY>[src]

write(|w| ..) method takes events_ccabusy::W writer structure

impl Writable for Reg<u32, _RR>[src]

write(|w| ..) method takes rr::W writer structure

impl Writable for Reg<u32, _CSN>[src]

write(|w| ..) method takes csn::W writer structure

impl Writable for Reg<u32, _EVENTS_RXSTARTED>[src]

write(|w| ..) method takes events_rxstarted::W writer structure

impl Writable for Reg<u32, _TASKS_STOPTX>[src]

write(|w| ..) method takes tasks_stoptx::W writer structure

impl Writable for Reg<u32, _MODE>[src]

write(|w| ..) method takes mode::W writer structure

impl Writable for Reg<u32, _MODE>[src]

write(|w| ..) method takes mode::W writer structure

impl Writable for Reg<u32, _REGIONEN>[src]

write(|w| ..) method takes regionen::W writer structure

impl Writable for Reg<u32, _SDA>[src]

write(|w| ..) method takes sda::W writer structure

impl Writable for Reg<u32, _B5>[src]

write(|w| ..) method takes b5::W writer structure

impl Writable for Reg<u32, _EVENTS_ACCOF>[src]

write(|w| ..) method takes events_accof::W writer structure

impl Writable for Reg<u32, _HYST>[src]

write(|w| ..) method takes hyst::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _EVENTS_SEQSTARTED>[src]

write(|w| ..) method takes events_seqstarted::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _POWER>[src]

write(|w| ..) method takes power::W writer structure

impl Writable for Reg<u32, _CSNDUR>[src]

write(|w| ..) method takes csndur::W writer structure

impl Writable for Reg<u32, _SCL>[src]

write(|w| ..) method takes scl::W writer structure

impl Writable for Reg<u32, _EVENTS_RXDREADY>[src]

write(|w| ..) method takes events_rxdready::W writer structure

impl Writable for Reg<u32, _TASKS_RESUME>[src]

write(|w| ..) method takes tasks_resume::W writer structure

impl Writable for Reg<u32, _EVENTS_RSSIEND>[src]

write(|w| ..) method takes events_rssiend::W writer structure

impl Writable for Reg<u32, _EVENTS_ERRORECB>[src]

write(|w| ..) method takes events_errorecb::W writer structure

impl Writable for Reg<u32, _EPSTATUS>[src]

write(|w| ..) method takes epstatus::W writer structure

impl Writable for Reg<u32, _EVENTS_ERROR>[src]

write(|w| ..) method takes events_error::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDISOIN>[src]

write(|w| ..) method takes events_endisoin::W writer structure

impl Writable for Reg<u32, _EVENTS_CTS>[src]

write(|w| ..) method takes events_cts::W writer structure

impl Writable for Reg<u32, _SAMPLEPER>[src]

write(|w| ..) method takes sampleper::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _TASKS_STOPECB>[src]

write(|w| ..) method takes tasks_stopecb::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _TXADDRESS>[src]

write(|w| ..) method takes txaddress::W writer structure

impl Writable for Reg<u32, _EVENTS_PORT>[src]

write(|w| ..) method takes events_port::W writer structure

impl Writable for Reg<u32, _PERM>[src]

write(|w| ..) method takes perm::W writer structure

impl Writable for Reg<u32, _ERASEPAGE>[src]

write(|w| ..) method takes erasepage::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _CHG>[src]

write(|w| ..) method takes chg::W writer structure

impl Writable for Reg<u32, _EVENTS_BB>[src]

write(|w| ..) method takes events_bb::W writer structure

impl Writable for Reg<u32, _SWITCHPATTERN>[src]

write(|w| ..) method takes switchpattern::W writer structure

impl Writable for Reg<u32, _GPREGRET>[src]

write(|w| ..) method takes gpregret::W writer structure

impl Writable for Reg<u32, _EVENTS_SAMPLERDY>[src]

write(|w| ..) method takes events_samplerdy::W writer structure

impl Writable for Reg<u32, _B>[src]

write(|w| ..) method takes b::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _TASKS_SEQSTART>[src]

write(|w| ..) method takes tasks_seqstart::W writer structure

impl Writable for Reg<u32, _EVENTS_READY>[src]

write(|w| ..) method takes events_ready::W writer structure

impl Writable for Reg<u32, _A3>[src]

write(|w| ..) method takes a3::W writer structure

impl Writable for Reg<u32, _POWERSET>[src]

write(|w| ..) method takes powerset::W writer structure

impl Writable for Reg<u32, _T0>[src]

write(|w| ..) method takes t0::W writer structure

impl Writable for Reg<u32, _EVENTS_READY>[src]

write(|w| ..) method takes events_ready::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _NFCID1_3RD_LAST>[src]

write(|w| ..) method takes nfcid1_3rd_last::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _SCL>[src]

write(|w| ..) method takes scl::W writer structure

impl Writable for Reg<u32, _ENDDELAY>[src]

write(|w| ..) method takes enddelay::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDKSGEN>[src]

write(|w| ..) method takes events_endksgen::W writer structure

impl Writable for Reg<u32, _DEBUGCTRL>[src]

write(|w| ..) method takes debugctrl::W writer structure

impl Writable for Reg<u32, _EPOUTEN>[src]

write(|w| ..) method takes epouten::W writer structure

impl Writable for Reg<u32, _RESOLUTION>[src]

write(|w| ..) method takes resolution::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _TRACECONFIG>[src]

write(|w| ..) method takes traceconfig::W writer structure

impl Writable for Reg<u32, _ERRORSRC>[src]

write(|w| ..) method takes errorsrc::W writer structure

impl Writable for Reg<u32, _CHANNELS>[src]

write(|w| ..) method takes channels::W writer structure

impl Writable for Reg<u32, _MISO>[src]

write(|w| ..) method takes miso::W writer structure

impl Writable for Reg<u32, _ICACHECNF>[src]

write(|w| ..) method takes icachecnf::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _B0>[src]

write(|w| ..) method takes b0::W writer structure

impl Writable for Reg<u32, _TASKS_ENABLERXDATA>[src]

write(|w| ..) method takes tasks_enablerxdata::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _FREQUENCY>[src]

write(|w| ..) method takes frequency::W writer structure

impl Writable for Reg<u32, _BITMODE>[src]

write(|w| ..) method takes bitmode::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _DCXCNT>[src]

write(|w| ..) method takes dcxcnt::W writer structure

impl Writable for Reg<u32, _EVENTS_RXFRAMEEND>[src]

write(|w| ..) method takes events_rxframeend::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _DETECTMODE>[src]

write(|w| ..) method takes detectmode::W writer structure

impl Writable for Reg<u32, _GPREGRET2>[src]

write(|w| ..) method takes gpregret2::W writer structure

impl Writable for Reg<u32, _POWER>[src]

write(|w| ..) method takes power::W writer structure

impl Writable for Reg<u32, _FRAMEDELAYMAX>[src]

write(|w| ..) method takes framedelaymax::W writer structure

impl Writable for Reg<u32, _EVENTS_CROSS>[src]

write(|w| ..) method takes events_cross::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _PSELDCX>[src]

write(|w| ..) method takes pseldcx::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _TASKS_STARTTX>[src]

write(|w| ..) method takes tasks_starttx::W writer structure

impl Writable for Reg<u32, _EVENTS_TXDSENT>[src]

write(|w| ..) method takes events_txdsent::W writer structure

impl Writable for Reg<u32, _ORC>[src]

write(|w| ..) method takes orc::W writer structure

impl Writable for Reg<u32, _EVENTS_BCMATCH>[src]

write(|w| ..) method takes events_bcmatch::W writer structure

impl Writable for Reg<u32, _EVENTS_END>[src]

write(|w| ..) method takes events_end::W writer structure

impl Writable for Reg<u32, _TASKS_SHUTDOWN>[src]

write(|w| ..) method takes tasks_shutdown::W writer structure

impl Writable for Reg<u32, _SYSTEMOFF>[src]

write(|w| ..) method takes systemoff::W writer structure

impl Writable for Reg<u32, _EVENTS_DONE>[src]

write(|w| ..) method takes events_done::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _EVENTS_READY>[src]

write(|w| ..) method takes events_ready::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _EVENTS_MHRMATCH>[src]

write(|w| ..) method takes events_mhrmatch::W writer structure

impl Writable for Reg<u32, _EVENTS_RXDRDY>[src]

write(|w| ..) method takes events_rxdrdy::W writer structure

impl Writable for Reg<u32, _MODE>[src]

write(|w| ..) method takes mode::W writer structure

impl Writable for Reg<u32, _PDMCLKCTRL>[src]

write(|w| ..) method takes pdmclkctrl::W writer structure

impl Writable for Reg<u32, _SUBSTATRA>[src]

write(|w| ..) method takes substatra::W writer structure

impl Writable for Reg<u32, _SDOUT>[src]

write(|w| ..) method takes sdout::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _TASKS_RESUME>[src]

write(|w| ..) method takes tasks_resume::W writer structure

impl Writable for Reg<u32, _EVENTS_EP0DATADONE>[src]

write(|w| ..) method takes events_ep0datadone::W writer structure

impl Writable for Reg<u32, _ERASEUICR>[src]

write(|w| ..) method takes eraseuicr::W writer structure

impl Writable for Reg<u32, _TASKS_CAPTURE>[src]

write(|w| ..) method takes tasks_capture::W writer structure

impl Writable for Reg<u32, _FREQUENCY>[src]

write(|w| ..) method takes frequency::W writer structure

impl Writable for Reg<u32, _EVENTS_STARTED>[src]

write(|w| ..) method takes events_started::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _ERASEPAGEPARTIALCFG>[src]

write(|w| ..) method takes erasepagepartialcfg::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _MCKEN>[src]

write(|w| ..) method takes mcken::W writer structure

impl Writable for Reg<u32, _EVENTCAUSE>[src]

write(|w| ..) method takes eventcause::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _RXD>[src]

write(|w| ..) method takes rxd::W writer structure

impl Writable for Reg<u32, _FREQUENCY>[src]

write(|w| ..) method takes frequency::W writer structure

impl Writable for Reg<u32, _SWIDTH>[src]

write(|w| ..) method takes swidth::W writer structure

impl Writable for Reg<u32, _B4>[src]

write(|w| ..) method takes b4::W writer structure

impl Writable for Reg<u32, _TASKS_LOWPWR>[src]

write(|w| ..) method takes tasks_lowpwr::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _EVENTS_OVRFLW>[src]

write(|w| ..) method takes events_ovrflw::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _ANADETECT>[src]

write(|w| ..) method takes anadetect::W writer structure

impl Writable for Reg<u32, _EVENTS_DATARDY>[src]

write(|w| ..) method takes events_datardy::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_TXSTARTED>[src]

write(|w| ..) method takes events_txstarted::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDEPOUT>[src]

write(|w| ..) method takes events_endepout::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDRX>[src]

write(|w| ..) method takes events_endrx::W writer structure

impl Writable for Reg<u32, _TASKS_STOPTX>[src]

write(|w| ..) method takes tasks_stoptx::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _EVENTS_LFCLKSTARTED>[src]

write(|w| ..) method takes events_lfclkstarted::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _EVENTS_END>[src]

write(|w| ..) method takes events_end::W writer structure

impl Writable for Reg<u32, _EVENTS_IN>[src]

write(|w| ..) method takes events_in::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _SDA>[src]

write(|w| ..) method takes sda::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _MISO>[src]

write(|w| ..) method takes miso::W writer structure

impl Writable for Reg<u32, _EVENTS_RESULTDONE>[src]

write(|w| ..) method takes events_resultdone::W writer structure

impl Writable for Reg<u32, _ADDRPTR>[src]

write(|w| ..) method takes addrptr::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _EVENTS_STARTED>[src]

write(|w| ..) method takes events_started::W writer structure

impl Writable for Reg<u32, _EVENTS_COMPARE>[src]

write(|w| ..) method takes events_compare::W writer structure

impl Writable for Reg<u32, _EVENTS_PWMPERIODEND>[src]

write(|w| ..) method takes events_pwmperiodend::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _DAP>[src]

write(|w| ..) method takes dap::W writer structure

impl Writable for Reg<u32, _TASKS_RATEOVERRIDE>[src]

write(|w| ..) method takes tasks_rateoverride::W writer structure

impl Writable for Reg<u32, _CHEN>[src]

write(|w| ..) method takes chen::W writer structure

impl Writable for Reg<u32, _TASKS_STARTTX>[src]

write(|w| ..) method takes tasks_starttx::W writer structure

impl Writable for Reg<u32, _EVTENCLR>[src]

write(|w| ..) method takes evtenclr::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _ERRORSRC>[src]

write(|w| ..) method takes errorsrc::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _RXEN>[src]

write(|w| ..) method takes rxen::W writer structure

impl Writable for Reg<u32, _TASKS_PREPARERX>[src]

write(|w| ..) method takes tasks_preparerx::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _TASKS_DISABLE>[src]

write(|w| ..) method takes tasks_disable::W writer structure

impl Writable for Reg<u32, _LIMITL>[src]

write(|w| ..) method takes limitl::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _PRESCALER>[src]

write(|w| ..) method takes prescaler::W writer structure

impl Writable for Reg<u32, _EVENTS_TXDRDY>[src]

write(|w| ..) method takes events_txdrdy::W writer structure

impl Writable for Reg<u32, _SCK>[src]

write(|w| ..) method takes sck::W writer structure

impl Writable for Reg<u32, _POWERCLR>[src]

write(|w| ..) method takes powerclr::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _APPROTECT>[src]

write(|w| ..) method takes approtect::W writer structure

impl Writable for Reg<u32, _MODE>[src]

write(|w| ..) method takes mode::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _TASKS_BCSTART>[src]

write(|w| ..) method takes tasks_bcstart::W writer structure

impl Writable for Reg<u32, _EVENTS_UP>[src]

write(|w| ..) method takes events_up::W writer structure

impl Writable for Reg<u32, _CC>[src]

write(|w| ..) method takes cc::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _DFECTRL1>[src]

write(|w| ..) method takes dfectrl1::W writer structure

impl Writable for Reg<u32, _T4>[src]

write(|w| ..) method takes t4::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDRX>[src]

write(|w| ..) method takes events_endrx::W writer structure

impl Writable for Reg<u32, _ORC>[src]

write(|w| ..) method takes orc::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _TASKS_STOPRX>[src]

write(|w| ..) method takes tasks_stoprx::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _ERRORSRC>[src]

write(|w| ..) method takes errorsrc::W writer structure

impl Writable for Reg<u32, _EVENTS_DONE>[src]

write(|w| ..) method takes events_done::W writer structure

impl Writable for Reg<u32, _PCNF0>[src]

write(|w| ..) method takes pcnf0::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _EVENTS_FIELDDETECTED>[src]

write(|w| ..) method takes events_fielddetected::W writer structure

impl Writable for Reg<u32, _EVENTS_CTTO>[src]

write(|w| ..) method takes events_ctto::W writer structure

impl Writable for Reg<u32, _CNFPTR>[src]

write(|w| ..) method takes cnfptr::W writer structure

impl Writable for Reg<u32, _TASKS_SENSE>[src]

write(|w| ..) method takes tasks_sense::W writer structure

impl Writable for Reg<u32, _SELRES>[src]

write(|w| ..) method takes selres::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_CONSTLAT>[src]

write(|w| ..) method takes tasks_constlat::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _SUBSTATWA>[src]

write(|w| ..) method takes substatwa::W writer structure

impl Writable for Reg<u32, _FRAMEDELAYMIN>[src]

write(|w| ..) method takes framedelaymin::W writer structure

impl Writable for Reg<u32, _EVENTS_FRAMESTART>[src]

write(|w| ..) method takes events_framestart::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_TXSTARTED>[src]

write(|w| ..) method takes events_txstarted::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _EVENTS_TXFRAMEEND>[src]

write(|w| ..) method takes events_txframeend::W writer structure

impl Writable for Reg<u32, _EVENTS_RATEBOOST>[src]

write(|w| ..) method takes events_rateboost::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _TASKS_RDCLRACC>[src]

write(|w| ..) method takes tasks_rdclracc::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_GOIDLE>[src]

write(|w| ..) method takes tasks_goidle::W writer structure

impl Writable for Reg<u32, _DIN>[src]

write(|w| ..) method takes din::W writer structure

impl Writable for Reg<u32, _TASKS_SAMPLE>[src]

write(|w| ..) method takes tasks_sample::W writer structure

impl Writable for Reg<u32, _BAUDRATE>[src]

write(|w| ..) method takes baudrate::W writer structure

impl Writable for Reg<u32, _IHIT>[src]

write(|w| ..) method takes ihit::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _EVENTS_ERROR>[src]

write(|w| ..) method takes events_error::W writer structure

impl Writable for Reg<u32, _SDIN>[src]

write(|w| ..) method takes sdin::W writer structure

impl Writable for Reg<u32, _NIRK>[src]

write(|w| ..) method takes nirk::W writer structure

impl Writable for Reg<u32, _EVENTS_RXSTARTED>[src]

write(|w| ..) method takes events_rxstarted::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _EVENTS_REPORTRDY>[src]

write(|w| ..) method takes events_reportrdy::W writer structure

impl Writable for Reg<u32, _EVENTS_DOWN>[src]

write(|w| ..) method takes events_down::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDECB>[src]

write(|w| ..) method takes events_endecb::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDEPIN>[src]

write(|w| ..) method takes events_endepin::W writer structure

impl Writable for Reg<u32, _HYST>[src]

write(|w| ..) method takes hyst::W writer structure

impl Writable for Reg<u32, _LIMITH>[src]

write(|w| ..) method takes limith::W writer structure

impl Writable for Reg<u32, _TASKS_STARTTX>[src]

write(|w| ..) method takes tasks_starttx::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _MODE>[src]

write(|w| ..) method takes mode::W writer structure

impl Writable for Reg<u32, _CUSTOMER>[src]

write(|w| ..) method takes customer::W writer structure

impl Writable for Reg<u32, _REPORTPER>[src]

write(|w| ..) method takes reportper::W writer structure

impl Writable for Reg<u32, _LOOP>[src]

write(|w| ..) method takes loop_::W writer structure

impl Writable for Reg<u32, _B2>[src]

write(|w| ..) method takes b2::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _DTOGGLE>[src]

write(|w| ..) method takes dtoggle::W writer structure

impl Writable for Reg<u32, _OUTSET>[src]

write(|w| ..) method takes outset::W writer structure

impl Writable for Reg<u32, _TEP>[src]

write(|w| ..) method takes tep::W writer structure

impl Writable for Reg<u32, _REFRESH>[src]

write(|w| ..) method takes refresh::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _ADDRESS>[src]

write(|w| ..) method takes address::W writer structure

impl Writable for Reg<u32, _END>[src]

write(|w| ..) method takes end::W writer structure

impl Writable for Reg<u32, _REGIONENCLR>[src]

write(|w| ..) method takes regionenclr::W writer structure

impl Writable for Reg<u32, _DCDCEN>[src]

write(|w| ..) method takes dcdcen::W writer structure

impl Writable for Reg<u32, _TASKS_CCASTART>[src]

write(|w| ..) method takes tasks_ccastart::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _CLK>[src]

write(|w| ..) method takes clk::W writer structure

impl Writable for Reg<u32, _RXADDRESSES>[src]

write(|w| ..) method takes rxaddresses::W writer structure

impl Writable for Reg<u32, _TASKS_SET>[src]

write(|w| ..) method takes tasks_set::W writer structure

impl Writable for Reg<u32, _PIN_CNF>[src]

write(|w| ..) method takes pin_cnf::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _TASKS_STARTRX>[src]

write(|w| ..) method takes tasks_startrx::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDRX>[src]

write(|w| ..) method takes events_endrx::W writer structure

impl Writable for Reg<u32, _COUNTERTOP>[src]

write(|w| ..) method takes countertop::W writer structure

impl Writable for Reg<u32, _OUTCLR>[src]

write(|w| ..) method takes outclr::W writer structure

impl Writable for Reg<u32, _PSELN>[src]

write(|w| ..) method takes pseln::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _TASKS_SUSPEND>[src]

write(|w| ..) method takes tasks_suspend::W writer structure

impl Writable for Reg<u32, _TASKS_TXEN>[src]

write(|w| ..) method takes tasks_txen::W writer structure

impl Writable for Reg<u32, _EVENTS_STARTED>[src]

write(|w| ..) method takes events_started::W writer structure

impl Writable for Reg<u32, _NFCPINS>[src]

write(|w| ..) method takes nfcpins::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_SEQEND>[src]

write(|w| ..) method takes events_seqend::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_ACQUIRE>[src]

write(|w| ..) method takes tasks_acquire::W writer structure

impl Writable for Reg<u32, _TASKS_GOSLEEP>[src]

write(|w| ..) method takes tasks_gosleep::W writer structure

impl Writable for Reg<u32, _STALLSTAT>[src]

write(|w| ..) method takes stallstat::W writer structure

impl Writable for Reg<u32, _REFSEL>[src]

write(|w| ..) method takes refsel::W writer structure

impl Writable for Reg<u32, _EPDATASTATUS>[src]

write(|w| ..) method takes epdatastatus::W writer structure

impl Writable for Reg<u32, _SCK>[src]

write(|w| ..) method takes sck::W writer structure

impl Writable for Reg<u32, _ERRORSTATUS>[src]

write(|w| ..) method takes errorstatus::W writer structure

impl Writable for Reg<u32, _SUBS>[src]

write(|w| ..) method takes subs::W writer structure

impl Writable for Reg<u32, _TASKS_SUSPEND>[src]

write(|w| ..) method takes tasks_suspend::W writer structure

impl Writable for Reg<u32, _MODULATIONCTRL>[src]

write(|w| ..) method takes modulationctrl::W writer structure

impl Writable for Reg<u32, _CC>[src]

write(|w| ..) method takes cc::W writer structure

impl Writable for Reg<u32, _ERASEPAGEPARTIAL>[src]

write(|w| ..) method takes erasepagepartial::W writer structure

impl Writable for Reg<u32, _NFCID1_LAST>[src]

write(|w| ..) method takes nfcid1_last::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_RESUME>[src]

write(|w| ..) method takes tasks_resume::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _EVENTS_RXERROR>[src]

write(|w| ..) method takes events_rxerror::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_END>[src]

write(|w| ..) method takes events_end::W writer structure

impl Writable for Reg<u32, _DPDMVALUE>[src]

write(|w| ..) method takes dpdmvalue::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _EPINEN>[src]

write(|w| ..) method takes epinen::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDCRYPT>[src]

write(|w| ..) method takes events_endcrypt::W writer structure

impl Writable for Reg<u32, _EVENTS_USBREMOVED>[src]

write(|w| ..) method takes events_usbremoved::W writer structure

impl Writable for Reg<u32, _TASKS_TRIGGER>[src]

write(|w| ..) method takes tasks_trigger::W writer structure

impl Writable for Reg<u32, _EVENTS_STARTED>[src]

write(|w| ..) method takes events_started::W writer structure

impl Writable for Reg<u32, _START>[src]

write(|w| ..) method takes start::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_CTSTOPPED>[src]

write(|w| ..) method takes events_ctstopped::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _EDCNT>[src]

write(|w| ..) method takes edcnt::W writer structure

impl Writable for Reg<u32, _DACNF>[src]

write(|w| ..) method takes dacnf::W writer structure

impl Writable for Reg<u32, _A>[src]

write(|w| ..) method takes a::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _ERRORSRC>[src]

write(|w| ..) method takes errorsrc::W writer structure

impl Writable for Reg<u32, _EVENTS_ERROR>[src]

write(|w| ..) method takes events_error::W writer structure

impl Writable for Reg<u32, _DEF>[src]

write(|w| ..) method takes def::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _PACKETPTR>[src]

write(|w| ..) method takes packetptr::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _GAINL>[src]

write(|w| ..) method takes gainl::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _TASKS_READCLRACC>[src]

write(|w| ..) method takes tasks_readclracc::W writer structure

impl Writable for Reg<u32, _TXD>[src]

write(|w| ..) method takes txd::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _CHENCLR>[src]

write(|w| ..) method takes chenclr::W writer structure

impl Writable for Reg<u32, _FRAMECONFIG>[src]

write(|w| ..) method takes frameconfig::W writer structure

impl Writable for Reg<u32, _CRV>[src]

write(|w| ..) method takes crv::W writer structure

impl Writable for Reg<u32, _RATEOVERRIDE>[src]

write(|w| ..) method takes rateoverride::W writer structure

impl Writable for Reg<u32, _PSEL>[src]

write(|w| ..) method takes psel::W writer structure

impl Writable for Reg<u32, _TASKS_SUSPEND>[src]

write(|w| ..) method takes tasks_suspend::W writer structure

impl Writable for Reg<u32, _TASKS_SAMPLE>[src]

write(|w| ..) method takes tasks_sample::W writer structure

impl Writable for Reg<u32, _ERASEPCR1>[src]

write(|w| ..) method takes erasepcr1::W writer structure

impl Writable for Reg<u32, _LOWPOWER>[src]

write(|w| ..) method takes lowpower::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_PREPARETX>[src]

write(|w| ..) method takes tasks_preparetx::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _EVENTS_WRITE>[src]

write(|w| ..) method takes events_write::W writer structure

impl Writable for Reg<u32, _SFD>[src]

write(|w| ..) method takes sfd::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _EVENTS_DOWN>[src]

write(|w| ..) method takes events_down::W writer structure

impl Writable for Reg<u32, _RESETREAS>[src]

write(|w| ..) method takes resetreas::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _RATIO>[src]

write(|w| ..) method takes ratio::W writer structure

impl Writable for Reg<u32, _TASKS_OUT>[src]

write(|w| ..) method takes tasks_out::W writer structure

impl Writable for Reg<u32, _LEDPOL>[src]

write(|w| ..) method takes ledpol::W writer structure

impl Writable for Reg<u32, _RX>[src]

write(|w| ..) method takes rx::W writer structure

impl Writable for Reg<u32, _ADDRESS>[src]

write(|w| ..) method takes address::W writer structure

impl Writable for Reg<u32, _CHENSET>[src]

write(|w| ..) method takes chenset::W writer structure

impl Writable for Reg<u32, _SAMPLERATE>[src]

write(|w| ..) method takes samplerate::W writer structure

impl Writable for Reg<u32, _TASKS_SUSPEND>[src]

write(|w| ..) method takes tasks_suspend::W writer structure

impl Writable for Reg<u32, _EVENTS_USBRESET>[src]

write(|w| ..) method takes events_usbreset::W writer structure

impl Writable for Reg<u32, _ERRORSRC>[src]

write(|w| ..) method takes errorsrc::W writer structure

impl Writable for Reg<u32, _TXEN>[src]

write(|w| ..) method takes txen::W writer structure

impl Writable for Reg<u32, _MOSI>[src]

write(|w| ..) method takes mosi::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _TASKS_SUSPEND>[src]

write(|w| ..) method takes tasks_suspend::W writer structure

impl Writable for Reg<u32, _TASKS_HFCLKSTART>[src]

write(|w| ..) method takes tasks_hfclkstart::W writer structure

impl Writable for Reg<u32, _EEP>[src]

write(|w| ..) method takes eep::W writer structure

impl Writable for Reg<u32, _FREQUENCY>[src]

write(|w| ..) method takes frequency::W writer structure

impl Writable for Reg<u32, _T1>[src]

write(|w| ..) method takes t1::W writer structure

impl Writable for Reg<u32, _EVENTS_DBLRDY>[src]

write(|w| ..) method takes events_dblrdy::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _REGOUT0>[src]

write(|w| ..) method takes regout0::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _BCC>[src]

write(|w| ..) method takes bcc::W writer structure

impl Writable for Reg<u32, _EVENTS_EPDATA>[src]

write(|w| ..) method takes events_epdata::W writer structure

impl Writable for Reg<u32, _EVENTS_SUSPENDED>[src]

write(|w| ..) method takes events_suspended::W writer structure

impl Writable for Reg<u32, _TASKS_STARTISOOUT>[src]

write(|w| ..) method takes tasks_startisoout::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _LED>[src]

write(|w| ..) method takes led::W writer structure

impl Writable for Reg<u32, _GAINR>[src]

write(|w| ..) method takes gainr::W writer structure

impl Writable for Reg<u32, _EVENTS_NCTS>[src]

write(|w| ..) method takes events_ncts::W writer structure

impl Writable for Reg<u32, _RA>[src]

write(|w| ..) method takes ra::W writer structure

impl Writable for Reg<u32, _PRESCALER>[src]

write(|w| ..) method takes prescaler::W writer structure

impl Writable for Reg<u32, _EVENTS_DISABLED>[src]

write(|w| ..) method takes events_disabled::W writer structure

impl Writable for Reg<u32, _EVTEN>[src]

write(|w| ..) method takes evten::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _BASE0>[src]

write(|w| ..) method takes base0::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _EVENTS_HFCLKSTARTED>[src]

write(|w| ..) method takes events_hfclkstarted::W writer structure

impl Writable for Reg<u32, _CTS>[src]

write(|w| ..) method takes cts::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _EVENTS_NCTS>[src]

write(|w| ..) method takes events_ncts::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _TASKS_CAL>[src]

write(|w| ..) method takes tasks_cal::W writer structure

impl Writable for Reg<u32, _SDA>[src]

write(|w| ..) method takes sda::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _SCRATCHPTR>[src]

write(|w| ..) method takes scratchptr::W writer structure

impl Writable for Reg<u32, _TASKS_RXEN>[src]

write(|w| ..) method takes tasks_rxen::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _EVENTS_RXREADY>[src]

write(|w| ..) method takes events_rxready::W writer structure

impl Writable for Reg<u32, _SIZE>[src]

write(|w| ..) method takes size::W writer structure

impl Writable for Reg<u32, _TASKS_COUNT>[src]

write(|w| ..) method takes tasks_count::W writer structure

impl Writable for Reg<u32, _SENSRES>[src]

write(|w| ..) method takes sensres::W writer structure

impl Writable for Reg<u32, _EVENTS_CALIBRATEDONE>[src]

write(|w| ..) method takes events_calibratedone::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDTX>[src]

write(|w| ..) method takes events_endtx::W writer structure

impl Writable for Reg<u32, _EVENTS_TXSTOPPED>[src]

write(|w| ..) method takes events_txstopped::W writer structure

impl Writable for Reg<u32, _EVENTS_END>[src]

write(|w| ..) method takes events_end::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _TASKS_DPDMDRIVE>[src]

write(|w| ..) method takes tasks_dpdmdrive::W writer structure

impl Writable for Reg<u32, _EVENTS_RESOLVED>[src]

write(|w| ..) method takes events_resolved::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _ISOINCONFIG>[src]

write(|w| ..) method takes isoinconfig::W writer structure

impl Writable for Reg<u32, _PSEL>[src]

write(|w| ..) method takes psel::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _CCACTRL>[src]

write(|w| ..) method takes ccactrl::W writer structure

impl Writable for Reg<u32, _EVENTS_LASTTX>[src]

write(|w| ..) method takes events_lasttx::W writer structure

impl Writable for Reg<u32, _TASKS_FLUSHRX>[src]

write(|w| ..) method takes tasks_flushrx::W writer structure

impl Writable for Reg<u32, _TXD>[src]

write(|w| ..) method takes txd::W writer structure

impl Writable for Reg<u32, _EVENTS_VALRDY>[src]

write(|w| ..) method takes events_valrdy::W writer structure

impl Writable for Reg<u32, _MHRMATCHCONF>[src]

write(|w| ..) method takes mhrmatchconf::W writer structure

impl Writable for Reg<u32, _DAB>[src]

write(|w| ..) method takes dab::W writer structure

impl Writable for Reg<u32, _TASKS_RDCLRDBL>[src]

write(|w| ..) method takes tasks_rdclrdbl::W writer structure

impl Writable for Reg<u32, _EVENTS_COMPARE>[src]

write(|w| ..) method takes events_compare::W writer structure

impl Writable for Reg<u32, _EVENTS_EDEND>[src]

write(|w| ..) method takes events_edend::W writer structure

impl Writable for Reg<u32, _NFCID1_2ND_LAST>[src]

write(|w| ..) method takes nfcid1_2nd_last::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _MOSI>[src]

write(|w| ..) method takes mosi::W writer structure

impl Writable for Reg<u32, _TASKS_CLEAR>[src]

write(|w| ..) method takes tasks_clear::W writer structure

impl Writable for Reg<u32, _EVENTS_RXPTRUPD>[src]

write(|w| ..) method takes events_rxptrupd::W writer structure

impl Writable for Reg<u32, _EVENTS_TXDRDY>[src]

write(|w| ..) method takes events_txdrdy::W writer structure

impl Writable for Reg<u32, _B1>[src]

write(|w| ..) method takes b1::W writer structure

impl Writable for Reg<u32, _ECBDATAPTR>[src]

write(|w| ..) method takes ecbdataptr::W writer structure

impl Writable for Reg<u32, _EVENTS_TXREADY>[src]

write(|w| ..) method takes events_txready::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDISOOUT>[src]

write(|w| ..) method takes events_endisoout::W writer structure

impl Writable for Reg<u32, _USBPULLUP>[src]

write(|w| ..) method takes usbpullup::W writer structure

impl Writable for Reg<u32, _ERASEALL>[src]

write(|w| ..) method takes eraseall::W writer structure

impl Writable for Reg<u32, _EVENTS_RXFRAMESTART>[src]

write(|w| ..) method takes events_rxframestart::W writer structure

impl Writable for Reg<u32, _A2>[src]

write(|w| ..) method takes a2::W writer structure

impl Writable for Reg<u32, _TASKS_STARTTX>[src]

write(|w| ..) method takes tasks_starttx::W writer structure

impl Writable for Reg<u32, _RXDELAY>[src]

write(|w| ..) method takes rxdelay::W writer structure

impl Writable for Reg<u32, _MODULATIONPSEL>[src]

write(|w| ..) method takes modulationpsel::W writer structure

impl Writable for Reg<u32, _EVENTS_SYNC>[src]

write(|w| ..) method takes events_sync::W writer structure

impl Writable for Reg<u32, _CRCPOLY>[src]

write(|w| ..) method takes crcpoly::W writer structure

impl Writable for Reg<u32, _PCNF1>[src]

write(|w| ..) method takes pcnf1::W writer structure

impl Writable for Reg<u32, _FRAMECONFIG>[src]

write(|w| ..) method takes frameconfig::W writer structure

impl Writable for Reg<u32, _MCKFREQ>[src]

write(|w| ..) method takes mckfreq::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _RTS>[src]

write(|w| ..) method takes rts::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_ERROR>[src]

write(|w| ..) method takes events_error::W writer structure

impl Writable for Reg<u32, _TASKS_HFCLKSTOP>[src]

write(|w| ..) method takes tasks_hfclkstop::W writer structure

impl Writable for Reg<u32, _TASKS_EDSTART>[src]

write(|w| ..) method takes tasks_edstart::W writer structure

impl Writable for Reg<u32, _TASKS_CTSTOP>[src]

write(|w| ..) method takes tasks_ctstop::W writer structure

impl Writable for Reg<u32, _DFEMODE>[src]

write(|w| ..) method takes dfemode::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _PREFIX0>[src]

write(|w| ..) method takes prefix0::W writer structure

impl Writable for Reg<u32, _TASKS_NEXTSTEP>[src]

write(|w| ..) method takes tasks_nextstep::W writer structure

impl Writable for Reg<u32, _TASKS_TRIGOVRFLW>[src]

write(|w| ..) method takes tasks_trigovrflw::W writer structure

impl Writable for Reg<u32, _EVENTS_SOF>[src]

write(|w| ..) method takes events_sof::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _DATAWHITEIV>[src]

write(|w| ..) method takes datawhiteiv::W writer structure

impl Writable for Reg<u32, _NMIENSET>[src]

write(|w| ..) method takes nmienset::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _CTIV>[src]

write(|w| ..) method takes ctiv::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _A4>[src]

write(|w| ..) method takes a4::W writer structure

impl Writable for Reg<u32, _PSELRESET>[src]

write(|w| ..) method takes pselreset::W writer structure

impl Writable for Reg<u32, _EVENTS_ACQUIRED>[src]

write(|w| ..) method takes events_acquired::W writer structure

impl Writable for Reg<u32, _EVENTS_LASTRX>[src]

write(|w| ..) method takes events_lastrx::W writer structure

impl Writable for Reg<u32, _EVENTS_LOOPSDONE>[src]

write(|w| ..) method takes events_loopsdone::W writer structure

impl Writable for Reg<u32, _EVENTS_CTS>[src]

write(|w| ..) method takes events_cts::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_DISABLE>[src]

write(|w| ..) method takes tasks_disable::W writer structure

impl Writable for Reg<u32, _PREFIX1>[src]

write(|w| ..) method takes prefix1::W writer structure

impl Writable for Reg<u32, _TASKS_STARTRX>[src]

write(|w| ..) method takes tasks_startrx::W writer structure

impl Writable for Reg<u32, _EVENTS_CTSTARTED>[src]

write(|w| ..) method takes events_ctstarted::W writer structure

impl Writable for Reg<u32, _DFECTRL2>[src]

write(|w| ..) method takes dfectrl2::W writer structure

impl Writable for Reg<u32, _MHRMATCHMAS>[src]

write(|w| ..) method takes mhrmatchmas::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDRX>[src]

write(|w| ..) method takes events_endrx::W writer structure

impl Writable for Reg<u32, _ISOSPLIT>[src]

write(|w| ..) method takes isosplit::W writer structure

impl Writable for Reg<u32, _SCK>[src]

write(|w| ..) method takes sck::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _EVENTS_PAYLOAD>[src]

write(|w| ..) method takes events_payload::W writer structure

impl Writable for Reg<u32, _TASKS_RSSISTART>[src]

write(|w| ..) method takes tasks_rssistart::W writer structure

impl Writable for Reg<u32, _TASKS_START>[src]

write(|w| ..) method takes tasks_start::W writer structure

impl Writable for Reg<u32, _EVENTS_EDSTOPPED>[src]

write(|w| ..) method takes events_edstopped::W writer structure

impl Writable for Reg<u32, _CRCCNF>[src]

write(|w| ..) method takes crccnf::W writer structure

impl Writable for Reg<u32, _EVENTS_READY>[src]

write(|w| ..) method takes events_ready::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _DFEGPIO>[src]

write(|w| ..) method takes dfegpio::W writer structure

impl Writable for Reg<u32, _CONFIG>[src]

write(|w| ..) method takes config::W writer structure

impl Writable for Reg<u32, _EVENTS_UP>[src]

write(|w| ..) method takes events_up::W writer structure

impl Writable for Reg<u32, _EVENTS_DEVMISS>[src]

write(|w| ..) method takes events_devmiss::W writer structure

impl Writable for Reg<u32, _MODECNF0>[src]

write(|w| ..) method takes modecnf0::W writer structure

impl Writable for Reg<u32, _INTEN>[src]

write(|w| ..) method takes inten::W writer structure

impl Writable for Reg<u32, _EVENTS_POFWARN>[src]

write(|w| ..) method takes events_pofwarn::W writer structure

impl Writable for Reg<u32, _TASKS_STARTRX>[src]

write(|w| ..) method takes tasks_startrx::W writer structure

impl Writable for Reg<u32, _TASKS_STARTISOIN>[src]

write(|w| ..) method takes tasks_startisoin::W writer structure

impl Writable for Reg<u32, _AMOUNT>[src]

write(|w| ..) method takes amount::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _MISO>[src]

write(|w| ..) method takes miso::W writer structure

impl Writable for Reg<u32, _TASKS_CLEAR>[src]

write(|w| ..) method takes tasks_clear::W writer structure

impl Writable for Reg<u32, _RA>[src]

write(|w| ..) method takes ra::W writer structure

impl Writable for Reg<u32, _EVENTS_CTEPRESENT>[src]

write(|w| ..) method takes events_ctepresent::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _EVENTS_PHYEND>[src]

write(|w| ..) method takes events_phyend::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _PRESCALER>[src]

write(|w| ..) method takes prescaler::W writer structure

impl Writable for Reg<u32, _FORMAT>[src]

write(|w| ..) method takes format::W writer structure

impl Writable for Reg<u32, _TASKS_STARTECB>[src]

write(|w| ..) method takes tasks_startecb::W writer structure

impl Writable for Reg<u32, _LFXODEBOUNCE>[src]

write(|w| ..) method takes lfxodebounce::W writer structure

impl Writable for Reg<u32, _ADDRESS>[src]

write(|w| ..) method takes address::W writer structure

impl Writable for Reg<u32, _TXD>[src]

write(|w| ..) method takes txd::W writer structure

impl Writable for Reg<u32, _TASKS_KSGEN>[src]

write(|w| ..) method takes tasks_ksgen::W writer structure

impl Writable for Reg<u32, _EVENTS_ENDTX>[src]

write(|w| ..) method takes events_endtx::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _EVENTS_FIELDLOST>[src]

write(|w| ..) method takes events_fieldlost::W writer structure

impl Writable for Reg<u32, _EVENTS_TIMEOUT>[src]

write(|w| ..) method takes events_timeout::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _AUTOCOLRESCONFIG>[src]

write(|w| ..) method takes autocolresconfig::W writer structure

impl Writable for Reg<u32, _OUT>[src]

write(|w| ..) method takes out::W writer structure

impl Writable for Reg<u32, _IMISS>[src]

write(|w| ..) method takes imiss::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_SLEEPENTER>[src]

write(|w| ..) method takes events_sleepenter::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _TASKS_STOPRX>[src]

write(|w| ..) method takes tasks_stoprx::W writer structure

impl Writable for Reg<u32, _ENABLE>[src]

write(|w| ..) method takes enable::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _SCL>[src]

write(|w| ..) method takes scl::W writer structure

impl Writable for Reg<u32, _TASKS_CLR>[src]

write(|w| ..) method takes tasks_clr::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _DIRCLR>[src]

write(|w| ..) method takes dirclr::W writer structure

impl Writable for Reg<u32, _EVENTS_USBDETECTED>[src]

write(|w| ..) method takes events_usbdetected::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_DEVMATCH>[src]

write(|w| ..) method takes events_devmatch::W writer structure

impl Writable for Reg<u32, _EVENTS_ADDRESS>[src]

write(|w| ..) method takes events_address::W writer structure

impl Writable for Reg<u32, _BAUDRATE>[src]

write(|w| ..) method takes baudrate::W writer structure

impl Writable for Reg<u32, _TASKS_STARTEPIN>[src]

write(|w| ..) method takes tasks_startepin::W writer structure

impl Writable for Reg<u32, _LIST>[src]

write(|w| ..) method takes list::W writer structure

impl Writable for Reg<u32, _TIFS>[src]

write(|w| ..) method takes tifs::W writer structure

impl Writable for Reg<u32, _HFXODEBOUNCE>[src]

write(|w| ..) method takes hfxodebounce::W writer structure

impl Writable for Reg<u32, _LATCH>[src]

write(|w| ..) method takes latch::W writer structure

impl Writable for Reg<u32, _CTS>[src]

write(|w| ..) method takes cts::W writer structure

impl Writable for Reg<u32, _EVENTS_READ>[src]

write(|w| ..) method takes events_read::W writer structure

impl Writable for Reg<u32, _CSNPOL>[src]

write(|w| ..) method takes csnpol::W writer structure

impl Writable for Reg<u32, _EVTENSET>[src]

write(|w| ..) method takes evtenset::W writer structure

impl Writable for Reg<u32, _MAXLEN>[src]

write(|w| ..) method takes maxlen::W writer structure

impl Writable for Reg<u32, _TASKS_RSSISTOP>[src]

write(|w| ..) method takes tasks_rssistop::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _TASKS_EP0STALL>[src]

write(|w| ..) method takes tasks_ep0stall::W writer structure

impl Writable for Reg<u32, _TXD>[src]

write(|w| ..) method takes txd::W writer structure

impl Writable for Reg<u32, _DIS>[src]

write(|w| ..) method takes dis::W writer structure

impl Writable for Reg<u32, _TASKS_STOP>[src]

write(|w| ..) method takes tasks_stop::W writer structure

impl Writable for Reg<u32, _OVERSAMPLE>[src]

write(|w| ..) method takes oversample::W writer structure

impl Writable for Reg<u32, _EVENTS_COLLISION>[src]

write(|w| ..) method takes events_collision::W writer structure

impl Writable for Reg<u32, _DECODER>[src]

write(|w| ..) method takes decoder::W writer structure

impl Writable for Reg<u32, _PACKETPTR>[src]

write(|w| ..) method takes packetptr::W writer structure

impl Writable for Reg<u32, _OUT>[src]

write(|w| ..) method takes out::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _MOSI>[src]

write(|w| ..) method takes mosi::W writer structure

impl Writable for Reg<u32, _MODE>[src]

write(|w| ..) method takes mode::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _EVENTS_TXSTARTED>[src]

write(|w| ..) method takes events_txstarted::W writer structure

impl Writable for Reg<u32, _TASKS_STARTTX>[src]

write(|w| ..) method takes tasks_starttx::W writer structure

impl Writable for Reg<u32, _CSN>[src]

write(|w| ..) method takes csn::W writer structure

impl Writable for Reg<u32, _B3>[src]

write(|w| ..) method takes b3::W writer structure

impl Writable for Reg<u32, _ADDR>[src]

write(|w| ..) method takes addr::W writer structure

impl Writable for Reg<u32, _CTEINLINECONF>[src]

write(|w| ..) method takes cteinlineconf::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _EVENTS_ERROR>[src]

write(|w| ..) method takes events_error::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _EVENTS_EP0SETUP>[src]

write(|w| ..) method takes events_ep0setup::W writer structure

impl Writable for Reg<u32, _PTR>[src]

write(|w| ..) method takes ptr::W writer structure

impl Writable for Reg<u32, _A5>[src]

write(|w| ..) method takes a5::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _TASKS_CALIBRATEOFFSET>[src]

write(|w| ..) method takes tasks_calibrateoffset::W writer structure

impl Writable for Reg<u32, _NMIENCLR>[src]

write(|w| ..) method takes nmienclr::W writer structure

impl Writable for Reg<u32, _EVENTS_TXPTRUPD>[src]

write(|w| ..) method takes events_txptrupd::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _EVENTS_CROSS>[src]

write(|w| ..) method takes events_cross::W writer structure

impl Writable for Reg<u32, _TASKS_EP0STATUS>[src]

write(|w| ..) method takes tasks_ep0status::W writer structure

impl Writable for Reg<u32, _EVENTS_SELECTED>[src]

write(|w| ..) method takes events_selected::W writer structure

impl Writable for Reg<u32, _EVENTS_STOPPED>[src]

write(|w| ..) method takes events_stopped::W writer structure

impl Writable for Reg<u32, _EVENTS_CCAIDLE>[src]

write(|w| ..) method takes events_ccaidle::W writer structure

impl Writable for Reg<u32, _TASKS_STARTEPOUT>[src]

write(|w| ..) method takes tasks_startepout::W writer structure

impl Writable for Reg<u32, _NRFFW>[src]

write(|w| ..) method takes nrffw::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _MAXCNT>[src]

write(|w| ..) method takes maxcnt::W writer structure

impl Writable for Reg<u32, _SHORTS>[src]

write(|w| ..) method takes shorts::W writer structure

impl Writable for Reg<u32, _LEDPRE>[src]

write(|w| ..) method takes ledpre::W writer structure

impl Writable for Reg<u32, _EVENTS_ERROR>[src]

write(|w| ..) method takes events_error::W writer structure

impl Writable for Reg<u32, _EVENTS_USBPWRRDY>[src]

write(|w| ..) method takes events_usbpwrrdy::W writer structure

impl Writable for Reg<u32, _DIR>[src]

write(|w| ..) method takes dir::W writer structure

impl Writable for Reg<u32, _INTENCLR>[src]

write(|w| ..) method takes intenclr::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

impl Writable for Reg<u32, _T3>[src]

write(|w| ..) method takes t3::W writer structure

impl Writable for Reg<u32, _REFSEL>[src]

write(|w| ..) method takes refsel::W writer structure

impl Writable for Reg<u32, _TXD>[src]

write(|w| ..) method takes txd::W writer structure

impl Writable for Reg<u32, _TASKS_LFCLKSTART>[src]

write(|w| ..) method takes tasks_lfclkstart::W writer structure

impl Writable for Reg<u32, _INTENSET>[src]

write(|w| ..) method takes intenset::W writer structure

Auto Trait Implementations

impl<U, REG> !Sync for Reg<U, REG>

impl<U, REG> Unpin for Reg<U, REG> where
    REG: Unpin,
    U: Unpin

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<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.