lpc54606_pac/dmic0/hwvadlowz.rs
1#[doc = "Reader of register HWVADLOWZ"]
2pub type R = crate::R<u32, super::HWVADLOWZ>;
3#[doc = "Reader of field `LOWZ`"]
4pub type LOWZ_R = crate::R<u16, u16>;
5impl R {
6 #[doc = "Bits 0:15 - Noise envelope estimator value."]
7 #[inline(always)]
8 pub fn lowz(&self) -> LOWZ_R {
9 LOWZ_R::new((self.bits & 0xffff) as u16)
10 }
11}