#[doc = "Reader of register ERQ"] pub type R = crate::R; #[doc = "Writer for register ERQ"] pub type W = crate::W; #[doc = "Register ERQ `reset()`'s with value 0"] impl crate::ResetValue for super::ERQ { type Type = u32; #[inline(always)] fn reset_value() -> Self::Type { 0 } } #[doc = "Enable DMA Request 0\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ0_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ0_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ0`"] pub type ERQ0_R = crate::R; impl ERQ0_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ0_A { match self.bits { false => ERQ0_A::_0, true => ERQ0_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ0_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ0_A::_1 } } #[doc = "Write proxy for field `ERQ0`"] pub struct ERQ0_W<'a> { w: &'a mut W, } impl<'a> ERQ0_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ0_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ0_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ0_A::_1) } #[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 } } #[doc = "Enable DMA Request 1\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ1_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ1_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ1`"] pub type ERQ1_R = crate::R; impl ERQ1_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ1_A { match self.bits { false => ERQ1_A::_0, true => ERQ1_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ1_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ1_A::_1 } } #[doc = "Write proxy for field `ERQ1`"] pub struct ERQ1_W<'a> { w: &'a mut W, } impl<'a> ERQ1_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ1_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ1_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ1_A::_1) } #[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 = "Enable DMA Request 2\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ2_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ2_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ2`"] pub type ERQ2_R = crate::R; impl ERQ2_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ2_A { match self.bits { false => ERQ2_A::_0, true => ERQ2_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ2_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ2_A::_1 } } #[doc = "Write proxy for field `ERQ2`"] pub struct ERQ2_W<'a> { w: &'a mut W, } impl<'a> ERQ2_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ2_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ2_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ2_A::_1) } #[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 << 2)) | (((value as u32) & 0x01) << 2); self.w } } #[doc = "Enable DMA Request 3\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ3_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ3_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ3`"] pub type ERQ3_R = crate::R; impl ERQ3_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ3_A { match self.bits { false => ERQ3_A::_0, true => ERQ3_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ3_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ3_A::_1 } } #[doc = "Write proxy for field `ERQ3`"] pub struct ERQ3_W<'a> { w: &'a mut W, } impl<'a> ERQ3_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ3_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ3_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ3_A::_1) } #[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 << 3)) | (((value as u32) & 0x01) << 3); self.w } } #[doc = "Enable DMA Request 4\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ4_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ4_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ4`"] pub type ERQ4_R = crate::R; impl ERQ4_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ4_A { match self.bits { false => ERQ4_A::_0, true => ERQ4_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ4_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ4_A::_1 } } #[doc = "Write proxy for field `ERQ4`"] pub struct ERQ4_W<'a> { w: &'a mut W, } impl<'a> ERQ4_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ4_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ4_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ4_A::_1) } #[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 << 4)) | (((value as u32) & 0x01) << 4); self.w } } #[doc = "Enable DMA Request 5\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ5_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ5_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ5`"] pub type ERQ5_R = crate::R; impl ERQ5_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ5_A { match self.bits { false => ERQ5_A::_0, true => ERQ5_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ5_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ5_A::_1 } } #[doc = "Write proxy for field `ERQ5`"] pub struct ERQ5_W<'a> { w: &'a mut W, } impl<'a> ERQ5_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ5_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ5_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ5_A::_1) } #[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 << 5)) | (((value as u32) & 0x01) << 5); self.w } } #[doc = "Enable DMA Request 6\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ6_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ6_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ6`"] pub type ERQ6_R = crate::R; impl ERQ6_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ6_A { match self.bits { false => ERQ6_A::_0, true => ERQ6_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ6_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ6_A::_1 } } #[doc = "Write proxy for field `ERQ6`"] pub struct ERQ6_W<'a> { w: &'a mut W, } impl<'a> ERQ6_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ6_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ6_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ6_A::_1) } #[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 << 6)) | (((value as u32) & 0x01) << 6); self.w } } #[doc = "Enable DMA Request 7\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ7_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ7_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ7`"] pub type ERQ7_R = crate::R; impl ERQ7_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ7_A { match self.bits { false => ERQ7_A::_0, true => ERQ7_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ7_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ7_A::_1 } } #[doc = "Write proxy for field `ERQ7`"] pub struct ERQ7_W<'a> { w: &'a mut W, } impl<'a> ERQ7_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ7_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ7_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ7_A::_1) } #[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 << 7)) | (((value as u32) & 0x01) << 7); self.w } } #[doc = "Enable DMA Request 8\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ8_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ8_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ8`"] pub type ERQ8_R = crate::R; impl ERQ8_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ8_A { match self.bits { false => ERQ8_A::_0, true => ERQ8_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ8_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ8_A::_1 } } #[doc = "Write proxy for field `ERQ8`"] pub struct ERQ8_W<'a> { w: &'a mut W, } impl<'a> ERQ8_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ8_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ8_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ8_A::_1) } #[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 << 8)) | (((value as u32) & 0x01) << 8); self.w } } #[doc = "Enable DMA Request 9\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ9_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ9_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ9`"] pub type ERQ9_R = crate::R; impl ERQ9_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ9_A { match self.bits { false => ERQ9_A::_0, true => ERQ9_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ9_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ9_A::_1 } } #[doc = "Write proxy for field `ERQ9`"] pub struct ERQ9_W<'a> { w: &'a mut W, } impl<'a> ERQ9_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ9_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ9_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ9_A::_1) } #[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 << 9)) | (((value as u32) & 0x01) << 9); self.w } } #[doc = "Enable DMA Request 10\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ10_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ10_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ10`"] pub type ERQ10_R = crate::R; impl ERQ10_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ10_A { match self.bits { false => ERQ10_A::_0, true => ERQ10_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ10_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ10_A::_1 } } #[doc = "Write proxy for field `ERQ10`"] pub struct ERQ10_W<'a> { w: &'a mut W, } impl<'a> ERQ10_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ10_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ10_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ10_A::_1) } #[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 << 10)) | (((value as u32) & 0x01) << 10); self.w } } #[doc = "Enable DMA Request 11\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ11_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ11_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ11`"] pub type ERQ11_R = crate::R; impl ERQ11_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ11_A { match self.bits { false => ERQ11_A::_0, true => ERQ11_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ11_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ11_A::_1 } } #[doc = "Write proxy for field `ERQ11`"] pub struct ERQ11_W<'a> { w: &'a mut W, } impl<'a> ERQ11_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ11_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ11_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ11_A::_1) } #[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 << 11)) | (((value as u32) & 0x01) << 11); self.w } } #[doc = "Enable DMA Request 12\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ12_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ12_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ12`"] pub type ERQ12_R = crate::R; impl ERQ12_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ12_A { match self.bits { false => ERQ12_A::_0, true => ERQ12_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ12_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ12_A::_1 } } #[doc = "Write proxy for field `ERQ12`"] pub struct ERQ12_W<'a> { w: &'a mut W, } impl<'a> ERQ12_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ12_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ12_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ12_A::_1) } #[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 << 12)) | (((value as u32) & 0x01) << 12); self.w } } #[doc = "Enable DMA Request 13\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ13_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ13_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ13`"] pub type ERQ13_R = crate::R; impl ERQ13_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ13_A { match self.bits { false => ERQ13_A::_0, true => ERQ13_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ13_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ13_A::_1 } } #[doc = "Write proxy for field `ERQ13`"] pub struct ERQ13_W<'a> { w: &'a mut W, } impl<'a> ERQ13_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ13_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ13_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ13_A::_1) } #[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 << 13)) | (((value as u32) & 0x01) << 13); self.w } } #[doc = "Enable DMA Request 14\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ14_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ14_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ14`"] pub type ERQ14_R = crate::R; impl ERQ14_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ14_A { match self.bits { false => ERQ14_A::_0, true => ERQ14_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ14_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ14_A::_1 } } #[doc = "Write proxy for field `ERQ14`"] pub struct ERQ14_W<'a> { w: &'a mut W, } impl<'a> ERQ14_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ14_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ14_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ14_A::_1) } #[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 << 14)) | (((value as u32) & 0x01) << 14); self.w } } #[doc = "Enable DMA Request 15\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum ERQ15_A { #[doc = "0: The DMA request signal for the corresponding channel is disabled"] _0 = 0, #[doc = "1: The DMA request signal for the corresponding channel is enabled"] _1 = 1, } impl From for bool { #[inline(always)] fn from(variant: ERQ15_A) -> Self { variant as u8 != 0 } } #[doc = "Reader of field `ERQ15`"] pub type ERQ15_R = crate::R; impl ERQ15_R { #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> ERQ15_A { match self.bits { false => ERQ15_A::_0, true => ERQ15_A::_1, } } #[doc = "Checks if the value of the field is `_0`"] #[inline(always)] pub fn is_0(&self) -> bool { *self == ERQ15_A::_0 } #[doc = "Checks if the value of the field is `_1`"] #[inline(always)] pub fn is_1(&self) -> bool { *self == ERQ15_A::_1 } } #[doc = "Write proxy for field `ERQ15`"] pub struct ERQ15_W<'a> { w: &'a mut W, } impl<'a> ERQ15_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: ERQ15_A) -> &'a mut W { { self.bit(variant.into()) } } #[doc = "The DMA request signal for the corresponding channel is disabled"] #[inline(always)] pub fn _0(self) -> &'a mut W { self.variant(ERQ15_A::_0) } #[doc = "The DMA request signal for the corresponding channel is enabled"] #[inline(always)] pub fn _1(self) -> &'a mut W { self.variant(ERQ15_A::_1) } #[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 << 15)) | (((value as u32) & 0x01) << 15); self.w } } impl R { #[doc = "Bit 0 - Enable DMA Request 0"] #[inline(always)] pub fn erq0(&self) -> ERQ0_R { ERQ0_R::new((self.bits & 0x01) != 0) } #[doc = "Bit 1 - Enable DMA Request 1"] #[inline(always)] pub fn erq1(&self) -> ERQ1_R { ERQ1_R::new(((self.bits >> 1) & 0x01) != 0) } #[doc = "Bit 2 - Enable DMA Request 2"] #[inline(always)] pub fn erq2(&self) -> ERQ2_R { ERQ2_R::new(((self.bits >> 2) & 0x01) != 0) } #[doc = "Bit 3 - Enable DMA Request 3"] #[inline(always)] pub fn erq3(&self) -> ERQ3_R { ERQ3_R::new(((self.bits >> 3) & 0x01) != 0) } #[doc = "Bit 4 - Enable DMA Request 4"] #[inline(always)] pub fn erq4(&self) -> ERQ4_R { ERQ4_R::new(((self.bits >> 4) & 0x01) != 0) } #[doc = "Bit 5 - Enable DMA Request 5"] #[inline(always)] pub fn erq5(&self) -> ERQ5_R { ERQ5_R::new(((self.bits >> 5) & 0x01) != 0) } #[doc = "Bit 6 - Enable DMA Request 6"] #[inline(always)] pub fn erq6(&self) -> ERQ6_R { ERQ6_R::new(((self.bits >> 6) & 0x01) != 0) } #[doc = "Bit 7 - Enable DMA Request 7"] #[inline(always)] pub fn erq7(&self) -> ERQ7_R { ERQ7_R::new(((self.bits >> 7) & 0x01) != 0) } #[doc = "Bit 8 - Enable DMA Request 8"] #[inline(always)] pub fn erq8(&self) -> ERQ8_R { ERQ8_R::new(((self.bits >> 8) & 0x01) != 0) } #[doc = "Bit 9 - Enable DMA Request 9"] #[inline(always)] pub fn erq9(&self) -> ERQ9_R { ERQ9_R::new(((self.bits >> 9) & 0x01) != 0) } #[doc = "Bit 10 - Enable DMA Request 10"] #[inline(always)] pub fn erq10(&self) -> ERQ10_R { ERQ10_R::new(((self.bits >> 10) & 0x01) != 0) } #[doc = "Bit 11 - Enable DMA Request 11"] #[inline(always)] pub fn erq11(&self) -> ERQ11_R { ERQ11_R::new(((self.bits >> 11) & 0x01) != 0) } #[doc = "Bit 12 - Enable DMA Request 12"] #[inline(always)] pub fn erq12(&self) -> ERQ12_R { ERQ12_R::new(((self.bits >> 12) & 0x01) != 0) } #[doc = "Bit 13 - Enable DMA Request 13"] #[inline(always)] pub fn erq13(&self) -> ERQ13_R { ERQ13_R::new(((self.bits >> 13) & 0x01) != 0) } #[doc = "Bit 14 - Enable DMA Request 14"] #[inline(always)] pub fn erq14(&self) -> ERQ14_R { ERQ14_R::new(((self.bits >> 14) & 0x01) != 0) } #[doc = "Bit 15 - Enable DMA Request 15"] #[inline(always)] pub fn erq15(&self) -> ERQ15_R { ERQ15_R::new(((self.bits >> 15) & 0x01) != 0) } } impl W { #[doc = "Bit 0 - Enable DMA Request 0"] #[inline(always)] pub fn erq0(&mut self) -> ERQ0_W { ERQ0_W { w: self } } #[doc = "Bit 1 - Enable DMA Request 1"] #[inline(always)] pub fn erq1(&mut self) -> ERQ1_W { ERQ1_W { w: self } } #[doc = "Bit 2 - Enable DMA Request 2"] #[inline(always)] pub fn erq2(&mut self) -> ERQ2_W { ERQ2_W { w: self } } #[doc = "Bit 3 - Enable DMA Request 3"] #[inline(always)] pub fn erq3(&mut self) -> ERQ3_W { ERQ3_W { w: self } } #[doc = "Bit 4 - Enable DMA Request 4"] #[inline(always)] pub fn erq4(&mut self) -> ERQ4_W { ERQ4_W { w: self } } #[doc = "Bit 5 - Enable DMA Request 5"] #[inline(always)] pub fn erq5(&mut self) -> ERQ5_W { ERQ5_W { w: self } } #[doc = "Bit 6 - Enable DMA Request 6"] #[inline(always)] pub fn erq6(&mut self) -> ERQ6_W { ERQ6_W { w: self } } #[doc = "Bit 7 - Enable DMA Request 7"] #[inline(always)] pub fn erq7(&mut self) -> ERQ7_W { ERQ7_W { w: self } } #[doc = "Bit 8 - Enable DMA Request 8"] #[inline(always)] pub fn erq8(&mut self) -> ERQ8_W { ERQ8_W { w: self } } #[doc = "Bit 9 - Enable DMA Request 9"] #[inline(always)] pub fn erq9(&mut self) -> ERQ9_W { ERQ9_W { w: self } } #[doc = "Bit 10 - Enable DMA Request 10"] #[inline(always)] pub fn erq10(&mut self) -> ERQ10_W { ERQ10_W { w: self } } #[doc = "Bit 11 - Enable DMA Request 11"] #[inline(always)] pub fn erq11(&mut self) -> ERQ11_W { ERQ11_W { w: self } } #[doc = "Bit 12 - Enable DMA Request 12"] #[inline(always)] pub fn erq12(&mut self) -> ERQ12_W { ERQ12_W { w: self } } #[doc = "Bit 13 - Enable DMA Request 13"] #[inline(always)] pub fn erq13(&mut self) -> ERQ13_W { ERQ13_W { w: self } } #[doc = "Bit 14 - Enable DMA Request 14"] #[inline(always)] pub fn erq14(&mut self) -> ERQ14_W { ERQ14_W { w: self } } #[doc = "Bit 15 - Enable DMA Request 15"] #[inline(always)] pub fn erq15(&mut self) -> ERQ15_W { ERQ15_W { w: self } } }