pub type R = crate::R<HISRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum FEIF4 {
NoError = 0,
Error = 1,
}
impl From<FEIF4> for bool {
#[inline(always)]
fn from(variant: FEIF4) -> Self {
variant as u8 != 0
}
}
pub type FEIF4_R = crate::BitReader<FEIF4>;
impl FEIF4_R {
#[inline(always)]
pub const fn variant(&self) -> FEIF4 {
match self.bits {
false => FEIF4::NoError,
true => FEIF4::Error,
}
}
#[inline(always)]
pub fn is_no_error(&self) -> bool {
*self == FEIF4::NoError
}
#[inline(always)]
pub fn is_error(&self) -> bool {
*self == FEIF4::Error
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DMEIF4 {
NoError = 0,
Error = 1,
}
impl From<DMEIF4> for bool {
#[inline(always)]
fn from(variant: DMEIF4) -> Self {
variant as u8 != 0
}
}
pub type DMEIF4_R = crate::BitReader<DMEIF4>;
impl DMEIF4_R {
#[inline(always)]
pub const fn variant(&self) -> DMEIF4 {
match self.bits {
false => DMEIF4::NoError,
true => DMEIF4::Error,
}
}
#[inline(always)]
pub fn is_no_error(&self) -> bool {
*self == DMEIF4::NoError
}
#[inline(always)]
pub fn is_error(&self) -> bool {
*self == DMEIF4::Error
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TEIF4 {
NoError = 0,
Error = 1,
}
impl From<TEIF4> for bool {
#[inline(always)]
fn from(variant: TEIF4) -> Self {
variant as u8 != 0
}
}
pub type TEIF4_R = crate::BitReader<TEIF4>;
impl TEIF4_R {
#[inline(always)]
pub const fn variant(&self) -> TEIF4 {
match self.bits {
false => TEIF4::NoError,
true => TEIF4::Error,
}
}
#[inline(always)]
pub fn is_no_error(&self) -> bool {
*self == TEIF4::NoError
}
#[inline(always)]
pub fn is_error(&self) -> bool {
*self == TEIF4::Error
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum HTIF4 {
NotHalf = 0,
Half = 1,
}
impl From<HTIF4> for bool {
#[inline(always)]
fn from(variant: HTIF4) -> Self {
variant as u8 != 0
}
}
pub type HTIF4_R = crate::BitReader<HTIF4>;
impl HTIF4_R {
#[inline(always)]
pub const fn variant(&self) -> HTIF4 {
match self.bits {
false => HTIF4::NotHalf,
true => HTIF4::Half,
}
}
#[inline(always)]
pub fn is_not_half(&self) -> bool {
*self == HTIF4::NotHalf
}
#[inline(always)]
pub fn is_half(&self) -> bool {
*self == HTIF4::Half
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TCIF4 {
NotComplete = 0,
Complete = 1,
}
impl From<TCIF4> for bool {
#[inline(always)]
fn from(variant: TCIF4) -> Self {
variant as u8 != 0
}
}
pub type TCIF4_R = crate::BitReader<TCIF4>;
impl TCIF4_R {
#[inline(always)]
pub const fn variant(&self) -> TCIF4 {
match self.bits {
false => TCIF4::NotComplete,
true => TCIF4::Complete,
}
}
#[inline(always)]
pub fn is_not_complete(&self) -> bool {
*self == TCIF4::NotComplete
}
#[inline(always)]
pub fn is_complete(&self) -> bool {
*self == TCIF4::Complete
}
}
pub use DMEIF4_R as DMEIF5_R;
pub use DMEIF4_R as DMEIF6_R;
pub use DMEIF4_R as DMEIF7_R;
pub use FEIF4_R as FEIF5_R;
pub use FEIF4_R as FEIF6_R;
pub use FEIF4_R as FEIF7_R;
pub use HTIF4_R as HTIF5_R;
pub use HTIF4_R as HTIF6_R;
pub use HTIF4_R as HTIF7_R;
pub use TCIF4_R as TCIF5_R;
pub use TCIF4_R as TCIF6_R;
pub use TCIF4_R as TCIF7_R;
pub use TEIF4_R as TEIF5_R;
pub use TEIF4_R as TEIF6_R;
pub use TEIF4_R as TEIF7_R;
impl R {
#[inline(always)]
pub fn feif4(&self) -> FEIF4_R {
FEIF4_R::new((self.bits & 1) != 0)
}
#[inline(always)]
pub fn dmeif4(&self) -> DMEIF4_R {
DMEIF4_R::new(((self.bits >> 2) & 1) != 0)
}
#[inline(always)]
pub fn teif4(&self) -> TEIF4_R {
TEIF4_R::new(((self.bits >> 3) & 1) != 0)
}
#[inline(always)]
pub fn htif4(&self) -> HTIF4_R {
HTIF4_R::new(((self.bits >> 4) & 1) != 0)
}
#[inline(always)]
pub fn tcif4(&self) -> TCIF4_R {
TCIF4_R::new(((self.bits >> 5) & 1) != 0)
}
#[inline(always)]
pub fn feif5(&self) -> FEIF5_R {
FEIF5_R::new(((self.bits >> 6) & 1) != 0)
}
#[inline(always)]
pub fn dmeif5(&self) -> DMEIF5_R {
DMEIF5_R::new(((self.bits >> 8) & 1) != 0)
}
#[inline(always)]
pub fn teif5(&self) -> TEIF5_R {
TEIF5_R::new(((self.bits >> 9) & 1) != 0)
}
#[inline(always)]
pub fn htif5(&self) -> HTIF5_R {
HTIF5_R::new(((self.bits >> 10) & 1) != 0)
}
#[inline(always)]
pub fn tcif5(&self) -> TCIF5_R {
TCIF5_R::new(((self.bits >> 11) & 1) != 0)
}
#[inline(always)]
pub fn feif6(&self) -> FEIF6_R {
FEIF6_R::new(((self.bits >> 16) & 1) != 0)
}
#[inline(always)]
pub fn dmeif6(&self) -> DMEIF6_R {
DMEIF6_R::new(((self.bits >> 18) & 1) != 0)
}
#[inline(always)]
pub fn teif6(&self) -> TEIF6_R {
TEIF6_R::new(((self.bits >> 19) & 1) != 0)
}
#[inline(always)]
pub fn htif6(&self) -> HTIF6_R {
HTIF6_R::new(((self.bits >> 20) & 1) != 0)
}
#[inline(always)]
pub fn tcif6(&self) -> TCIF6_R {
TCIF6_R::new(((self.bits >> 21) & 1) != 0)
}
#[inline(always)]
pub fn feif7(&self) -> FEIF7_R {
FEIF7_R::new(((self.bits >> 22) & 1) != 0)
}
#[inline(always)]
pub fn dmeif7(&self) -> DMEIF7_R {
DMEIF7_R::new(((self.bits >> 24) & 1) != 0)
}
#[inline(always)]
pub fn teif7(&self) -> TEIF7_R {
TEIF7_R::new(((self.bits >> 25) & 1) != 0)
}
#[inline(always)]
pub fn htif7(&self) -> HTIF7_R {
HTIF7_R::new(((self.bits >> 26) & 1) != 0)
}
#[inline(always)]
pub fn tcif7(&self) -> TCIF7_R {
TCIF7_R::new(((self.bits >> 27) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("HISR")
.field("tcif4", &self.tcif4())
.field("tcif7", &self.tcif7())
.field("htif4", &self.htif4())
.field("htif7", &self.htif7())
.field("teif4", &self.teif4())
.field("teif7", &self.teif7())
.field("dmeif4", &self.dmeif4())
.field("dmeif7", &self.dmeif7())
.field("feif4", &self.feif4())
.field("feif7", &self.feif7())
.field("tcif6", &self.tcif6())
.field("htif6", &self.htif6())
.field("teif6", &self.teif6())
.field("dmeif6", &self.dmeif6())
.field("feif6", &self.feif6())
.field("tcif5", &self.tcif5())
.field("htif5", &self.htif5())
.field("teif5", &self.teif5())
.field("dmeif5", &self.dmeif5())
.field("feif5", &self.feif5())
.finish()
}
}
pub struct HISRrs;
impl crate::RegisterSpec for HISRrs {
type Ux = u32;
}
impl crate::Readable for HISRrs {}
impl crate::Resettable for HISRrs {}