atsam3a4c 0.1.0

Peripheral access API for ATSAM3A4C microcontrollers (generated using svd2rust)
Documentation
#[doc = "Register `HSTPIPERR[%s]` reader"]
pub type R = crate::R<HSTPIPERR_SPEC>;
#[doc = "Register `HSTPIPERR[%s]` writer"]
pub type W = crate::W<HSTPIPERR_SPEC>;
#[doc = "Field `DATATGL` reader - Data Toggle Error"]
pub type DATATGL_R = crate::BitReader;
#[doc = "Field `DATATGL` writer - Data Toggle Error"]
pub type DATATGL_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `DATAPID` reader - Data PID Error"]
pub type DATAPID_R = crate::BitReader;
#[doc = "Field `DATAPID` writer - Data PID Error"]
pub type DATAPID_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `PID` reader - PID Error"]
pub type PID_R = crate::BitReader;
#[doc = "Field `PID` writer - PID Error"]
pub type PID_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `TIMEOUT` reader - Time-Out Error"]
pub type TIMEOUT_R = crate::BitReader;
#[doc = "Field `TIMEOUT` writer - Time-Out Error"]
pub type TIMEOUT_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `CRC16` reader - CRC16 Error"]
pub type CRC16_R = crate::BitReader;
#[doc = "Field `CRC16` writer - CRC16 Error"]
pub type CRC16_W<'a, REG, const O: u8> = crate::BitWriter<'a, REG, O>;
#[doc = "Field `COUNTER` reader - Error Counter"]
pub type COUNTER_R = crate::FieldReader;
#[doc = "Field `COUNTER` writer - Error Counter"]
pub type COUNTER_W<'a, REG, const O: u8> = crate::FieldWriter<'a, REG, 2, O>;
impl R {
    #[doc = "Bit 0 - Data Toggle Error"]
    #[inline(always)]
    pub fn datatgl(&self) -> DATATGL_R {
        DATATGL_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Data PID Error"]
    #[inline(always)]
    pub fn datapid(&self) -> DATAPID_R {
        DATAPID_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - PID Error"]
    #[inline(always)]
    pub fn pid(&self) -> PID_R {
        PID_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Time-Out Error"]
    #[inline(always)]
    pub fn timeout(&self) -> TIMEOUT_R {
        TIMEOUT_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - CRC16 Error"]
    #[inline(always)]
    pub fn crc16(&self) -> CRC16_R {
        CRC16_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bits 5:6 - Error Counter"]
    #[inline(always)]
    pub fn counter(&self) -> COUNTER_R {
        COUNTER_R::new(((self.bits >> 5) & 3) as u8)
    }
}
impl W {
    #[doc = "Bit 0 - Data Toggle Error"]
    #[inline(always)]
    #[must_use]
    pub fn datatgl(&mut self) -> DATATGL_W<HSTPIPERR_SPEC, 0> {
        DATATGL_W::new(self)
    }
    #[doc = "Bit 1 - Data PID Error"]
    #[inline(always)]
    #[must_use]
    pub fn datapid(&mut self) -> DATAPID_W<HSTPIPERR_SPEC, 1> {
        DATAPID_W::new(self)
    }
    #[doc = "Bit 2 - PID Error"]
    #[inline(always)]
    #[must_use]
    pub fn pid(&mut self) -> PID_W<HSTPIPERR_SPEC, 2> {
        PID_W::new(self)
    }
    #[doc = "Bit 3 - Time-Out Error"]
    #[inline(always)]
    #[must_use]
    pub fn timeout(&mut self) -> TIMEOUT_W<HSTPIPERR_SPEC, 3> {
        TIMEOUT_W::new(self)
    }
    #[doc = "Bit 4 - CRC16 Error"]
    #[inline(always)]
    #[must_use]
    pub fn crc16(&mut self) -> CRC16_W<HSTPIPERR_SPEC, 4> {
        CRC16_W::new(self)
    }
    #[doc = "Bits 5:6 - Error Counter"]
    #[inline(always)]
    #[must_use]
    pub fn counter(&mut self) -> COUNTER_W<HSTPIPERR_SPEC, 5> {
        COUNTER_W::new(self)
    }
    #[doc = r" Writes raw bits to the register."]
    #[doc = r""]
    #[doc = r" # Safety"]
    #[doc = r""]
    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
}
#[doc = "Host Pipe Error Register (n = 0)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hstpiperr::R`](R).  You can [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hstpiperr::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct HSTPIPERR_SPEC;
impl crate::RegisterSpec for HSTPIPERR_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`hstpiperr::R`](R) reader structure"]
impl crate::Readable for HSTPIPERR_SPEC {}
#[doc = "`write(|w| ..)` method takes [`hstpiperr::W`](W) writer structure"]
impl crate::Writable for HSTPIPERR_SPEC {
    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}