atsamd21g/usb/host/
pstatusclr.rs
#[doc = "Register `PSTATUSCLR%s` reader"]
pub type R = crate::R<PstatusclrSpec>;
#[doc = "Register `PSTATUSCLR%s` writer"]
pub type W = crate::W<PstatusclrSpec>;
#[doc = "Field `DTGL` reader - Data Toggle clear"]
pub type DtglR = crate::BitReader;
#[doc = "Field `DTGL` writer - Data Toggle clear"]
pub type DtglW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CURBK` reader - Curren Bank clear"]
pub type CurbkR = crate::BitReader;
#[doc = "Field `CURBK` writer - Curren Bank clear"]
pub type CurbkW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `PFREEZE` reader - Pipe Freeze Clear"]
pub type PfreezeR = crate::BitReader;
#[doc = "Field `PFREEZE` writer - Pipe Freeze Clear"]
pub type PfreezeW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK0RDY` reader - Bank 0 Ready Clear"]
pub type Bk0rdyR = crate::BitReader;
#[doc = "Field `BK0RDY` writer - Bank 0 Ready Clear"]
pub type Bk0rdyW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BK1RDY` reader - Bank 1 Ready Clear"]
pub type Bk1rdyR = crate::BitReader;
#[doc = "Field `BK1RDY` writer - Bank 1 Ready Clear"]
pub type Bk1rdyW<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[doc = "Bit 0 - Data Toggle clear"]
#[inline(always)]
pub fn dtgl(&self) -> DtglR {
DtglR::new((self.bits & 1) != 0)
}
#[doc = "Bit 2 - Curren Bank clear"]
#[inline(always)]
pub fn curbk(&self) -> CurbkR {
CurbkR::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Bit 4 - Pipe Freeze Clear"]
#[inline(always)]
pub fn pfreeze(&self) -> PfreezeR {
PfreezeR::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bit 6 - Bank 0 Ready Clear"]
#[inline(always)]
pub fn bk0rdy(&self) -> Bk0rdyR {
Bk0rdyR::new(((self.bits >> 6) & 1) != 0)
}
#[doc = "Bit 7 - Bank 1 Ready Clear"]
#[inline(always)]
pub fn bk1rdy(&self) -> Bk1rdyR {
Bk1rdyR::new(((self.bits >> 7) & 1) != 0)
}
}
impl W {
#[doc = "Bit 0 - Data Toggle clear"]
#[inline(always)]
#[must_use]
pub fn dtgl(&mut self) -> DtglW<PstatusclrSpec> {
DtglW::new(self, 0)
}
#[doc = "Bit 2 - Curren Bank clear"]
#[inline(always)]
#[must_use]
pub fn curbk(&mut self) -> CurbkW<PstatusclrSpec> {
CurbkW::new(self, 2)
}
#[doc = "Bit 4 - Pipe Freeze Clear"]
#[inline(always)]
#[must_use]
pub fn pfreeze(&mut self) -> PfreezeW<PstatusclrSpec> {
PfreezeW::new(self, 4)
}
#[doc = "Bit 6 - Bank 0 Ready Clear"]
#[inline(always)]
#[must_use]
pub fn bk0rdy(&mut self) -> Bk0rdyW<PstatusclrSpec> {
Bk0rdyW::new(self, 6)
}
#[doc = "Bit 7 - Bank 1 Ready Clear"]
#[inline(always)]
#[must_use]
pub fn bk1rdy(&mut self) -> Bk1rdyW<PstatusclrSpec> {
Bk1rdyW::new(self, 7)
}
}
#[doc = "HOST End Point Pipe Status Clear\n\nYou can [`read`](crate::Reg::read) this register and get [`pstatusclr::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pstatusclr::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PstatusclrSpec;
impl crate::RegisterSpec for PstatusclrSpec {
type Ux = u8;
}
#[doc = "`read()` method returns [`pstatusclr::R`](R) reader structure"]
impl crate::Readable for PstatusclrSpec {}
#[doc = "`write(|w| ..)` method takes [`pstatusclr::W`](W) writer structure"]
impl crate::Writable for PstatusclrSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
}
#[doc = "`reset()` method sets PSTATUSCLR%s to value 0"]
impl crate::Resettable for PstatusclrSpec {
const RESET_VALUE: u8 = 0;
}