#[doc = "Register `LIMITH` reader"]
pub struct R(crate::R<LIMITH_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<LIMITH_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<LIMITH_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<LIMITH_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `LIMITH` writer"]
pub struct W(crate::W<LIMITH_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<LIMITH_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<LIMITH_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<LIMITH_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `LIMITH` reader - Last result is equal or above CH\\[n\\].LIMIT.HIGH"]
pub type LIMITH_R = crate::BitReader<LIMITH_A>;
#[doc = "Last result is equal or above CH\\[n\\].LIMIT.HIGH\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum LIMITH_A {
#[doc = "0: Event not generated"]
NOT_GENERATED = 0,
#[doc = "1: Event generated"]
GENERATED = 1,
}
impl From<LIMITH_A> for bool {
#[inline(always)]
fn from(variant: LIMITH_A) -> Self {
variant as u8 != 0
}
}
impl LIMITH_R {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> LIMITH_A {
match self.bits {
false => LIMITH_A::NOT_GENERATED,
true => LIMITH_A::GENERATED,
}
}
#[doc = "Checks if the value of the field is `NOT_GENERATED`"]
#[inline(always)]
pub fn is_not_generated(&self) -> bool {
*self == LIMITH_A::NOT_GENERATED
}
#[doc = "Checks if the value of the field is `GENERATED`"]
#[inline(always)]
pub fn is_generated(&self) -> bool {
*self == LIMITH_A::GENERATED
}
}
#[doc = "Field `LIMITH` writer - Last result is equal or above CH\\[n\\].LIMIT.HIGH"]
pub type LIMITH_W<'a, const O: u8> = crate::BitWriter<'a, u32, LIMITH_SPEC, LIMITH_A, O>;
impl<'a, const O: u8> LIMITH_W<'a, O> {
#[doc = "Event not generated"]
#[inline(always)]
pub fn not_generated(self) -> &'a mut W {
self.variant(LIMITH_A::NOT_GENERATED)
}
#[doc = "Event generated"]
#[inline(always)]
pub fn generated(self) -> &'a mut W {
self.variant(LIMITH_A::GENERATED)
}
}
impl R {
#[doc = "Bit 0 - Last result is equal or above CH\\[n\\].LIMIT.HIGH"]
#[inline(always)]
pub fn limith(&self) -> LIMITH_R {
LIMITH_R::new((self.bits & 1) != 0)
}
}
impl W {
#[doc = "Bit 0 - Last result is equal or above CH\\[n\\].LIMIT.HIGH"]
#[inline(always)]
pub fn limith(&mut self) -> LIMITH_W<0> {
LIMITH_W::new(self)
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "Description cluster: Last result is equal or above CH\\[n\\].LIMIT.HIGH\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [limith](index.html) module"]
pub struct LIMITH_SPEC;
impl crate::RegisterSpec for LIMITH_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [limith::R](R) reader structure"]
impl crate::Readable for LIMITH_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [limith::W](W) writer structure"]
impl crate::Writable for LIMITH_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets LIMITH to value 0"]
impl crate::Resettable for LIMITH_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}