1#[doc = "Register `RANDOMBIT` reader"]
2pub type R = crate::R<RANDOMBIT_SPEC>;
3#[doc = "Field `RANDOMBIT` reader - "]
4pub type RANDOMBIT_R = crate::BitReader;
5impl R {
6#[doc = "Bit 0"]
7 #[inline(always)]
8pub fn randombit(&self) -> RANDOMBIT_R {
9 RANDOMBIT_R::new((self.bits & 1) != 0)
10 }
11}
12#[doc = "This just reads the state of the oscillator output so randomness is compromised if the ring oscillator is stopped or run at a harmonic of the bus frequency
1314You can [`read`](crate::generic::Reg::read) this register and get [`randombit::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
15pub struct RANDOMBIT_SPEC;
16impl crate::RegisterSpec for RANDOMBIT_SPEC {
17type Ux = u32;
18}
19#[doc = "`read()` method returns [`randombit::R`](R) reader structure"]
20impl crate::Readable for RANDOMBIT_SPEC {}
21#[doc = "`reset()` method sets RANDOMBIT to value 0x01"]
22impl crate::Resettable for RANDOMBIT_SPEC {
23const RESET_VALUE: u32 = 0x01;
24}