#[doc = "Reader of register DADDR"]
pub type R = crate::R<u32, super::DADDR>;
#[doc = "Writer for register DADDR"]
pub type W = crate::W<u32, super::DADDR>;
#[doc = "Register DADDR `reset()`'s with value 0"]
impl crate::ResetValue for super::DADDR {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Reader of field `ADD`"]
pub type ADD_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `ADD`"]
pub struct ADD_W<'a> {
w: &'a mut W,
}
impl<'a> ADD_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !0x7f) | ((value as u32) & 0x7f);
self.w
}
}
#[doc = "Enable function\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum EF_A {
#[doc = "0: USB device disabled"]
DISABLED,
#[doc = "1: USB device enabled"]
ENABLED,
}
impl From<EF_A> for bool {
#[inline(always)]
fn from(variant: EF_A) -> Self {
match variant {
EF_A::DISABLED => false,
EF_A::ENABLED => true,
}
}
}
#[doc = "Reader of field `EF`"]
pub type EF_R = crate::R<bool, EF_A>;
impl EF_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> EF_A {
match self.bits {
false => EF_A::DISABLED,
true => EF_A::ENABLED,
}
}
#[doc = "Checks if the value of the field is `DISABLED`"]
#[inline(always)]
pub fn is_disabled(&self) -> bool {
*self == EF_A::DISABLED
}
#[doc = "Checks if the value of the field is `ENABLED`"]
#[inline(always)]
pub fn is_enabled(&self) -> bool {
*self == EF_A::ENABLED
}
}
#[doc = "Write proxy for field `EF`"]
pub struct EF_W<'a> {
w: &'a mut W,
}
impl<'a> EF_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: EF_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "USB device disabled"]
#[inline(always)]
pub fn disabled(self) -> &'a mut W {
self.variant(EF_A::DISABLED)
}
#[doc = "USB device enabled"]
#[inline(always)]
pub fn enabled(self) -> &'a mut W {
self.variant(EF_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 = "Bits 0:6 - Device address"]
#[inline(always)]
pub fn add(&self) -> ADD_R {
ADD_R::new((self.bits & 0x7f) as u8)
}
#[doc = "Bit 7 - Enable function"]
#[inline(always)]
pub fn ef(&self) -> EF_R {
EF_R::new(((self.bits >> 7) & 0x01) != 0)
}
}
impl W {
#[doc = "Bits 0:6 - Device address"]
#[inline(always)]
pub fn add(&mut self) -> ADD_W {
ADD_W { w: self }
}
#[doc = "Bit 7 - Enable function"]
#[inline(always)]
pub fn ef(&mut self) -> EF_W {
EF_W { w: self }
}
}