max3263x 0.5.0

svd2rust generated peripheral crate for the max3263x
Documentation
#[doc = "Register `CN` reader"]
pub struct R(crate::R<CN_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<CN_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<CN_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<CN_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `CN` writer"]
pub struct W(crate::W<CN_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<CN_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<CN_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<CN_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "Field `usb_en` reader - USB Device Interface Enable"]
pub type USB_EN_R = crate::BitReader<bool>;
#[doc = "Field `usb_en` writer - USB Device Interface Enable"]
pub type USB_EN_W<'a> = crate::BitWriter<'a, u32, CN_SPEC, bool, 0>;
impl R {
    #[doc = "Bit 0 - USB Device Interface Enable"]
    #[inline(always)]
    pub fn usb_en(&self) -> USB_EN_R {
        USB_EN_R::new((self.bits & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - USB Device Interface Enable"]
    #[inline(always)]
    pub fn usb_en(&mut self) -> USB_EN_W {
        USB_EN_W::new(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 = "USB Control Register\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 [cn](index.html) module"]
pub struct CN_SPEC;
impl crate::RegisterSpec for CN_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [cn::R](R) reader structure"]
impl crate::Readable for CN_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [cn::W](W) writer structure"]
impl crate::Writable for CN_SPEC {
    type Writer = W;
}
#[doc = "`reset()` method sets CN to value 0"]
impl crate::Resettable for CN_SPEC {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0
    }
}