atsamd51p19a/tpi/
itatbctr2.rs

1#[doc = "Reader of register ITATBCTR2"]
2pub type R = crate::R<u32, super::ITATBCTR2>;
3#[doc = "Reader of field `ATREADY`"]
4pub type ATREADY_R = crate::R<bool, bool>;
5impl R {
6    #[doc = "Bit 0"]
7    #[inline(always)]
8    pub fn atready(&self) -> ATREADY_R {
9        ATREADY_R::new((self.bits & 0x01) != 0)
10    }
11}