#[doc = "Reader of register IC_DMA_CR"]
pub type R = crate::R<u32, super::IC_DMA_CR>;
#[doc = "Writer for register IC_DMA_CR"]
pub type W = crate::W<u32, super::IC_DMA_CR>;
#[doc = "Register IC_DMA_CR `reset()`'s with value 0"]
impl crate::ResetValue for super::IC_DMA_CR {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Transmit DMA Enable. This bit enables/disables the transmit FIFO DMA channel. Reset value: 0x0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TDMAE_A {
#[doc = "0: transmit FIFO DMA channel disabled"]
DISABLED = 0,
#[doc = "1: Transmit FIFO DMA channel enabled"]
ENABLED = 1,
}
impl From<TDMAE_A> for bool {
#[inline(always)]
fn from(variant: TDMAE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `TDMAE`"]
pub type TDMAE_R = crate::R<bool, TDMAE_A>;
impl TDMAE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> TDMAE_A {
match self.bits {
false => TDMAE_A::DISABLED,
true => TDMAE_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == TDMAE_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == TDMAE_A::ENABLED
}
}
#[doc = "Write proxy for field `TDMAE`"]
pub struct TDMAE_W<'a> {
w: &'a mut W,
}
impl<'a> TDMAE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: TDMAE_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "transmit FIFO DMA channel disabled"]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(TDMAE_A::DISABLED)
}
#[doc = "Transmit FIFO DMA channel enabled"]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(TDMAE_A::ENABLED)
}
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 1)) | (((value as u32) & 0x01) << 1);
self.w
}
}
#[doc = "Receive DMA Enable. This bit enables/disables the receive FIFO DMA channel. Reset value: 0x0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RDMAE_A {
#[doc = "0: Receive FIFO DMA channel disabled"]
DISABLED = 0,
#[doc = "1: Receive FIFO DMA channel enabled"]
ENABLED = 1,
}
impl From<RDMAE_A> for bool {
#[inline(always)]
fn from(variant: RDMAE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `RDMAE`"]
pub type RDMAE_R = crate::R<bool, RDMAE_A>;
impl RDMAE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> RDMAE_A {
match self.bits {
false => RDMAE_A::DISABLED,
true => RDMAE_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == RDMAE_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == RDMAE_A::ENABLED
}
}
#[doc = "Write proxy for field `RDMAE`"]
pub struct RDMAE_W<'a> {
w: &'a mut W,
}
impl<'a> RDMAE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: RDMAE_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Receive FIFO DMA channel disabled"]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(RDMAE_A::DISABLED)
}
#[doc = "Receive FIFO DMA channel enabled"]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(RDMAE_A::ENABLED)
}
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
self.w
}
}
impl R {
#[doc = "Bit 1 - Transmit DMA Enable. This bit enables/disables the transmit FIFO DMA channel. Reset value: 0x0"]
#[inline(always)]
pub fn tdmae(&self) -> TDMAE_R {
TDMAE_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 0 - Receive DMA Enable. This bit enables/disables the receive FIFO DMA channel. Reset value: 0x0"]
#[inline(always)]
pub fn rdmae(&self) -> RDMAE_R {
RDMAE_R::new((self.bits & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 1 - Transmit DMA Enable. This bit enables/disables the transmit FIFO DMA channel. Reset value: 0x0"]
#[inline(always)]
pub fn tdmae(&mut self) -> TDMAE_W {
TDMAE_W { w: self }
}
#[doc = "Bit 0 - Receive DMA Enable. This bit enables/disables the receive FIFO DMA channel. Reset value: 0x0"]
#[inline(always)]
pub fn rdmae(&mut self) -> RDMAE_W {
RDMAE_W { w: self }
}
}