lpc54606-pac 0.1.0

Low-level register mappings for the NXP LPC54606 series of ARM Cortex-M4 microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc = "Reader of register _ITATBCTR2"]
pub type R = crate::R<u32, super::_ITATBCTR2>;
#[doc = "Reader of field `ATREADY`"]
pub type ATREADY_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 0 - A read of this bit returns the value of the ETM ATREADY input."]
    #[inline(always)]
    pub fn atready(&self) -> ATREADY_R {
        ATREADY_R::new((self.bits & 0x01) != 0)
    }
}