atsamd51j/qspi/
baud.rs
#[doc = "Register `BAUD` reader"]
pub type R = crate::R<BaudSpec>;
#[doc = "Register `BAUD` writer"]
pub type W = crate::W<BaudSpec>;
#[doc = "Field `CPOL` reader - Clock Polarity"]
pub type CpolR = crate::BitReader;
#[doc = "Field `CPOL` writer - Clock Polarity"]
pub type CpolW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `CPHA` reader - Clock Phase"]
pub type CphaR = crate::BitReader;
#[doc = "Field `CPHA` writer - Clock Phase"]
pub type CphaW<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `BAUD` reader - Serial Clock Baud Rate"]
pub type BaudR = crate::FieldReader;
#[doc = "Field `BAUD` writer - Serial Clock Baud Rate"]
pub type BaudW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `DLYBS` reader - Delay Before SCK"]
pub type DlybsR = crate::FieldReader;
#[doc = "Field `DLYBS` writer - Delay Before SCK"]
pub type DlybsW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
impl R {
#[doc = "Bit 0 - Clock Polarity"]
#[inline(always)]
pub fn cpol(&self) -> CpolR {
CpolR::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - Clock Phase"]
#[inline(always)]
pub fn cpha(&self) -> CphaR {
CphaR::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bits 8:15 - Serial Clock Baud Rate"]
#[inline(always)]
pub fn baud(&self) -> BaudR {
BaudR::new(((self.bits >> 8) & 0xff) as u8)
}
#[doc = "Bits 16:23 - Delay Before SCK"]
#[inline(always)]
pub fn dlybs(&self) -> DlybsR {
DlybsR::new(((self.bits >> 16) & 0xff) as u8)
}
}
impl W {
#[doc = "Bit 0 - Clock Polarity"]
#[inline(always)]
#[must_use]
pub fn cpol(&mut self) -> CpolW<BaudSpec> {
CpolW::new(self, 0)
}
#[doc = "Bit 1 - Clock Phase"]
#[inline(always)]
#[must_use]
pub fn cpha(&mut self) -> CphaW<BaudSpec> {
CphaW::new(self, 1)
}
#[doc = "Bits 8:15 - Serial Clock Baud Rate"]
#[inline(always)]
#[must_use]
pub fn baud(&mut self) -> BaudW<BaudSpec> {
BaudW::new(self, 8)
}
#[doc = "Bits 16:23 - Delay Before SCK"]
#[inline(always)]
#[must_use]
pub fn dlybs(&mut self) -> DlybsW<BaudSpec> {
DlybsW::new(self, 16)
}
}
#[doc = "Baud Rate\n\nYou can [`read`](crate::Reg::read) this register and get [`baud::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`baud::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct BaudSpec;
impl crate::RegisterSpec for BaudSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`baud::R`](R) reader structure"]
impl crate::Readable for BaudSpec {}
#[doc = "`write(|w| ..)` method takes [`baud::W`](W) writer structure"]
impl crate::Writable for BaudSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets BAUD to value 0"]
impl crate::Resettable for BaudSpec {
const RESET_VALUE: u32 = 0;
}