#[doc = r" Value read from the register"] pub struct R { bits: u32, } #[doc = r" Value to write to the register"] pub struct W { bits: u32, } impl super::FS_HCCHAR3 { #[doc = r" Modifies the contents of the register"] #[inline] pub fn modify(&self, f: F) where for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W, { let bits = self.register.get(); let r = R { bits: bits }; let mut w = W { bits: bits }; f(&r, &mut w); self.register.set(w.bits); } #[doc = r" Reads the contents of the register"] #[inline] pub fn read(&self) -> R { R { bits: self.register.get(), } } #[doc = r" Writes to the register"] #[inline] pub fn write(&self, f: F) where F: FnOnce(&mut W) -> &mut W, { let mut w = W::reset_value(); f(&mut w); self.register.set(w.bits); } #[doc = r" Writes the reset value to the register"] #[inline] pub fn reset(&self) { self.write(|w| w) } } #[doc = r" Value of the field"] pub struct MPSIZR { bits: u16, } impl MPSIZR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bits(&self) -> u16 { self.bits } } #[doc = r" Value of the field"] pub struct EPNUMR { bits: u8, } impl EPNUMR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bits(&self) -> u8 { self.bits } } #[doc = r" Value of the field"] pub struct EPDIRR { bits: bool, } impl EPDIRR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { self.bits } #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } } #[doc = r" Value of the field"] pub struct LSDEVR { bits: bool, } impl LSDEVR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { self.bits } #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } } #[doc = r" Value of the field"] pub struct EPTYPR { bits: u8, } impl EPTYPR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bits(&self) -> u8 { self.bits } } #[doc = r" Value of the field"] pub struct MCNTR { bits: u8, } impl MCNTR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bits(&self) -> u8 { self.bits } } #[doc = r" Value of the field"] pub struct DADR { bits: u8, } impl DADR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bits(&self) -> u8 { self.bits } } #[doc = r" Value of the field"] pub struct ODDFRMR { bits: bool, } impl ODDFRMR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { self.bits } #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } } #[doc = r" Value of the field"] pub struct CHDISR { bits: bool, } impl CHDISR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { self.bits } #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } } #[doc = r" Value of the field"] pub struct CHENAR { bits: bool, } impl CHENAR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { self.bits } #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } } #[doc = r" Proxy"] pub struct _MPSIZW<'a> { w: &'a mut W, } impl<'a> _MPSIZW<'a> { #[doc = r" Writes raw bits to the field"] #[inline] pub unsafe fn bits(self, value: u16) -> &'a mut W { const MASK: u16 = 2047; const OFFSET: u8 = 0; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _EPNUMW<'a> { w: &'a mut W, } impl<'a> _EPNUMW<'a> { #[doc = r" Writes raw bits to the field"] #[inline] pub unsafe fn bits(self, value: u8) -> &'a mut W { const MASK: u8 = 15; const OFFSET: u8 = 11; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _EPDIRW<'a> { w: &'a mut W, } impl<'a> _EPDIRW<'a> { #[doc = r" Sets the field bit"] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r" Clears the field bit"] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r" Writes raw bits to the field"] #[inline] pub fn bit(self, value: bool) -> &'a mut W { const MASK: bool = true; const OFFSET: u8 = 15; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _LSDEVW<'a> { w: &'a mut W, } impl<'a> _LSDEVW<'a> { #[doc = r" Sets the field bit"] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r" Clears the field bit"] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r" Writes raw bits to the field"] #[inline] pub fn bit(self, value: bool) -> &'a mut W { const MASK: bool = true; const OFFSET: u8 = 17; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _EPTYPW<'a> { w: &'a mut W, } impl<'a> _EPTYPW<'a> { #[doc = r" Writes raw bits to the field"] #[inline] pub unsafe fn bits(self, value: u8) -> &'a mut W { const MASK: u8 = 3; const OFFSET: u8 = 18; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _MCNTW<'a> { w: &'a mut W, } impl<'a> _MCNTW<'a> { #[doc = r" Writes raw bits to the field"] #[inline] pub unsafe fn bits(self, value: u8) -> &'a mut W { const MASK: u8 = 3; const OFFSET: u8 = 20; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _DADW<'a> { w: &'a mut W, } impl<'a> _DADW<'a> { #[doc = r" Writes raw bits to the field"] #[inline] pub unsafe fn bits(self, value: u8) -> &'a mut W { const MASK: u8 = 127; const OFFSET: u8 = 22; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _ODDFRMW<'a> { w: &'a mut W, } impl<'a> _ODDFRMW<'a> { #[doc = r" Sets the field bit"] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r" Clears the field bit"] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r" Writes raw bits to the field"] #[inline] pub fn bit(self, value: bool) -> &'a mut W { const MASK: bool = true; const OFFSET: u8 = 29; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _CHDISW<'a> { w: &'a mut W, } impl<'a> _CHDISW<'a> { #[doc = r" Sets the field bit"] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r" Clears the field bit"] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r" Writes raw bits to the field"] #[inline] pub fn bit(self, value: bool) -> &'a mut W { const MASK: bool = true; const OFFSET: u8 = 30; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } #[doc = r" Proxy"] pub struct _CHENAW<'a> { w: &'a mut W, } impl<'a> _CHENAW<'a> { #[doc = r" Sets the field bit"] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r" Clears the field bit"] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r" Writes raw bits to the field"] #[inline] pub fn bit(self, value: bool) -> &'a mut W { const MASK: bool = true; const OFFSET: u8 = 31; self.w.bits &= !((MASK as u32) << OFFSET); self.w.bits |= ((value & MASK) as u32) << OFFSET; self.w } } impl R { #[doc = r" Value of the register as raw bits"] #[inline] pub fn bits(&self) -> u32 { self.bits } #[doc = "Bits 0:10 - Maximum packet size"] #[inline] pub fn mpsiz(&self) -> MPSIZR { let bits = { const MASK: u16 = 2047; const OFFSET: u8 = 0; ((self.bits >> OFFSET) & MASK as u32) as u16 }; MPSIZR { bits } } #[doc = "Bits 11:14 - Endpoint number"] #[inline] pub fn epnum(&self) -> EPNUMR { let bits = { const MASK: u8 = 15; const OFFSET: u8 = 11; ((self.bits >> OFFSET) & MASK as u32) as u8 }; EPNUMR { bits } } #[doc = "Bit 15 - Endpoint direction"] #[inline] pub fn epdir(&self) -> EPDIRR { let bits = { const MASK: bool = true; const OFFSET: u8 = 15; ((self.bits >> OFFSET) & MASK as u32) != 0 }; EPDIRR { bits } } #[doc = "Bit 17 - Low-speed device"] #[inline] pub fn lsdev(&self) -> LSDEVR { let bits = { const MASK: bool = true; const OFFSET: u8 = 17; ((self.bits >> OFFSET) & MASK as u32) != 0 }; LSDEVR { bits } } #[doc = "Bits 18:19 - Endpoint type"] #[inline] pub fn eptyp(&self) -> EPTYPR { let bits = { const MASK: u8 = 3; const OFFSET: u8 = 18; ((self.bits >> OFFSET) & MASK as u32) as u8 }; EPTYPR { bits } } #[doc = "Bits 20:21 - Multicount"] #[inline] pub fn mcnt(&self) -> MCNTR { let bits = { const MASK: u8 = 3; const OFFSET: u8 = 20; ((self.bits >> OFFSET) & MASK as u32) as u8 }; MCNTR { bits } } #[doc = "Bits 22:28 - Device address"] #[inline] pub fn dad(&self) -> DADR { let bits = { const MASK: u8 = 127; const OFFSET: u8 = 22; ((self.bits >> OFFSET) & MASK as u32) as u8 }; DADR { bits } } #[doc = "Bit 29 - Odd frame"] #[inline] pub fn oddfrm(&self) -> ODDFRMR { let bits = { const MASK: bool = true; const OFFSET: u8 = 29; ((self.bits >> OFFSET) & MASK as u32) != 0 }; ODDFRMR { bits } } #[doc = "Bit 30 - Channel disable"] #[inline] pub fn chdis(&self) -> CHDISR { let bits = { const MASK: bool = true; const OFFSET: u8 = 30; ((self.bits >> OFFSET) & MASK as u32) != 0 }; CHDISR { bits } } #[doc = "Bit 31 - Channel enable"] #[inline] pub fn chena(&self) -> CHENAR { let bits = { const MASK: bool = true; const OFFSET: u8 = 31; ((self.bits >> OFFSET) & MASK as u32) != 0 }; CHENAR { bits } } } impl W { #[doc = r" Reset value of the register"] #[inline] pub fn reset_value() -> W { W { bits: 0 } } #[doc = r" Writes raw bits to the register"] #[inline] pub unsafe fn bits(&mut self, bits: u32) -> &mut Self { self.bits = bits; self } #[doc = "Bits 0:10 - Maximum packet size"] #[inline] pub fn mpsiz(&mut self) -> _MPSIZW { _MPSIZW { w: self } } #[doc = "Bits 11:14 - Endpoint number"] #[inline] pub fn epnum(&mut self) -> _EPNUMW { _EPNUMW { w: self } } #[doc = "Bit 15 - Endpoint direction"] #[inline] pub fn epdir(&mut self) -> _EPDIRW { _EPDIRW { w: self } } #[doc = "Bit 17 - Low-speed device"] #[inline] pub fn lsdev(&mut self) -> _LSDEVW { _LSDEVW { w: self } } #[doc = "Bits 18:19 - Endpoint type"] #[inline] pub fn eptyp(&mut self) -> _EPTYPW { _EPTYPW { w: self } } #[doc = "Bits 20:21 - Multicount"] #[inline] pub fn mcnt(&mut self) -> _MCNTW { _MCNTW { w: self } } #[doc = "Bits 22:28 - Device address"] #[inline] pub fn dad(&mut self) -> _DADW { _DADW { w: self } } #[doc = "Bit 29 - Odd frame"] #[inline] pub fn oddfrm(&mut self) -> _ODDFRMW { _ODDFRMW { w: self } } #[doc = "Bit 30 - Channel disable"] #[inline] pub fn chdis(&mut self) -> _CHDISW { _CHDISW { w: self } } #[doc = "Bit 31 - Channel enable"] #[inline] pub fn chena(&mut self) -> _CHENAW { _CHENAW { w: self } } }