atsamd51j/eic/
evctrl.rs
#[doc = "Register `EVCTRL` reader"]
pub type R = crate::R<EvctrlSpec>;
#[doc = "Register `EVCTRL` writer"]
pub type W = crate::W<EvctrlSpec>;
#[doc = "Field `EXTINTEO` reader - External Interrupt Event Output Enable"]
pub type ExtinteoR = crate::FieldReader<u16>;
#[doc = "Field `EXTINTEO` writer - External Interrupt Event Output Enable"]
pub type ExtinteoW<'a, REG> = crate::FieldWriter<'a, REG, 16, u16>;
impl R {
#[doc = "Bits 0:15 - External Interrupt Event Output Enable"]
#[inline(always)]
pub fn extinteo(&self) -> ExtinteoR {
ExtinteoR::new((self.bits & 0xffff) as u16)
}
}
impl W {
#[doc = "Bits 0:15 - External Interrupt Event Output Enable"]
#[inline(always)]
#[must_use]
pub fn extinteo(&mut self) -> ExtinteoW<EvctrlSpec> {
ExtinteoW::new(self, 0)
}
}
#[doc = "Event Control\n\nYou can [`read`](crate::Reg::read) this register and get [`evctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`evctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct EvctrlSpec;
impl crate::RegisterSpec for EvctrlSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`evctrl::R`](R) reader structure"]
impl crate::Readable for EvctrlSpec {}
#[doc = "`write(|w| ..)` method takes [`evctrl::W`](W) writer structure"]
impl crate::Writable for EvctrlSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets EVCTRL to value 0"]
impl crate::Resettable for EvctrlSpec {
const RESET_VALUE: u32 = 0;
}