#[doc = "Register `FAULT_DETECT` reader"]
pub type R = crate::R<FAULT_DETECT_SPEC>;
#[doc = "Register `FAULT_DETECT` writer"]
pub type W = crate::W<FAULT_DETECT_SPEC>;
#[doc = "Field `F_EN(0-2)` reader - "]
pub type F_EN_R = crate::BitReader;
#[doc = "Field `F_EN(0-2)` writer - "]
pub type F_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `F_POLE(0-2)` reader - Configures the polarity of the fault trigger on FAULT%s source from GPIO matrix.\\0: Level low\\1: Level high"]
pub type F_POLE_R = crate::BitReader;
#[doc = "Field `F_POLE(0-2)` writer - Configures the polarity of the fault trigger on FAULT%s source from GPIO matrix.\\0: Level low\\1: Level high"]
pub type F_POLE_W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `EVENT_F0` reader - "]
pub type EVENT_F0_R = crate::BitReader;
#[doc = "Field `EVENT_F1` reader - "]
pub type EVENT_F1_R = crate::BitReader;
#[doc = "Field `EVENT_F2` reader - "]
pub type EVENT_F2_R = crate::BitReader;
impl R {
#[doc = ""]
#[doc = ""]
#[doc = "<div class=\"warning\">`n` is number of field in register. `n == 0` corresponds to `F0_EN` field.</div>"]
#[inline(always)]
pub fn f_en(&self, n: u8) -> F_EN_R {
#[allow(clippy::no_effect)]
[(); 3][n as usize];
F_EN_R::new(((self.bits >> n) & 1) != 0)
}
#[doc = "Iterator for array of:"]
#[doc = ""]
#[inline(always)]
pub fn f_en_iter(&self) -> impl Iterator<Item = F_EN_R> + '_ {
(0..3).map(move |n| F_EN_R::new(((self.bits >> n) & 1) != 0))
}
#[doc = "Bit 0 - F0_EN"]
#[inline(always)]
pub fn f0_en(&self) -> F_EN_R {
F_EN_R::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - F1_EN"]
#[inline(always)]
pub fn f1_en(&self) -> F_EN_R {
F_EN_R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 2 - F2_EN"]
#[inline(always)]
pub fn f2_en(&self) -> F_EN_R {
F_EN_R::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Configures the polarity of the fault trigger on FAULT(0-2) source from GPIO matrix.\\0: Level low\\1: Level high"]
#[doc = ""]
#[doc = "<div class=\"warning\">`n` is number of field in register. `n == 0` corresponds to `F0_POLE` field.</div>"]
#[inline(always)]
pub fn f_pole(&self, n: u8) -> F_POLE_R {
#[allow(clippy::no_effect)]
[(); 3][n as usize];
F_POLE_R::new(((self.bits >> (n + 3)) & 1) != 0)
}
#[doc = "Iterator for array of:"]
#[doc = "Configures the polarity of the fault trigger on FAULT(0-2) source from GPIO matrix.\\0: Level low\\1: Level high"]
#[inline(always)]
pub fn f_pole_iter(&self) -> impl Iterator<Item = F_POLE_R> + '_ {
(0..3).map(move |n| F_POLE_R::new(((self.bits >> (n + 3)) & 1) != 0))
}
#[doc = "Bit 3 - Configures the polarity of the fault trigger on FAULT0 source from GPIO matrix.\\0: Level low\\1: Level high"]
#[inline(always)]
pub fn f0_pole(&self) -> F_POLE_R {
F_POLE_R::new(((self.bits >> 3) & 1) != 0)
}
#[doc = "Bit 4 - Configures the polarity of the fault trigger on FAULT1 source from GPIO matrix.\\0: Level low\\1: Level high"]
#[inline(always)]
pub fn f1_pole(&self) -> F_POLE_R {
F_POLE_R::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bit 5 - Configures the polarity of the fault trigger on FAULT2 source from GPIO matrix.\\0: Level low\\1: Level high"]
#[inline(always)]
pub fn f2_pole(&self) -> F_POLE_R {
F_POLE_R::new(((self.bits >> 5) & 1) != 0)
}
#[doc = "Bit 6"]
#[inline(always)]
pub fn event_f0(&self) -> EVENT_F0_R {
EVENT_F0_R::new(((self.bits >> 6) & 1) != 0)
}
#[doc = "Bit 7"]
#[inline(always)]
pub fn event_f1(&self) -> EVENT_F1_R {
EVENT_F1_R::new(((self.bits >> 7) & 1) != 0)
}
#[doc = "Bit 8"]
#[inline(always)]
pub fn event_f2(&self) -> EVENT_F2_R {
EVENT_F2_R::new(((self.bits >> 8) & 1) != 0)
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("FAULT_DETECT")
.field("f0_en", &self.f0_en())
.field("f1_en", &self.f1_en())
.field("f2_en", &self.f2_en())
.field("f0_pole", &self.f0_pole())
.field("f1_pole", &self.f1_pole())
.field("f2_pole", &self.f2_pole())
.field("event_f0", &self.event_f0())
.field("event_f1", &self.event_f1())
.field("event_f2", &self.event_f2())
.finish()
}
}
impl W {
#[doc = ""]
#[doc = ""]
#[doc = "<div class=\"warning\">`n` is number of field in register. `n == 0` corresponds to `F0_EN` field.</div>"]
#[inline(always)]
pub fn f_en(&mut self, n: u8) -> F_EN_W<'_, FAULT_DETECT_SPEC> {
#[allow(clippy::no_effect)]
[(); 3][n as usize];
F_EN_W::new(self, n)
}
#[doc = "Bit 0 - F0_EN"]
#[inline(always)]
pub fn f0_en(&mut self) -> F_EN_W<'_, FAULT_DETECT_SPEC> {
F_EN_W::new(self, 0)
}
#[doc = "Bit 1 - F1_EN"]
#[inline(always)]
pub fn f1_en(&mut self) -> F_EN_W<'_, FAULT_DETECT_SPEC> {
F_EN_W::new(self, 1)
}
#[doc = "Bit 2 - F2_EN"]
#[inline(always)]
pub fn f2_en(&mut self) -> F_EN_W<'_, FAULT_DETECT_SPEC> {
F_EN_W::new(self, 2)
}
#[doc = "Configures the polarity of the fault trigger on FAULT(0-2) source from GPIO matrix.\\0: Level low\\1: Level high"]
#[doc = ""]
#[doc = "<div class=\"warning\">`n` is number of field in register. `n == 0` corresponds to `F0_POLE` field.</div>"]
#[inline(always)]
pub fn f_pole(&mut self, n: u8) -> F_POLE_W<'_, FAULT_DETECT_SPEC> {
#[allow(clippy::no_effect)]
[(); 3][n as usize];
F_POLE_W::new(self, n + 3)
}
#[doc = "Bit 3 - Configures the polarity of the fault trigger on FAULT0 source from GPIO matrix.\\0: Level low\\1: Level high"]
#[inline(always)]
pub fn f0_pole(&mut self) -> F_POLE_W<'_, FAULT_DETECT_SPEC> {
F_POLE_W::new(self, 3)
}
#[doc = "Bit 4 - Configures the polarity of the fault trigger on FAULT1 source from GPIO matrix.\\0: Level low\\1: Level high"]
#[inline(always)]
pub fn f1_pole(&mut self) -> F_POLE_W<'_, FAULT_DETECT_SPEC> {
F_POLE_W::new(self, 4)
}
#[doc = "Bit 5 - Configures the polarity of the fault trigger on FAULT2 source from GPIO matrix.\\0: Level low\\1: Level high"]
#[inline(always)]
pub fn f2_pole(&mut self) -> F_POLE_W<'_, FAULT_DETECT_SPEC> {
F_POLE_W::new(self, 5)
}
}
#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`fault_detect::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`fault_detect::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct FAULT_DETECT_SPEC;
impl crate::RegisterSpec for FAULT_DETECT_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`fault_detect::R`](R) reader structure"]
impl crate::Readable for FAULT_DETECT_SPEC {}
#[doc = "`write(|w| ..)` method takes [`fault_detect::W`](W) writer structure"]
impl crate::Writable for FAULT_DETECT_SPEC {
type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets FAULT_DETECT to value 0"]
impl crate::Resettable for FAULT_DETECT_SPEC {}