atsamd51j/pdec/
presc.rs
#[doc = "Register `PRESC` reader"]
pub type R = crate::R<PrescSpec>;
#[doc = "Register `PRESC` writer"]
pub type W = crate::W<PrescSpec>;
#[doc = "Prescaler Value\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Prescselect {
#[doc = "0: No division"]
Div1 = 0,
#[doc = "1: Divide by 2"]
Div2 = 1,
#[doc = "2: Divide by 4"]
Div4 = 2,
#[doc = "3: Divide by 8"]
Div8 = 3,
#[doc = "4: Divide by 16"]
Div16 = 4,
#[doc = "5: Divide by 32"]
Div32 = 5,
#[doc = "6: Divide by 64"]
Div64 = 6,
#[doc = "7: Divide by 128"]
Div128 = 7,
#[doc = "8: Divide by 256"]
Div256 = 8,
#[doc = "9: Divide by 512"]
Div512 = 9,
#[doc = "10: Divide by 1024"]
Div1024 = 10,
}
impl From<Prescselect> for u8 {
#[inline(always)]
fn from(variant: Prescselect) -> Self {
variant as _
}
}
impl crate::FieldSpec for Prescselect {
type Ux = u8;
}
impl crate::IsEnum for Prescselect {}
#[doc = "Field `PRESC` reader - Prescaler Value"]
pub type PrescR = crate::FieldReader<Prescselect>;
impl PrescR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Option<Prescselect> {
match self.bits {
0 => Some(Prescselect::Div1),
1 => Some(Prescselect::Div2),
2 => Some(Prescselect::Div4),
3 => Some(Prescselect::Div8),
4 => Some(Prescselect::Div16),
5 => Some(Prescselect::Div32),
6 => Some(Prescselect::Div64),
7 => Some(Prescselect::Div128),
8 => Some(Prescselect::Div256),
9 => Some(Prescselect::Div512),
10 => Some(Prescselect::Div1024),
_ => None,
}
}
#[doc = "No division"]
#[inline(always)]
pub fn is_div1(&self) -> bool {
*self == Prescselect::Div1
}
#[doc = "Divide by 2"]
#[inline(always)]
pub fn is_div2(&self) -> bool {
*self == Prescselect::Div2
}
#[doc = "Divide by 4"]
#[inline(always)]
pub fn is_div4(&self) -> bool {
*self == Prescselect::Div4
}
#[doc = "Divide by 8"]
#[inline(always)]
pub fn is_div8(&self) -> bool {
*self == Prescselect::Div8
}
#[doc = "Divide by 16"]
#[inline(always)]
pub fn is_div16(&self) -> bool {
*self == Prescselect::Div16
}
#[doc = "Divide by 32"]
#[inline(always)]
pub fn is_div32(&self) -> bool {
*self == Prescselect::Div32
}
#[doc = "Divide by 64"]
#[inline(always)]
pub fn is_div64(&self) -> bool {
*self == Prescselect::Div64
}
#[doc = "Divide by 128"]
#[inline(always)]
pub fn is_div128(&self) -> bool {
*self == Prescselect::Div128
}
#[doc = "Divide by 256"]
#[inline(always)]
pub fn is_div256(&self) -> bool {
*self == Prescselect::Div256
}
#[doc = "Divide by 512"]
#[inline(always)]
pub fn is_div512(&self) -> bool {
*self == Prescselect::Div512
}
#[doc = "Divide by 1024"]
#[inline(always)]
pub fn is_div1024(&self) -> bool {
*self == Prescselect::Div1024
}
}
#[doc = "Field `PRESC` writer - Prescaler Value"]
pub type PrescW<'a, REG> = crate::FieldWriter<'a, REG, 4, Prescselect>;
impl<'a, REG> PrescW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
REG::Ux: From<u8>,
{
#[doc = "No division"]
#[inline(always)]
pub fn div1(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div1)
}
#[doc = "Divide by 2"]
#[inline(always)]
pub fn div2(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div2)
}
#[doc = "Divide by 4"]
#[inline(always)]
pub fn div4(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div4)
}
#[doc = "Divide by 8"]
#[inline(always)]
pub fn div8(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div8)
}
#[doc = "Divide by 16"]
#[inline(always)]
pub fn div16(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div16)
}
#[doc = "Divide by 32"]
#[inline(always)]
pub fn div32(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div32)
}
#[doc = "Divide by 64"]
#[inline(always)]
pub fn div64(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div64)
}
#[doc = "Divide by 128"]
#[inline(always)]
pub fn div128(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div128)
}
#[doc = "Divide by 256"]
#[inline(always)]
pub fn div256(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div256)
}
#[doc = "Divide by 512"]
#[inline(always)]
pub fn div512(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div512)
}
#[doc = "Divide by 1024"]
#[inline(always)]
pub fn div1024(self) -> &'a mut crate::W<REG> {
self.variant(Prescselect::Div1024)
}
}
impl R {
#[doc = "Bits 0:3 - Prescaler Value"]
#[inline(always)]
pub fn presc(&self) -> PrescR {
PrescR::new(self.bits & 0x0f)
}
}
impl W {
#[doc = "Bits 0:3 - Prescaler Value"]
#[inline(always)]
#[must_use]
pub fn presc(&mut self) -> PrescW<PrescSpec> {
PrescW::new(self, 0)
}
}
#[doc = "Prescaler Value\n\nYou can [`read`](crate::Reg::read) this register and get [`presc::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`presc::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PrescSpec;
impl crate::RegisterSpec for PrescSpec {
type Ux = u8;
}
#[doc = "`read()` method returns [`presc::R`](R) reader structure"]
impl crate::Readable for PrescSpec {}
#[doc = "`write(|w| ..)` method takes [`presc::W`](W) writer structure"]
impl crate::Writable for PrescSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u8 = 0;
}
#[doc = "`reset()` method sets PRESC to value 0"]
impl crate::Resettable for PrescSpec {
const RESET_VALUE: u8 = 0;
}