#[doc = "Register `ACSR` reader"]
pub struct R(crate::R<ACSR_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<ACSR_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::convert::From<crate::R<ACSR_SPEC>> for R {
fn from(reader: crate::R<ACSR_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Analog Comparator Interrupt Mode Select bits\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum ACIS_A {
#[doc = "0: Interrupt on Toggle"]
VAL_0X00 = 0,
#[doc = "1: Reserved"]
VAL_0X01 = 1,
#[doc = "2: Interrupt on Falling Edge"]
VAL_0X02 = 2,
#[doc = "3: Interrupt on Rising Edge"]
VAL_0X03 = 3,
}
impl From<ACIS_A> for u8 {
#[inline(always)]
fn from(variant: ACIS_A) -> Self {
variant as _
}
}
#[doc = "Field `ACIS` reader - Analog Comparator Interrupt Mode Select bits"]
pub struct ACIS_R(crate::FieldReader<u8, ACIS_A>);
impl ACIS_R {
pub(crate) fn new(bits: u8) -> Self {
ACIS_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ACIS_A {
match self.bits {
0 => ACIS_A::VAL_0X00,
1 => ACIS_A::VAL_0X01,
2 => ACIS_A::VAL_0X02,
3 => ACIS_A::VAL_0X03,
_ => unreachable!(),
}
}
#[doc = "Checks if the value of the field is `VAL_0X00`"]
#[inline(always)]
pub fn is_val_0x00(&self) -> bool {
**self == ACIS_A::VAL_0X00
}
#[doc = "Checks if the value of the field is `VAL_0X01`"]
#[inline(always)]
pub fn is_val_0x01(&self) -> bool {
**self == ACIS_A::VAL_0X01
}
#[doc = "Checks if the value of the field is `VAL_0X02`"]
#[inline(always)]
pub fn is_val_0x02(&self) -> bool {
**self == ACIS_A::VAL_0X02
}
#[doc = "Checks if the value of the field is `VAL_0X03`"]
#[inline(always)]
pub fn is_val_0x03(&self) -> bool {
**self == ACIS_A::VAL_0X03
}
}
impl core::ops::Deref for ACIS_R {
type Target = crate::FieldReader<u8, ACIS_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ACIC` reader - Analog Comparator Input Capture Enable"]
pub struct ACIC_R(crate::FieldReader<bool, bool>);
impl ACIC_R {
pub(crate) fn new(bits: bool) -> Self {
ACIC_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for ACIC_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ACIE` reader - Analog Comparator Interrupt Enable"]
pub struct ACIE_R(crate::FieldReader<bool, bool>);
impl ACIE_R {
pub(crate) fn new(bits: bool) -> Self {
ACIE_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for ACIE_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ACI` reader - Analog Comparator Interrupt Flag"]
pub struct ACI_R(crate::FieldReader<bool, bool>);
impl ACI_R {
pub(crate) fn new(bits: bool) -> Self {
ACI_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for ACI_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ACO` reader - Analog Compare Output"]
pub struct ACO_R(crate::FieldReader<bool, bool>);
impl ACO_R {
pub(crate) fn new(bits: bool) -> Self {
ACO_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for ACO_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ACBG` reader - Analog Comparator Bandgap Select"]
pub struct ACBG_R(crate::FieldReader<bool, bool>);
impl ACBG_R {
pub(crate) fn new(bits: bool) -> Self {
ACBG_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for ACBG_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ACD` reader - Analog Comparator Disable"]
pub struct ACD_R(crate::FieldReader<bool, bool>);
impl ACD_R {
pub(crate) fn new(bits: bool) -> Self {
ACD_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for ACD_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl R {
#[doc = "Bits 0:1 - Analog Comparator Interrupt Mode Select bits"]
#[inline(always)]
pub fn acis(&self) -> ACIS_R {
ACIS_R::new((self.bits & 0x03) as u8)
}
#[doc = "Bit 2 - Analog Comparator Input Capture Enable"]
#[inline(always)]
pub fn acic(&self) -> ACIC_R {
ACIC_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 3 - Analog Comparator Interrupt Enable"]
#[inline(always)]
pub fn acie(&self) -> ACIE_R {
ACIE_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 4 - Analog Comparator Interrupt Flag"]
#[inline(always)]
pub fn aci(&self) -> ACI_R {
ACI_R::new(((self.bits >> 4) & 0x01) != 0)
}
#[doc = "Bit 5 - Analog Compare Output"]
#[inline(always)]
pub fn aco(&self) -> ACO_R {
ACO_R::new(((self.bits >> 5) & 0x01) != 0)
}
#[doc = "Bit 6 - Analog Comparator Bandgap Select"]
#[inline(always)]
pub fn acbg(&self) -> ACBG_R {
ACBG_R::new(((self.bits >> 6) & 0x01) != 0)
}
#[doc = "Bit 7 - Analog Comparator Disable"]
#[inline(always)]
pub fn acd(&self) -> ACD_R {
ACD_R::new(((self.bits >> 7) & 0x01) != 0)
}
}
#[doc = "Analog Comparator Control And Status Register\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [acsr](index.html) module"]
pub struct ACSR_SPEC;
impl crate::RegisterSpec for ACSR_SPEC {
type Ux = u8;
}
#[doc = "`read()` method returns [acsr::R](R) reader structure"]
impl crate::Readable for ACSR_SPEC {
type Reader = R;
}
#[doc = "`reset()` method sets ACSR to value 0"]
impl crate::Resettable for ACSR_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}