#[doc = "Reader of register NVIC_ICPR"]
pub type R = crate::R<u32, super::NVIC_ICPR>;
#[doc = "Writer for register NVIC_ICPR"]
pub type W = crate::W<u32, super::NVIC_ICPR>;
#[doc = "Register NVIC_ICPR `reset()`'s with value 0"]
impl crate::ResetValue for super::NVIC_ICPR {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Interrupt Node Clear-pending\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CLRPEND_A {
#[doc = "0: Read: Interrupt node is not pending. Write: No effect."]
VALUE1,
#[doc = "1: Read: Interrupt node is pending. Write: Remove interrupt state from pending."]
VALUE2,
}
impl From<CLRPEND_A> for u32 {
#[inline(always)]
fn from(variant: CLRPEND_A) -> Self {
match variant {
CLRPEND_A::VALUE1 => 0,
CLRPEND_A::VALUE2 => 1,
}
}
}
#[doc = "Reader of field `CLRPEND`"]
pub type CLRPEND_R = crate::R<u32, CLRPEND_A>;
impl CLRPEND_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> crate::Variant<u32, CLRPEND_A> {
use crate::Variant::*;
match self.bits {
0 => Val(CLRPEND_A::VALUE1),
1 => Val(CLRPEND_A::VALUE2),
i => Res(i),
}
}
#[doc = "Checks if the value of the field is `VALUE1`"]
#[inline(always)]
pub fn is_value1(&self) -> bool {
*self == CLRPEND_A::VALUE1
}
#[doc = "Checks if the value of the field is `VALUE2`"]
#[inline(always)]
pub fn is_value2(&self) -> bool {
*self == CLRPEND_A::VALUE2
}
}
#[doc = "Write proxy for field `CLRPEND`"]
pub struct CLRPEND_W<'a> {
w: &'a mut W,
}
impl<'a> CLRPEND_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: CLRPEND_A) -> &'a mut W {
unsafe { self.bits(variant.into()) }
}
#[doc = "Read: Interrupt node is not pending. Write: No effect."]
#[inline(always)]
pub fn value1(self) -> &'a mut W {
self.variant(CLRPEND_A::VALUE1)
}
#[doc = "Read: Interrupt node is pending. Write: Remove interrupt state from pending."]
#[inline(always)]
pub fn value2(self) -> &'a mut W {
self.variant(CLRPEND_A::VALUE2)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u32) -> &'a mut W {
self.w.bits = (self.w.bits & !0xffff_ffff) | ((value as u32) & 0xffff_ffff);
self.w
}
}
impl R {
#[doc = "Bits 0:31 - Interrupt Node Clear-pending"]
#[inline(always)]
pub fn clrpend(&self) -> CLRPEND_R {
CLRPEND_R::new((self.bits & 0xffff_ffff) as u32)
}
}
impl W {
#[doc = "Bits 0:31 - Interrupt Node Clear-pending"]
#[inline(always)]
pub fn clrpend(&mut self) -> CLRPEND_W {
CLRPEND_W { w: self }
}
}