fomu_pac/version/
seed3.rs1#[doc = "Reader of register SEED3"]
2pub type R = crate::R<u8, super::SEED3>;
3#[doc = "Reader of field `seed`"]
4pub type SEED_R = crate::R<u8, u8>;
5impl R {
6 #[doc = "Bits 0:7"]
7 #[inline(always)]
8 pub fn seed(&self) -> SEED_R {
9 SEED_R::new((self.bits & 0xff) as u8)
10 }
11}