#[doc = "Reader of register NMICTRL"]
pub type R = crate::R<u8, super::NMICTRL>;
#[doc = "Writer for register NMICTRL"]
pub type W = crate::W<u8, super::NMICTRL>;
#[doc = "Register NMICTRL `reset()`'s with value 0"]
impl crate::ResetValue for super::NMICTRL {
type Type = u8;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Possible values of the field `NMISENSE`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum NMISENSE_A {
#[doc = "No detection"]
NONE,
#[doc = "Rising-edge detection"]
RISE,
#[doc = "Falling-edge detection"]
FALL,
#[doc = "Both-edges detection"]
BOTH,
#[doc = "High-level detection"]
HIGH,
#[doc = "Low-level detection"]
LOW,
}
impl crate::ToBits<u8> for NMISENSE_A {
#[inline(always)]
fn _bits(&self) -> u8 {
match *self {
NMISENSE_A::NONE => 0,
NMISENSE_A::RISE => 1,
NMISENSE_A::FALL => 2,
NMISENSE_A::BOTH => 3,
NMISENSE_A::HIGH => 4,
NMISENSE_A::LOW => 5,
}
}
}
#[doc = "Reader of field `NMISENSE`"]
pub type NMISENSE_R = crate::R<u8, NMISENSE_A>;
impl NMISENSE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> crate::Variant<u8, NMISENSE_A> {
use crate::Variant::*;
match self.bits {
0 => Val(NMISENSE_A::NONE),
1 => Val(NMISENSE_A::RISE),
2 => Val(NMISENSE_A::FALL),
3 => Val(NMISENSE_A::BOTH),
4 => Val(NMISENSE_A::HIGH),
5 => Val(NMISENSE_A::LOW),
i => Res(i),
}
}
#[doc = "Checks if the value of the field is `NONE`"]
#[inline(always)]
pub fn is_none(&self) -> bool {
*self == NMISENSE_A::NONE
}
#[doc = "Checks if the value of the field is `RISE`"]
#[inline(always)]
pub fn is_rise(&self) -> bool {
*self == NMISENSE_A::RISE
}
#[doc = "Checks if the value of the field is `FALL`"]
#[inline(always)]
pub fn is_fall(&self) -> bool {
*self == NMISENSE_A::FALL
}
#[doc = "Checks if the value of the field is `BOTH`"]
#[inline(always)]
pub fn is_both(&self) -> bool {
*self == NMISENSE_A::BOTH
}
#[doc = "Checks if the value of the field is `HIGH`"]
#[inline(always)]
pub fn is_high(&self) -> bool {
*self == NMISENSE_A::HIGH
}
#[doc = "Checks if the value of the field is `LOW`"]
#[inline(always)]
pub fn is_low(&self) -> bool {
*self == NMISENSE_A::LOW
}
}
#[doc = "Write proxy for field `NMISENSE`"]
pub struct NMISENSE_W<'a> {
w: &'a mut W,
}
impl<'a> NMISENSE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: NMISENSE_A) -> &'a mut W {
use crate::ToBits;
unsafe { self.bits(variant._bits()) }
}
#[doc = "No detection"]
#[inline(always)]
pub fn none(self) -> &'a mut W {
self.variant(NMISENSE_A::NONE)
}
#[doc = "Rising-edge detection"]
#[inline(always)]
pub fn rise(self) -> &'a mut W {
self.variant(NMISENSE_A::RISE)
}
#[doc = "Falling-edge detection"]
#[inline(always)]
pub fn fall(self) -> &'a mut W {
self.variant(NMISENSE_A::FALL)
}
#[doc = "Both-edges detection"]
#[inline(always)]
pub fn both(self) -> &'a mut W {
self.variant(NMISENSE_A::BOTH)
}
#[doc = "High-level detection"]
#[inline(always)]
pub fn high(self) -> &'a mut W {
self.variant(NMISENSE_A::HIGH)
}
#[doc = "Low-level detection"]
#[inline(always)]
pub fn low(self) -> &'a mut W {
self.variant(NMISENSE_A::LOW)
}
#[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 & !0x07) | ((value as u8) & 0x07);
self.w
}
}
#[doc = "Reader of field `NMIFILTEN`"]
pub type NMIFILTEN_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `NMIFILTEN`"]
pub struct NMIFILTEN_W<'a> {
w: &'a mut W,
}
impl<'a> NMIFILTEN_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 << 3)) | (((value as u8) & 0x01) << 3);
self.w
}
}
#[doc = "Reader of field `NMIASYNCH`"]
pub type NMIASYNCH_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `NMIASYNCH`"]
pub struct NMIASYNCH_W<'a> {
w: &'a mut W,
}
impl<'a> NMIASYNCH_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 << 4)) | (((value as u8) & 0x01) << 4);
self.w
}
}
impl R {
#[doc = "Bits 0:2 - Non-Maskable Interrupt Sense Configuration"]
#[inline(always)]
pub fn nmisense(&self) -> NMISENSE_R {
NMISENSE_R::new((self.bits & 0x07) as u8)
}
#[doc = "Bit 3 - Non-Maskable Interrupt Filter Enable"]
#[inline(always)]
pub fn nmifilten(&self) -> NMIFILTEN_R {
NMIFILTEN_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 4 - Asynchronous Edge Detection Mode"]
#[inline(always)]
pub fn nmiasynch(&self) -> NMIASYNCH_R {
NMIASYNCH_R::new(((self.bits >> 4) & 0x01) != 0)
}
}
impl W {
#[doc = "Bits 0:2 - Non-Maskable Interrupt Sense Configuration"]
#[inline(always)]
pub fn nmisense(&mut self) -> NMISENSE_W {
NMISENSE_W { w: self }
}
#[doc = "Bit 3 - Non-Maskable Interrupt Filter Enable"]
#[inline(always)]
pub fn nmifilten(&mut self) -> NMIFILTEN_W {
NMIFILTEN_W { w: self }
}
#[doc = "Bit 4 - Asynchronous Edge Detection Mode"]
#[inline(always)]
pub fn nmiasynch(&mut self) -> NMIASYNCH_W {
NMIASYNCH_W { w: self }
}
}