1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
#[doc = "Reader of register PARAM"]
pub type R = crate::R<u32, super::PARAM>;
#[doc = "Reader of field `TRIG_NUM`"]
pub type TRIG_NUM_R = crate::R<u8, u8>;
#[doc = "Possible values of the field `FIFOSIZE`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FIFOSIZE_A {
    #[doc = "Result FIFO depth = 1 dataword."]
    FIFOSIZE_1,
    #[doc = "Result FIFO depth = 4 datawords."]
    FIFOSIZE_4,
    #[doc = "Result FIFO depth = 8 datawords."]
    FIFOSIZE_8,
    #[doc = "Result FIFO depth = 16 datawords."]
    FIFOSIZE_16,
    #[doc = "Result FIFO depth = 32 datawords."]
    FIFOSIZE_32,
    #[doc = "Result FIFO depth = 64 datawords."]
    FIFOSIZE_64,
}
impl From<FIFOSIZE_A> for u8 {
    #[inline(always)]
    fn from(variant: FIFOSIZE_A) -> Self {
        match variant {
            FIFOSIZE_A::FIFOSIZE_1 => 1,
            FIFOSIZE_A::FIFOSIZE_4 => 4,
            FIFOSIZE_A::FIFOSIZE_8 => 8,
            FIFOSIZE_A::FIFOSIZE_16 => 16,
            FIFOSIZE_A::FIFOSIZE_32 => 32,
            FIFOSIZE_A::FIFOSIZE_64 => 64,
        }
    }
}
#[doc = "Reader of field `FIFOSIZE`"]
pub type FIFOSIZE_R = crate::R<u8, FIFOSIZE_A>;
impl FIFOSIZE_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> crate::Variant<u8, FIFOSIZE_A> {
        use crate::Variant::*;
        match self.bits {
            1 => Val(FIFOSIZE_A::FIFOSIZE_1),
            4 => Val(FIFOSIZE_A::FIFOSIZE_4),
            8 => Val(FIFOSIZE_A::FIFOSIZE_8),
            16 => Val(FIFOSIZE_A::FIFOSIZE_16),
            32 => Val(FIFOSIZE_A::FIFOSIZE_32),
            64 => Val(FIFOSIZE_A::FIFOSIZE_64),
            i => Res(i),
        }
    }
    #[doc = "Checks if the value of the field is `FIFOSIZE_1`"]
    #[inline(always)]
    pub fn is_fifosize_1(&self) -> bool {
        *self == FIFOSIZE_A::FIFOSIZE_1
    }
    #[doc = "Checks if the value of the field is `FIFOSIZE_4`"]
    #[inline(always)]
    pub fn is_fifosize_4(&self) -> bool {
        *self == FIFOSIZE_A::FIFOSIZE_4
    }
    #[doc = "Checks if the value of the field is `FIFOSIZE_8`"]
    #[inline(always)]
    pub fn is_fifosize_8(&self) -> bool {
        *self == FIFOSIZE_A::FIFOSIZE_8
    }
    #[doc = "Checks if the value of the field is `FIFOSIZE_16`"]
    #[inline(always)]
    pub fn is_fifosize_16(&self) -> bool {
        *self == FIFOSIZE_A::FIFOSIZE_16
    }
    #[doc = "Checks if the value of the field is `FIFOSIZE_32`"]
    #[inline(always)]
    pub fn is_fifosize_32(&self) -> bool {
        *self == FIFOSIZE_A::FIFOSIZE_32
    }
    #[doc = "Checks if the value of the field is `FIFOSIZE_64`"]
    #[inline(always)]
    pub fn is_fifosize_64(&self) -> bool {
        *self == FIFOSIZE_A::FIFOSIZE_64
    }
}
#[doc = "Reader of field `CV_NUM`"]
pub type CV_NUM_R = crate::R<u8, u8>;
#[doc = "Reader of field `CMD_NUM`"]
pub type CMD_NUM_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bits 0:7 - Trigger Number"]
    #[inline(always)]
    pub fn trig_num(&self) -> TRIG_NUM_R {
        TRIG_NUM_R::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - Result FIFO Depth"]
    #[inline(always)]
    pub fn fifosize(&self) -> FIFOSIZE_R {
        FIFOSIZE_R::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 16:23 - Compare Value Number"]
    #[inline(always)]
    pub fn cv_num(&self) -> CV_NUM_R {
        CV_NUM_R::new(((self.bits >> 16) & 0xff) as u8)
    }
    #[doc = "Bits 24:31 - Command Buffer Number"]
    #[inline(always)]
    pub fn cmd_num(&self) -> CMD_NUM_R {
        CMD_NUM_R::new(((self.bits >> 24) & 0xff) as u8)
    }
}