#[doc = "Reader of register OAR1"]
pub type R = crate::R<u32, super::OAR1>;
#[doc = "Writer for register OAR1"]
pub type W = crate::W<u32, super::OAR1>;
#[doc = "Register OAR1 `reset()`'s with value 0"]
impl crate::ResetValue for super::OAR1 {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Reader of field `OA1`"]
pub type OA1_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `OA1`"]
pub struct OA1_W<'a> {
w: &'a mut W,
}
impl<'a> OA1_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub unsafe fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub unsafe fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !0x01) | ((value as u32) & 0x01);
self.w
}
}
#[doc = "Reader of field `OA11_7`"]
pub type OA11_7_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `OA11_7`"]
pub struct OA11_7_W<'a> {
w: &'a mut W,
}
impl<'a> OA11_7_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x7f << 1)) | (((value as u32) & 0x7f) << 1);
self.w
}
}
#[doc = "Reader of field `OA18_9`"]
pub type OA18_9_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `OA18_9`"]
pub struct OA18_9_W<'a> {
w: &'a mut W,
}
impl<'a> OA18_9_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x03 << 8)) | (((value as u32) & 0x03) << 8);
self.w
}
}
#[doc = "OA1MODE\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OA1MODE_A {
#[doc = "0: Own address 1 is a 7-bit address"]
BIT7 = 0,
#[doc = "1: Own address 1 is a 10-bit address"]
BIT10 = 1,
}
impl From<OA1MODE_A> for bool {
#[inline(always)]
fn from(variant: OA1MODE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `OA1MODE`"]
pub type OA1MODE_R = crate::R<bool, OA1MODE_A>;
impl OA1MODE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> OA1MODE_A {
match self.bits {
false => OA1MODE_A::BIT7,
true => OA1MODE_A::BIT10,
}
}
#[doc = "Checks if the value of the field is `BIT7`"]
#[inline(always)]
pub fn is_bit7(&self) -> bool {
*self == OA1MODE_A::BIT7
}
#[doc = "Checks if the value of the field is `BIT10`"]
#[inline(always)]
pub fn is_bit10(&self) -> bool {
*self == OA1MODE_A::BIT10
}
}
#[doc = "Write proxy for field `OA1MODE`"]
pub struct OA1MODE_W<'a> {
w: &'a mut W,
}
impl<'a> OA1MODE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: OA1MODE_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Own address 1 is a 7-bit address"]
#[inline(always)]
pub fn bit7(self) -> &'a mut W {
self.variant(OA1MODE_A::BIT7)
}
#[doc = "Own address 1 is a 10-bit address"]
#[inline(always)]
pub fn bit10(self) -> &'a mut W {
self.variant(OA1MODE_A::BIT10)
}
#[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 = "OA1EN\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OA1EN_A {
#[doc = "0: Own address 1 disabled. The received slave address OA1 is NACKed"]
DISABLED = 0,
#[doc = "1: Own address 1 enabled. The received slave address OA1 is ACKed"]
ENABLED = 1,
}
impl From<OA1EN_A> for bool {
#[inline(always)]
fn from(variant: OA1EN_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `OA1EN`"]
pub type OA1EN_R = crate::R<bool, OA1EN_A>;
impl OA1EN_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> OA1EN_A {
match self.bits {
false => OA1EN_A::DISABLED,
true => OA1EN_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == OA1EN_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == OA1EN_A::ENABLED
}
}
#[doc = "Write proxy for field `OA1EN`"]
pub struct OA1EN_W<'a> {
w: &'a mut W,
}
impl<'a> OA1EN_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: OA1EN_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Own address 1 disabled. The received slave address OA1 is NACKed"]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(OA1EN_A::DISABLED)
}
#[doc = "Own address 1 enabled. The received slave address OA1 is ACKed"]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(OA1EN_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 << 15)) | (((value as u32) & 0x01) << 15);
self.w
}
}
impl R {
#[doc = "Bit 0 - OA1"]
#[inline(always)]
pub fn oa1(&self) -> OA1_R {
OA1_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bits 1:7 - OA11_7"]
#[inline(always)]
pub fn oa11_7(&self) -> OA11_7_R {
OA11_7_R::new(((self.bits >> 1) & 0x7f) as u8)
}
#[doc = "Bits 8:9 - OA18_9"]
#[inline(always)]
pub fn oa18_9(&self) -> OA18_9_R {
OA18_9_R::new(((self.bits >> 8) & 0x03) as u8)
}
#[doc = "Bit 10 - OA1MODE"]
#[inline(always)]
pub fn oa1mode(&self) -> OA1MODE_R {
OA1MODE_R::new(((self.bits >> 10) & 0x01) != 0)
}
#[doc = "Bit 15 - OA1EN"]
#[inline(always)]
pub fn oa1en(&self) -> OA1EN_R {
OA1EN_R::new(((self.bits >> 15) & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 0 - OA1"]
#[inline(always)]
pub fn oa1(&mut self) -> OA1_W {
OA1_W { w: self }
}
#[doc = "Bits 1:7 - OA11_7"]
#[inline(always)]
pub fn oa11_7(&mut self) -> OA11_7_W {
OA11_7_W { w: self }
}
#[doc = "Bits 8:9 - OA18_9"]
#[inline(always)]
pub fn oa18_9(&mut self) -> OA18_9_W {
OA18_9_W { w: self }
}
#[doc = "Bit 10 - OA1MODE"]
#[inline(always)]
pub fn oa1mode(&mut self) -> OA1MODE_W {
OA1MODE_W { w: self }
}
#[doc = "Bit 15 - OA1EN"]
#[inline(always)]
pub fn oa1en(&mut self) -> OA1EN_W {
OA1EN_W { w: self }
}
}