#[doc = "Reader of register BOD33"]
pub type R = crate::R<u32, super::BOD33>;
#[doc = "Writer for register BOD33"]
pub type W = crate::W<u32, super::BOD33>;
#[doc = "Register BOD33 `reset()`'s with value 0"]
impl crate::ResetValue for super::BOD33 {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Reader of field `ENABLE`"]
pub type ENABLE_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `ENABLE`"]
pub struct ENABLE_W<'a> {
w: &'a mut W,
}
impl<'a> ENABLE_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u32) & 0x01) << 1);
self.w
}
}
#[doc = "Reader of field `HYST`"]
pub type HYST_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `HYST`"]
pub struct HYST_W<'a> {
w: &'a mut W,
}
impl<'a> HYST_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 2)) | (((value as u32) & 0x01) << 2);
self.w
}
}
#[doc = "BOD33 Action\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum ACTION_A {
#[doc = "0: No action"]
NONE = 0,
#[doc = "1: The BOD33 generates a reset"]
RESET = 1,
#[doc = "2: The BOD33 generates an interrupt"]
INTERRUPT = 2,
}
impl From<ACTION_A> for u8 {
#[inline(always)]
fn from(variant: ACTION_A) -> Self {
variant as _
}
}
#[doc = "Reader of field `ACTION`"]
pub type ACTION_R = crate::R<u8, ACTION_A>;
impl ACTION_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> crate::Variant<u8, ACTION_A> {
use crate::Variant::*;
match self.bits {
0 => Val(ACTION_A::NONE),
1 => Val(ACTION_A::RESET),
2 => Val(ACTION_A::INTERRUPT),
i => Res(i),
}
}
#[doc = "Checks if the value of the field is `NONE`"]
#[inline(always)]
pub fn is_none(&self) -> bool {
*self == ACTION_A::NONE
}
#[doc = "Checks if the value of the field is `RESET`"]
#[inline(always)]
pub fn is_reset(&self) -> bool {
*self == ACTION_A::RESET
}
#[doc = "Checks if the value of the field is `INTERRUPT`"]
#[inline(always)]
pub fn is_interrupt(&self) -> bool {
*self == ACTION_A::INTERRUPT
}
}
#[doc = "Write proxy for field `ACTION`"]
pub struct ACTION_W<'a> {
w: &'a mut W,
}
impl<'a> ACTION_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ACTION_A) -> &'a mut W {
unsafe { self.bits(variant.into()) }
}
#[doc = "No action"]
#[inline(always)]
pub fn none(self) -> &'a mut W {
self.variant(ACTION_A::NONE)
}
#[doc = "The BOD33 generates a reset"]
#[inline(always)]
pub fn reset(self) -> &'a mut W {
self.variant(ACTION_A::RESET)
}
#[doc = "The BOD33 generates an interrupt"]
#[inline(always)]
pub fn interrupt(self) -> &'a mut W {
self.variant(ACTION_A::INTERRUPT)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 3)) | (((value as u32) & 0x03) << 3);
self.w
}
}
#[doc = "Reader of field `RUNSTDBY`"]
pub type RUNSTDBY_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `RUNSTDBY`"]
pub struct RUNSTDBY_W<'a> {
w: &'a mut W,
}
impl<'a> RUNSTDBY_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 6)) | (((value as u32) & 0x01) << 6);
self.w
}
}
#[doc = "Reader of field `MODE`"]
pub type MODE_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `MODE`"]
pub struct MODE_W<'a> {
w: &'a mut W,
}
impl<'a> MODE_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 8)) | (((value as u32) & 0x01) << 8);
self.w
}
}
#[doc = "Reader of field `CEN`"]
pub type CEN_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `CEN`"]
pub struct CEN_W<'a> {
w: &'a mut W,
}
impl<'a> CEN_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 9)) | (((value as u32) & 0x01) << 9);
self.w
}
}
#[doc = "Prescaler Select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum PSEL_A {
#[doc = "0: Divide clock by 2"]
DIV2 = 0,
#[doc = "1: Divide clock by 4"]
DIV4 = 1,
#[doc = "2: Divide clock by 8"]
DIV8 = 2,
#[doc = "3: Divide clock by 16"]
DIV16 = 3,
#[doc = "4: Divide clock by 32"]
DIV32 = 4,
#[doc = "5: Divide clock by 64"]
DIV64 = 5,
#[doc = "6: Divide clock by 128"]
DIV128 = 6,
#[doc = "7: Divide clock by 256"]
DIV256 = 7,
#[doc = "8: Divide clock by 512"]
DIV512 = 8,
#[doc = "9: Divide clock by 1024"]
DIV1K = 9,
#[doc = "10: Divide clock by 2048"]
DIV2K = 10,
#[doc = "11: Divide clock by 4096"]
DIV4K = 11,
#[doc = "12: Divide clock by 8192"]
DIV8K = 12,
#[doc = "13: Divide clock by 16384"]
DIV16K = 13,
#[doc = "14: Divide clock by 32768"]
DIV32K = 14,
#[doc = "15: Divide clock by 65536"]
DIV64K = 15,
}
impl From<PSEL_A> for u8 {
#[inline(always)]
fn from(variant: PSEL_A) -> Self {
variant as _
}
}
#[doc = "Reader of field `PSEL`"]
pub type PSEL_R = crate::R<u8, PSEL_A>;
impl PSEL_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> PSEL_A {
match self.bits {
0 => PSEL_A::DIV2,
1 => PSEL_A::DIV4,
2 => PSEL_A::DIV8,
3 => PSEL_A::DIV16,
4 => PSEL_A::DIV32,
5 => PSEL_A::DIV64,
6 => PSEL_A::DIV128,
7 => PSEL_A::DIV256,
8 => PSEL_A::DIV512,
9 => PSEL_A::DIV1K,
10 => PSEL_A::DIV2K,
11 => PSEL_A::DIV4K,
12 => PSEL_A::DIV8K,
13 => PSEL_A::DIV16K,
14 => PSEL_A::DIV32K,
15 => PSEL_A::DIV64K,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `DIV2`"]
#[inline(always)]
pub fn is_div2(&self) -> bool {
*self == PSEL_A::DIV2
}
#[doc = "Checks if the value of the field is `DIV4`"]
#[inline(always)]
pub fn is_div4(&self) -> bool {
*self == PSEL_A::DIV4
}
#[doc = "Checks if the value of the field is `DIV8`"]
#[inline(always)]
pub fn is_div8(&self) -> bool {
*self == PSEL_A::DIV8
}
#[doc = "Checks if the value of the field is `DIV16`"]
#[inline(always)]
pub fn is_div16(&self) -> bool {
*self == PSEL_A::DIV16
}
#[doc = "Checks if the value of the field is `DIV32`"]
#[inline(always)]
pub fn is_div32(&self) -> bool {
*self == PSEL_A::DIV32
}
#[doc = "Checks if the value of the field is `DIV64`"]
#[inline(always)]
pub fn is_div64(&self) -> bool {
*self == PSEL_A::DIV64
}
#[doc = "Checks if the value of the field is `DIV128`"]
#[inline(always)]
pub fn is_div128(&self) -> bool {
*self == PSEL_A::DIV128
}
#[doc = "Checks if the value of the field is `DIV256`"]
#[inline(always)]
pub fn is_div256(&self) -> bool {
*self == PSEL_A::DIV256
}
#[doc = "Checks if the value of the field is `DIV512`"]
#[inline(always)]
pub fn is_div512(&self) -> bool {
*self == PSEL_A::DIV512
}
#[doc = "Checks if the value of the field is `DIV1K`"]
#[inline(always)]
pub fn is_div1k(&self) -> bool {
*self == PSEL_A::DIV1K
}
#[doc = "Checks if the value of the field is `DIV2K`"]
#[inline(always)]
pub fn is_div2k(&self) -> bool {
*self == PSEL_A::DIV2K
}
#[doc = "Checks if the value of the field is `DIV4K`"]
#[inline(always)]
pub fn is_div4k(&self) -> bool {
*self == PSEL_A::DIV4K
}
#[doc = "Checks if the value of the field is `DIV8K`"]
#[inline(always)]
pub fn is_div8k(&self) -> bool {
*self == PSEL_A::DIV8K
}
#[doc = "Checks if the value of the field is `DIV16K`"]
#[inline(always)]
pub fn is_div16k(&self) -> bool {
*self == PSEL_A::DIV16K
}
#[doc = "Checks if the value of the field is `DIV32K`"]
#[inline(always)]
pub fn is_div32k(&self) -> bool {
*self == PSEL_A::DIV32K
}
#[doc = "Checks if the value of the field is `DIV64K`"]
#[inline(always)]
pub fn is_div64k(&self) -> bool {
*self == PSEL_A::DIV64K
}
}
#[doc = "Write proxy for field `PSEL`"]
pub struct PSEL_W<'a> {
w: &'a mut W,
}
impl<'a> PSEL_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: PSEL_A) -> &'a mut W {
{
self.bits(variant.into())
}
}
#[doc = "Divide clock by 2"]
#[inline(always)]
pub fn div2(self) -> &'a mut W {
self.variant(PSEL_A::DIV2)
}
#[doc = "Divide clock by 4"]
#[inline(always)]
pub fn div4(self) -> &'a mut W {
self.variant(PSEL_A::DIV4)
}
#[doc = "Divide clock by 8"]
#[inline(always)]
pub fn div8(self) -> &'a mut W {
self.variant(PSEL_A::DIV8)
}
#[doc = "Divide clock by 16"]
#[inline(always)]
pub fn div16(self) -> &'a mut W {
self.variant(PSEL_A::DIV16)
}
#[doc = "Divide clock by 32"]
#[inline(always)]
pub fn div32(self) -> &'a mut W {
self.variant(PSEL_A::DIV32)
}
#[doc = "Divide clock by 64"]
#[inline(always)]
pub fn div64(self) -> &'a mut W {
self.variant(PSEL_A::DIV64)
}
#[doc = "Divide clock by 128"]
#[inline(always)]
pub fn div128(self) -> &'a mut W {
self.variant(PSEL_A::DIV128)
}
#[doc = "Divide clock by 256"]
#[inline(always)]
pub fn div256(self) -> &'a mut W {
self.variant(PSEL_A::DIV256)
}
#[doc = "Divide clock by 512"]
#[inline(always)]
pub fn div512(self) -> &'a mut W {
self.variant(PSEL_A::DIV512)
}
#[doc = "Divide clock by 1024"]
#[inline(always)]
pub fn div1k(self) -> &'a mut W {
self.variant(PSEL_A::DIV1K)
}
#[doc = "Divide clock by 2048"]
#[inline(always)]
pub fn div2k(self) -> &'a mut W {
self.variant(PSEL_A::DIV2K)
}
#[doc = "Divide clock by 4096"]
#[inline(always)]
pub fn div4k(self) -> &'a mut W {
self.variant(PSEL_A::DIV4K)
}
#[doc = "Divide clock by 8192"]
#[inline(always)]
pub fn div8k(self) -> &'a mut W {
self.variant(PSEL_A::DIV8K)
}
#[doc = "Divide clock by 16384"]
#[inline(always)]
pub fn div16k(self) -> &'a mut W {
self.variant(PSEL_A::DIV16K)
}
#[doc = "Divide clock by 32768"]
#[inline(always)]
pub fn div32k(self) -> &'a mut W {
self.variant(PSEL_A::DIV32K)
}
#[doc = "Divide clock by 65536"]
#[inline(always)]
pub fn div64k(self) -> &'a mut W {
self.variant(PSEL_A::DIV64K)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x0f << 12)) | (((value as u32) & 0x0f) << 12);
self.w
}
}
#[doc = "Reader of field `LEVEL`"]
pub type LEVEL_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `LEVEL`"]
pub struct LEVEL_W<'a> {
w: &'a mut W,
}
impl<'a> LEVEL_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x3f << 16)) | (((value as u32) & 0x3f) << 16);
self.w
}
}
impl R {
#[doc = "Bit 1 - Enable"]
#[inline(always)]
pub fn enable(&self) -> ENABLE_R {
ENABLE_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - Hysteresis"]
#[inline(always)]
pub fn hyst(&self) -> HYST_R {
HYST_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bits 3:4 - BOD33 Action"]
#[inline(always)]
pub fn action(&self) -> ACTION_R {
ACTION_R::new(((self.bits >> 3) & 0x03) as u8)
}
#[doc = "Bit 6 - Run in Standby"]
#[inline(always)]
pub fn runstdby(&self) -> RUNSTDBY_R {
RUNSTDBY_R::new(((self.bits >> 6) & 0x01) != 0)
}
#[doc = "Bit 8 - Operation Mode"]
#[inline(always)]
pub fn mode(&self) -> MODE_R {
MODE_R::new(((self.bits >> 8) & 0x01) != 0)
}
#[doc = "Bit 9 - Clock Enable"]
#[inline(always)]
pub fn cen(&self) -> CEN_R {
CEN_R::new(((self.bits >> 9) & 0x01) != 0)
}
#[doc = "Bits 12:15 - Prescaler Select"]
#[inline(always)]
pub fn psel(&self) -> PSEL_R {
PSEL_R::new(((self.bits >> 12) & 0x0f) as u8)
}
#[doc = "Bits 16:21 - BOD33 Threshold Level"]
#[inline(always)]
pub fn level(&self) -> LEVEL_R {
LEVEL_R::new(((self.bits >> 16) & 0x3f) as u8)
}
}
impl W {
#[doc = "Bit 1 - Enable"]
#[inline(always)]
pub fn enable(&mut self) -> ENABLE_W {
ENABLE_W { w: self }
}
#[doc = "Bit 2 - Hysteresis"]
#[inline(always)]
pub fn hyst(&mut self) -> HYST_W {
HYST_W { w: self }
}
#[doc = "Bits 3:4 - BOD33 Action"]
#[inline(always)]
pub fn action(&mut self) -> ACTION_W {
ACTION_W { w: self }
}
#[doc = "Bit 6 - Run in Standby"]
#[inline(always)]
pub fn runstdby(&mut self) -> RUNSTDBY_W {
RUNSTDBY_W { w: self }
}
#[doc = "Bit 8 - Operation Mode"]
#[inline(always)]
pub fn mode(&mut self) -> MODE_W {
MODE_W { w: self }
}
#[doc = "Bit 9 - Clock Enable"]
#[inline(always)]
pub fn cen(&mut self) -> CEN_W {
CEN_W { w: self }
}
#[doc = "Bits 12:15 - Prescaler Select"]
#[inline(always)]
pub fn psel(&mut self) -> PSEL_W {
PSEL_W { w: self }
}
#[doc = "Bits 16:21 - BOD33 Threshold Level"]
#[inline(always)]
pub fn level(&mut self) -> LEVEL_W {
LEVEL_W { w: self }
}
}