imxrt1062-usb1 0.1.1

An imxrt1062-pac subcrate. See the imxrt1062-pac for more details. This crate is not maintained. Consider using the register access layer provided by the [imxrt-rs](https://github.com/imxrt-rs/imxrt-rs) project. Formerly part of the teensy4-rs project.
Documentation
#[doc = "Reader of register HWRXBUF"]
pub type R = crate::R<u32, super::HWRXBUF>;
#[doc = "Reader of field `RXBURST`"]
pub type RXBURST_R = crate::R<u8, u8>;
#[doc = "Reader of field `RXADD`"]
pub type RXADD_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bits 0:7 - Default burst size for memory to RX buffer transfer"]
    #[inline(always)]
    pub fn rxburst(&self) -> RXBURST_R {
        RXBURST_R::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - Buffer total size for all receive endpoints is (2^RXADD)"]
    #[inline(always)]
    pub fn rxadd(&self) -> RXADD_R {
        RXADD_R::new(((self.bits >> 8) & 0xff) as u8)
    }
}