#[doc = "Register `RXADDRESSES` reader"]
pub struct R(crate::R<RXADDRESSES_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<RXADDRESSES_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<RXADDRESSES_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<RXADDRESSES_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `RXADDRESSES` writer"]
pub struct W(crate::W<RXADDRESSES_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<RXADDRESSES_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<RXADDRESSES_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<RXADDRESSES_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Enable reception on logical address 0. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR0_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR0_A> for bool {
#[inline(always)]
fn from(variant: ADDR0_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR0` reader - Enable reception on logical address 0. Decision point: START task."]
pub struct ADDR0_R(crate::FieldReader<bool, ADDR0_A>);
impl ADDR0_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR0_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR0_A {
match self.bits {
false => ADDR0_A::DISABLED,
true => ADDR0_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR0_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR0_A::ENABLED
}
}
impl core::ops::Deref for ADDR0_R {
type Target = crate::FieldReader<bool, ADDR0_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR0` writer - Enable reception on logical address 0. Decision point: START task."]
pub struct ADDR0_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR0_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR0_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR0_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR0_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
}
}
#[doc = "Enable reception on logical address 1. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR1_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR1_A> for bool {
#[inline(always)]
fn from(variant: ADDR1_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR1` reader - Enable reception on logical address 1. Decision point: START task."]
pub struct ADDR1_R(crate::FieldReader<bool, ADDR1_A>);
impl ADDR1_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR1_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR1_A {
match self.bits {
false => ADDR1_A::DISABLED,
true => ADDR1_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR1_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR1_A::ENABLED
}
}
impl core::ops::Deref for ADDR1_R {
type Target = crate::FieldReader<bool, ADDR1_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR1` writer - Enable reception on logical address 1. Decision point: START task."]
pub struct ADDR1_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR1_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR1_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR1_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR1_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 = "Enable reception on logical address 2. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR2_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR2_A> for bool {
#[inline(always)]
fn from(variant: ADDR2_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR2` reader - Enable reception on logical address 2. Decision point: START task."]
pub struct ADDR2_R(crate::FieldReader<bool, ADDR2_A>);
impl ADDR2_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR2_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR2_A {
match self.bits {
false => ADDR2_A::DISABLED,
true => ADDR2_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR2_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR2_A::ENABLED
}
}
impl core::ops::Deref for ADDR2_R {
type Target = crate::FieldReader<bool, ADDR2_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR2` writer - Enable reception on logical address 2. Decision point: START task."]
pub struct ADDR2_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR2_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR2_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR2_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR2_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 << 2)) | ((value as u32 & 0x01) << 2);
self.w
}
}
#[doc = "Enable reception on logical address 3. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR3_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR3_A> for bool {
#[inline(always)]
fn from(variant: ADDR3_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR3` reader - Enable reception on logical address 3. Decision point: START task."]
pub struct ADDR3_R(crate::FieldReader<bool, ADDR3_A>);
impl ADDR3_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR3_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR3_A {
match self.bits {
false => ADDR3_A::DISABLED,
true => ADDR3_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR3_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR3_A::ENABLED
}
}
impl core::ops::Deref for ADDR3_R {
type Target = crate::FieldReader<bool, ADDR3_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR3` writer - Enable reception on logical address 3. Decision point: START task."]
pub struct ADDR3_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR3_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR3_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR3_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR3_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 << 3)) | ((value as u32 & 0x01) << 3);
self.w
}
}
#[doc = "Enable reception on logical address 4. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR4_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR4_A> for bool {
#[inline(always)]
fn from(variant: ADDR4_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR4` reader - Enable reception on logical address 4. Decision point: START task."]
pub struct ADDR4_R(crate::FieldReader<bool, ADDR4_A>);
impl ADDR4_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR4_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR4_A {
match self.bits {
false => ADDR4_A::DISABLED,
true => ADDR4_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR4_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR4_A::ENABLED
}
}
impl core::ops::Deref for ADDR4_R {
type Target = crate::FieldReader<bool, ADDR4_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR4` writer - Enable reception on logical address 4. Decision point: START task."]
pub struct ADDR4_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR4_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR4_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR4_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR4_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 << 4)) | ((value as u32 & 0x01) << 4);
self.w
}
}
#[doc = "Enable reception on logical address 5. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR5_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR5_A> for bool {
#[inline(always)]
fn from(variant: ADDR5_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR5` reader - Enable reception on logical address 5. Decision point: START task."]
pub struct ADDR5_R(crate::FieldReader<bool, ADDR5_A>);
impl ADDR5_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR5_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR5_A {
match self.bits {
false => ADDR5_A::DISABLED,
true => ADDR5_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR5_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR5_A::ENABLED
}
}
impl core::ops::Deref for ADDR5_R {
type Target = crate::FieldReader<bool, ADDR5_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR5` writer - Enable reception on logical address 5. Decision point: START task."]
pub struct ADDR5_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR5_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR5_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR5_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR5_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 << 5)) | ((value as u32 & 0x01) << 5);
self.w
}
}
#[doc = "Enable reception on logical address 6. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR6_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR6_A> for bool {
#[inline(always)]
fn from(variant: ADDR6_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR6` reader - Enable reception on logical address 6. Decision point: START task."]
pub struct ADDR6_R(crate::FieldReader<bool, ADDR6_A>);
impl ADDR6_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR6_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR6_A {
match self.bits {
false => ADDR6_A::DISABLED,
true => ADDR6_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR6_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR6_A::ENABLED
}
}
impl core::ops::Deref for ADDR6_R {
type Target = crate::FieldReader<bool, ADDR6_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR6` writer - Enable reception on logical address 6. Decision point: START task."]
pub struct ADDR6_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR6_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR6_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR6_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR6_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 << 6)) | ((value as u32 & 0x01) << 6);
self.w
}
}
#[doc = "Enable reception on logical address 7. Decision point: START task.\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ADDR7_A {
#[doc = "0: Reception disabled."]
DISABLED = 0,
#[doc = "1: Reception enabled."]
ENABLED = 1,
}
impl From<ADDR7_A> for bool {
#[inline(always)]
fn from(variant: ADDR7_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `ADDR7` reader - Enable reception on logical address 7. Decision point: START task."]
pub struct ADDR7_R(crate::FieldReader<bool, ADDR7_A>);
impl ADDR7_R {
pub(crate) fn new(bits: bool) -> Self {
ADDR7_R(crate::FieldReader::new(bits))
}
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> ADDR7_A {
match self.bits {
false => ADDR7_A::DISABLED,
true => ADDR7_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
**self == ADDR7_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
**self == ADDR7_A::ENABLED
}
}
impl core::ops::Deref for ADDR7_R {
type Target = crate::FieldReader<bool, ADDR7_A>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ADDR7` writer - Enable reception on logical address 7. Decision point: START task."]
pub struct ADDR7_W<'a> {
w: &'a mut W,
}
impl<'a> ADDR7_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: ADDR7_A) -> &'a mut W {
self.bit(variant.into())
}
#[doc = "Reception disabled."]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(ADDR7_A::DISABLED)
}
#[doc = "Reception enabled."]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(ADDR7_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 << 7)) | ((value as u32 & 0x01) << 7);
self.w
}
}
impl R {
#[doc = "Bit 0 - Enable reception on logical address 0. Decision point: START task."]
#[inline(always)]
pub fn addr0(&self) -> ADDR0_R {
ADDR0_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bit 1 - Enable reception on logical address 1. Decision point: START task."]
#[inline(always)]
pub fn addr1(&self) -> ADDR1_R {
ADDR1_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - Enable reception on logical address 2. Decision point: START task."]
#[inline(always)]
pub fn addr2(&self) -> ADDR2_R {
ADDR2_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 3 - Enable reception on logical address 3. Decision point: START task."]
#[inline(always)]
pub fn addr3(&self) -> ADDR3_R {
ADDR3_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 4 - Enable reception on logical address 4. Decision point: START task."]
#[inline(always)]
pub fn addr4(&self) -> ADDR4_R {
ADDR4_R::new(((self.bits >> 4) & 0x01) != 0)
}
#[doc = "Bit 5 - Enable reception on logical address 5. Decision point: START task."]
#[inline(always)]
pub fn addr5(&self) -> ADDR5_R {
ADDR5_R::new(((self.bits >> 5) & 0x01) != 0)
}
#[doc = "Bit 6 - Enable reception on logical address 6. Decision point: START task."]
#[inline(always)]
pub fn addr6(&self) -> ADDR6_R {
ADDR6_R::new(((self.bits >> 6) & 0x01) != 0)
}
#[doc = "Bit 7 - Enable reception on logical address 7. Decision point: START task."]
#[inline(always)]
pub fn addr7(&self) -> ADDR7_R {
ADDR7_R::new(((self.bits >> 7) & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 0 - Enable reception on logical address 0. Decision point: START task."]
#[inline(always)]
pub fn addr0(&mut self) -> ADDR0_W {
ADDR0_W { w: self }
}
#[doc = "Bit 1 - Enable reception on logical address 1. Decision point: START task."]
#[inline(always)]
pub fn addr1(&mut self) -> ADDR1_W {
ADDR1_W { w: self }
}
#[doc = "Bit 2 - Enable reception on logical address 2. Decision point: START task."]
#[inline(always)]
pub fn addr2(&mut self) -> ADDR2_W {
ADDR2_W { w: self }
}
#[doc = "Bit 3 - Enable reception on logical address 3. Decision point: START task."]
#[inline(always)]
pub fn addr3(&mut self) -> ADDR3_W {
ADDR3_W { w: self }
}
#[doc = "Bit 4 - Enable reception on logical address 4. Decision point: START task."]
#[inline(always)]
pub fn addr4(&mut self) -> ADDR4_W {
ADDR4_W { w: self }
}
#[doc = "Bit 5 - Enable reception on logical address 5. Decision point: START task."]
#[inline(always)]
pub fn addr5(&mut self) -> ADDR5_W {
ADDR5_W { w: self }
}
#[doc = "Bit 6 - Enable reception on logical address 6. Decision point: START task."]
#[inline(always)]
pub fn addr6(&mut self) -> ADDR6_W {
ADDR6_W { w: self }
}
#[doc = "Bit 7 - Enable reception on logical address 7. Decision point: START task."]
#[inline(always)]
pub fn addr7(&mut self) -> ADDR7_W {
ADDR7_W { w: self }
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "Receive address select.\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [rxaddresses](index.html) module"]
pub struct RXADDRESSES_SPEC;
impl crate::RegisterSpec for RXADDRESSES_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [rxaddresses::R](R) reader structure"]
impl crate::Readable for RXADDRESSES_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [rxaddresses::W](W) writer structure"]
impl crate::Writable for RXADDRESSES_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets RXADDRESSES to value 0"]
impl crate::Resettable for RXADDRESSES_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}