#[doc = "Register `PATT3` reader"]
pub type R = crate::R<Patt3Spec>;
#[doc = "Register `PATT3` writer"]
pub type W = crate::W<Patt3Spec>;
#[doc = "Field `ATTSETx` reader - ATTSETx"]
pub type AttsetxR = crate::FieldReader;
#[doc = "Field `ATTSETx` writer - ATTSETx"]
pub type AttsetxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `ATTWAITx` reader - ATTWAITx"]
pub type AttwaitxR = crate::FieldReader;
#[doc = "Field `ATTWAITx` writer - ATTWAITx"]
pub type AttwaitxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `ATTHOLDx` reader - ATTHOLDx"]
pub type AttholdxR = crate::FieldReader;
#[doc = "Field `ATTHOLDx` writer - ATTHOLDx"]
pub type AttholdxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `ATTHIZx` reader - ATTHIZx"]
pub type AtthizxR = crate::FieldReader;
#[doc = "Field `ATTHIZx` writer - ATTHIZx"]
pub type AtthizxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
impl R {
#[doc = "Bits 0:7 - ATTSETx"]
#[inline(always)]
pub fn attsetx(&self) -> AttsetxR {
AttsetxR::new((self.bits & 0xff) as u8)
}
#[doc = "Bits 8:15 - ATTWAITx"]
#[inline(always)]
pub fn attwaitx(&self) -> AttwaitxR {
AttwaitxR::new(((self.bits >> 8) & 0xff) as u8)
}
#[doc = "Bits 16:23 - ATTHOLDx"]
#[inline(always)]
pub fn attholdx(&self) -> AttholdxR {
AttholdxR::new(((self.bits >> 16) & 0xff) as u8)
}
#[doc = "Bits 24:31 - ATTHIZx"]
#[inline(always)]
pub fn atthizx(&self) -> AtthizxR {
AtthizxR::new(((self.bits >> 24) & 0xff) as u8)
}
}
impl W {
#[doc = "Bits 0:7 - ATTSETx"]
#[inline(always)]
pub fn attsetx(&mut self) -> AttsetxW<'_, Patt3Spec> {
AttsetxW::new(self, 0)
}
#[doc = "Bits 8:15 - ATTWAITx"]
#[inline(always)]
pub fn attwaitx(&mut self) -> AttwaitxW<'_, Patt3Spec> {
AttwaitxW::new(self, 8)
}
#[doc = "Bits 16:23 - ATTHOLDx"]
#[inline(always)]
pub fn attholdx(&mut self) -> AttholdxW<'_, Patt3Spec> {
AttholdxW::new(self, 16)
}
#[doc = "Bits 24:31 - ATTHIZx"]
#[inline(always)]
pub fn atthizx(&mut self) -> AtthizxW<'_, Patt3Spec> {
AtthizxW::new(self, 24)
}
}
#[doc = "Attribute memory space timing register 3\n\nYou can [`read`](crate::Reg::read) this register and get [`patt3::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`patt3::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct Patt3Spec;
impl crate::RegisterSpec for Patt3Spec {
type Ux = u32;
}
#[doc = "`read()` method returns [`patt3::R`](R) reader structure"]
impl crate::Readable for Patt3Spec {}
#[doc = "`write(|w| ..)` method takes [`patt3::W`](W) writer structure"]
impl crate::Writable for Patt3Spec {
type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets PATT3 to value 0xfcfc_fcfc"]
impl crate::Resettable for Patt3Spec {
const RESET_VALUE: u32 = 0xfcfc_fcfc;
}