#[doc = "Register `PIO4` reader"]
pub type R = crate::R<Pio4Spec>;
#[doc = "Register `PIO4` writer"]
pub type W = crate::W<Pio4Spec>;
#[doc = "Field `IOSETx` reader - IOSETx"]
pub type IosetxR = crate::FieldReader;
#[doc = "Field `IOSETx` writer - IOSETx"]
pub type IosetxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `IOWAITx` reader - IOWAITx"]
pub type IowaitxR = crate::FieldReader;
#[doc = "Field `IOWAITx` writer - IOWAITx"]
pub type IowaitxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `IOHOLDx` reader - IOHOLDx"]
pub type IoholdxR = crate::FieldReader;
#[doc = "Field `IOHOLDx` writer - IOHOLDx"]
pub type IoholdxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `IOHIZx` reader - IOHIZx"]
pub type IohizxR = crate::FieldReader;
#[doc = "Field `IOHIZx` writer - IOHIZx"]
pub type IohizxW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
impl R {
#[doc = "Bits 0:7 - IOSETx"]
#[inline(always)]
pub fn iosetx(&self) -> IosetxR {
IosetxR::new((self.bits & 0xff) as u8)
}
#[doc = "Bits 8:15 - IOWAITx"]
#[inline(always)]
pub fn iowaitx(&self) -> IowaitxR {
IowaitxR::new(((self.bits >> 8) & 0xff) as u8)
}
#[doc = "Bits 16:23 - IOHOLDx"]
#[inline(always)]
pub fn ioholdx(&self) -> IoholdxR {
IoholdxR::new(((self.bits >> 16) & 0xff) as u8)
}
#[doc = "Bits 24:31 - IOHIZx"]
#[inline(always)]
pub fn iohizx(&self) -> IohizxR {
IohizxR::new(((self.bits >> 24) & 0xff) as u8)
}
}
impl W {
#[doc = "Bits 0:7 - IOSETx"]
#[inline(always)]
pub fn iosetx(&mut self) -> IosetxW<'_, Pio4Spec> {
IosetxW::new(self, 0)
}
#[doc = "Bits 8:15 - IOWAITx"]
#[inline(always)]
pub fn iowaitx(&mut self) -> IowaitxW<'_, Pio4Spec> {
IowaitxW::new(self, 8)
}
#[doc = "Bits 16:23 - IOHOLDx"]
#[inline(always)]
pub fn ioholdx(&mut self) -> IoholdxW<'_, Pio4Spec> {
IoholdxW::new(self, 16)
}
#[doc = "Bits 24:31 - IOHIZx"]
#[inline(always)]
pub fn iohizx(&mut self) -> IohizxW<'_, Pio4Spec> {
IohizxW::new(self, 24)
}
}
#[doc = "I/O space timing register 4\n\nYou can [`read`](crate::Reg::read) this register and get [`pio4::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pio4::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct Pio4Spec;
impl crate::RegisterSpec for Pio4Spec {
type Ux = u32;
}
#[doc = "`read()` method returns [`pio4::R`](R) reader structure"]
impl crate::Readable for Pio4Spec {}
#[doc = "`write(|w| ..)` method takes [`pio4::W`](W) writer structure"]
impl crate::Writable for Pio4Spec {
type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets PIO4 to value 0xfcfc_fcfc"]
impl crate::Resettable for Pio4Spec {
const RESET_VALUE: u32 = 0xfcfc_fcfc;
}