stm32wb_pac/rtc/
ssr.rs

1#[doc = "Reader of register SSR"]
2pub type R = crate::R<u32, super::SSR>;
3#[doc = "Reader of field `SS`"]
4pub type SS_R = crate::R<u16, u16>;
5impl R {
6    #[doc = "Bits 0:15 - Sub second value"]
7    #[inline(always)]
8    pub fn ss(&self) -> SS_R {
9        SS_R::new((self.bits & 0xffff) as u16)
10    }
11}