rp2040_pac/rtc/
intr.rs
1#[doc = "Register `INTR` reader"]
2pub type R = crate::R<INTR_SPEC>;
3#[doc = "Field `RTC` reader - "]
4pub type RTC_R = crate::BitReader;
5impl R {
6 #[doc = "Bit 0"]
7 #[inline(always)]
8 pub fn rtc(&self) -> RTC_R {
9 RTC_R::new((self.bits & 1) != 0)
10 }
11}
12#[doc = "Raw Interrupts
13
14You can [`read`](crate::generic::Reg::read) this register and get [`intr::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
15pub struct INTR_SPEC;
16impl crate::RegisterSpec for INTR_SPEC {
17 type Ux = u32;
18}
19#[doc = "`read()` method returns [`intr::R`](R) reader structure"]
20impl crate::Readable for INTR_SPEC {}
21#[doc = "`reset()` method sets INTR to value 0"]
22impl crate::Resettable for INTR_SPEC {
23 const RESET_VALUE: u32 = 0;
24}