mk66f18/cau/cau_str_ca2.rs
1#[doc = "Reader of register CAU_STR_CA2"]
2pub type R = crate::R<u32, super::CAU_STR_CA2>;
3#[doc = "Reader of field `CA2`"]
4pub type CA2_R = crate::R<u32, u32>;
5impl R {
6 #[doc = "Bits 0:31 - CA2"]
7 #[inline(always)]
8 pub fn ca2(&self) -> CA2_R {
9 CA2_R::new((self.bits & 0xffff_ffff) as u32)
10 }
11}