pub type R = crate::R<SRrs>;
pub type W = crate::W<SRrs>;
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum IRS {
DidNotOccur = 0,
Occurred = 1,
}
impl From<IRS> for bool {
#[inline(always)]
fn from(variant: IRS) -> Self {
variant as u8 != 0
}
}
pub type IRS_R = crate::BitReader<IRS>;
impl IRS_R {
#[inline(always)]
pub const fn variant(&self) -> IRS {
match self.bits {
false => IRS::DidNotOccur,
true => IRS::Occurred,
}
}
#[inline(always)]
pub fn is_did_not_occur(&self) -> bool {
*self == IRS::DidNotOccur
}
#[inline(always)]
pub fn is_occurred(&self) -> bool {
*self == IRS::Occurred
}
}
pub type IRS_W<'a, REG> = crate::BitWriter<'a, REG, IRS>;
impl<'a, REG> IRS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn did_not_occur(self) -> &'a mut crate::W<REG> {
self.variant(IRS::DidNotOccur)
}
#[inline(always)]
pub fn occurred(self) -> &'a mut crate::W<REG> {
self.variant(IRS::Occurred)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ILS {
DidNotOccur = 0,
Occurred = 1,
}
impl From<ILS> for bool {
#[inline(always)]
fn from(variant: ILS) -> Self {
variant as u8 != 0
}
}
pub type ILS_R = crate::BitReader<ILS>;
impl ILS_R {
#[inline(always)]
pub const fn variant(&self) -> ILS {
match self.bits {
false => ILS::DidNotOccur,
true => ILS::Occurred,
}
}
#[inline(always)]
pub fn is_did_not_occur(&self) -> bool {
*self == ILS::DidNotOccur
}
#[inline(always)]
pub fn is_occurred(&self) -> bool {
*self == ILS::Occurred
}
}
pub type ILS_W<'a, REG> = crate::BitWriter<'a, REG, ILS>;
impl<'a, REG> ILS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn did_not_occur(self) -> &'a mut crate::W<REG> {
self.variant(ILS::DidNotOccur)
}
#[inline(always)]
pub fn occurred(self) -> &'a mut crate::W<REG> {
self.variant(ILS::Occurred)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum IFS {
DidNotOccur = 0,
Occurred = 1,
}
impl From<IFS> for bool {
#[inline(always)]
fn from(variant: IFS) -> Self {
variant as u8 != 0
}
}
pub type IFS_R = crate::BitReader<IFS>;
impl IFS_R {
#[inline(always)]
pub const fn variant(&self) -> IFS {
match self.bits {
false => IFS::DidNotOccur,
true => IFS::Occurred,
}
}
#[inline(always)]
pub fn is_did_not_occur(&self) -> bool {
*self == IFS::DidNotOccur
}
#[inline(always)]
pub fn is_occurred(&self) -> bool {
*self == IFS::Occurred
}
}
pub type IFS_W<'a, REG> = crate::BitWriter<'a, REG, IFS>;
impl<'a, REG> IFS_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn did_not_occur(self) -> &'a mut crate::W<REG> {
self.variant(IFS::DidNotOccur)
}
#[inline(always)]
pub fn occurred(self) -> &'a mut crate::W<REG> {
self.variant(IFS::Occurred)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum IREN {
Disabled = 0,
Enabled = 1,
}
impl From<IREN> for bool {
#[inline(always)]
fn from(variant: IREN) -> Self {
variant as u8 != 0
}
}
pub type IREN_R = crate::BitReader<IREN>;
impl IREN_R {
#[inline(always)]
pub const fn variant(&self) -> IREN {
match self.bits {
false => IREN::Disabled,
true => IREN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == IREN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == IREN::Enabled
}
}
pub type IREN_W<'a, REG> = crate::BitWriter<'a, REG, IREN>;
impl<'a, REG> IREN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(IREN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(IREN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ILEN {
Disabled = 0,
Enabled = 1,
}
impl From<ILEN> for bool {
#[inline(always)]
fn from(variant: ILEN) -> Self {
variant as u8 != 0
}
}
pub type ILEN_R = crate::BitReader<ILEN>;
impl ILEN_R {
#[inline(always)]
pub const fn variant(&self) -> ILEN {
match self.bits {
false => ILEN::Disabled,
true => ILEN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == ILEN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == ILEN::Enabled
}
}
pub type ILEN_W<'a, REG> = crate::BitWriter<'a, REG, ILEN>;
impl<'a, REG> ILEN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(ILEN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(ILEN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum IFEN {
Disabled = 0,
Enabled = 1,
}
impl From<IFEN> for bool {
#[inline(always)]
fn from(variant: IFEN) -> Self {
variant as u8 != 0
}
}
pub type IFEN_R = crate::BitReader<IFEN>;
impl IFEN_R {
#[inline(always)]
pub const fn variant(&self) -> IFEN {
match self.bits {
false => IFEN::Disabled,
true => IFEN::Enabled,
}
}
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == IFEN::Disabled
}
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == IFEN::Enabled
}
}
pub type IFEN_W<'a, REG> = crate::BitWriter<'a, REG, IFEN>;
impl<'a, REG> IFEN_W<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[inline(always)]
pub fn disabled(self) -> &'a mut crate::W<REG> {
self.variant(IFEN::Disabled)
}
#[inline(always)]
pub fn enabled(self) -> &'a mut crate::W<REG> {
self.variant(IFEN::Enabled)
}
}
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum FEMPT {
NotEmpty = 0,
Empty = 1,
}
impl From<FEMPT> for bool {
#[inline(always)]
fn from(variant: FEMPT) -> Self {
variant as u8 != 0
}
}
pub type FEMPT_R = crate::BitReader<FEMPT>;
impl FEMPT_R {
#[inline(always)]
pub const fn variant(&self) -> FEMPT {
match self.bits {
false => FEMPT::NotEmpty,
true => FEMPT::Empty,
}
}
#[inline(always)]
pub fn is_not_empty(&self) -> bool {
*self == FEMPT::NotEmpty
}
#[inline(always)]
pub fn is_empty(&self) -> bool {
*self == FEMPT::Empty
}
}
impl R {
#[inline(always)]
pub fn irs(&self) -> IRS_R {
IRS_R::new((self.bits & 1) != 0)
}
#[inline(always)]
pub fn ils(&self) -> ILS_R {
ILS_R::new(((self.bits >> 1) & 1) != 0)
}
#[inline(always)]
pub fn ifs(&self) -> IFS_R {
IFS_R::new(((self.bits >> 2) & 1) != 0)
}
#[inline(always)]
pub fn iren(&self) -> IREN_R {
IREN_R::new(((self.bits >> 3) & 1) != 0)
}
#[inline(always)]
pub fn ilen(&self) -> ILEN_R {
ILEN_R::new(((self.bits >> 4) & 1) != 0)
}
#[inline(always)]
pub fn ifen(&self) -> IFEN_R {
IFEN_R::new(((self.bits >> 5) & 1) != 0)
}
#[inline(always)]
pub fn fempt(&self) -> FEMPT_R {
FEMPT_R::new(((self.bits >> 6) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("SR")
.field("fempt", &self.fempt())
.field("ifen", &self.ifen())
.field("ilen", &self.ilen())
.field("iren", &self.iren())
.field("ifs", &self.ifs())
.field("ils", &self.ils())
.field("irs", &self.irs())
.finish()
}
}
impl W {
#[inline(always)]
pub fn irs(&mut self) -> IRS_W<SRrs> {
IRS_W::new(self, 0)
}
#[inline(always)]
pub fn ils(&mut self) -> ILS_W<SRrs> {
ILS_W::new(self, 1)
}
#[inline(always)]
pub fn ifs(&mut self) -> IFS_W<SRrs> {
IFS_W::new(self, 2)
}
#[inline(always)]
pub fn iren(&mut self) -> IREN_W<SRrs> {
IREN_W::new(self, 3)
}
#[inline(always)]
pub fn ilen(&mut self) -> ILEN_W<SRrs> {
ILEN_W::new(self, 4)
}
#[inline(always)]
pub fn ifen(&mut self) -> IFEN_W<SRrs> {
IFEN_W::new(self, 5)
}
}
pub struct SRrs;
impl crate::RegisterSpec for SRrs {
type Ux = u32;
}
impl crate::Readable for SRrs {}
impl crate::Writable for SRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for SRrs {
const RESET_VALUE: u32 = 0x40;
}