atsame54p 0.14.2

Peripheral access API for ATSAME54P microcontrollers (generated using svd2rust)
Documentation
#[doc = "Register `NSC` reader"]
pub type R = crate::R<NscSpec>;
#[doc = "Register `NSC` writer"]
pub type W = crate::W<NscSpec>;
#[doc = "Field `NANOSEC` reader - 1588 Timer Nanosecond comparison value"]
pub type NanosecR = crate::FieldReader<u32>;
#[doc = "Field `NANOSEC` writer - 1588 Timer Nanosecond comparison value"]
pub type NanosecW<'a, REG> = crate::FieldWriter<'a, REG, 21, u32>;
impl R {
    #[doc = "Bits 0:20 - 1588 Timer Nanosecond comparison value"]
    #[inline(always)]
    pub fn nanosec(&self) -> NanosecR {
        NanosecR::new(self.bits & 0x001f_ffff)
    }
}
impl W {
    #[doc = "Bits 0:20 - 1588 Timer Nanosecond comparison value"]
    #[inline(always)]
    #[must_use]
    pub fn nanosec(&mut self) -> NanosecW<NscSpec> {
        NanosecW::new(self, 0)
    }
}
#[doc = "Tsu timer comparison nanoseconds Register\n\nYou can [`read`](crate::Reg::read) this register and get [`nsc::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`nsc::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct NscSpec;
impl crate::RegisterSpec for NscSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`nsc::R`](R) reader structure"]
impl crate::Readable for NscSpec {}
#[doc = "`write(|w| ..)` method takes [`nsc::W`](W) writer structure"]
impl crate::Writable for NscSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets NSC to value 0"]
impl crate::Resettable for NscSpec {
    const RESET_VALUE: u32 = 0;
}