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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
#[doc = r" Value read from the register"] pub struct R { bits: u32, } impl super::MONRXDAT { #[doc = r" Reads the contents of the register"] #[inline] pub fn read(&self) -> R { R { bits: self.register.get(), } } } #[doc = r" Value of the field"] pub struct MONRXDATR { bits: u8, } impl MONRXDATR { #[doc = r" Value of the field as raw bits"] #[inline] pub fn bits(&self) -> u8 { self.bits } } #[doc = "Possible values of the field `MONSTART`"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum MONSTARTR { #[doc = "No start detected. The Monitor function has not detected a Start event on the I2C bus."] NO_START_DETECTED, #[doc = "Start detected. The Monitor function has detected a Start event on the I2C bus."] START_DETECTED, } impl MONSTARTR { #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { match *self { MONSTARTR::NO_START_DETECTED => false, MONSTARTR::START_DETECTED => true, } } #[allow(missing_docs)] #[doc(hidden)] #[inline] pub fn _from(value: bool) -> MONSTARTR { match value { false => MONSTARTR::NO_START_DETECTED, true => MONSTARTR::START_DETECTED, } } #[doc = "Checks if the value of the field is `NO_START_DETECTED`"] #[inline] pub fn is_no_start_detected(&self) -> bool { *self == MONSTARTR::NO_START_DETECTED } #[doc = "Checks if the value of the field is `START_DETECTED`"] #[inline] pub fn is_start_detected(&self) -> bool { *self == MONSTARTR::START_DETECTED } } #[doc = "Possible values of the field `MONRESTART`"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum MONRESTARTR { #[doc = "No repeated start detected. The Monitor function has not detected a Repeated Start event on the I2C bus."] NOT_DETECTED, #[doc = "Repeated start detected. The Monitor function has detected a Repeated Start event on the I2C bus."] DETECTED, } impl MONRESTARTR { #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { match *self { MONRESTARTR::NOT_DETECTED => false, MONRESTARTR::DETECTED => true, } } #[allow(missing_docs)] #[doc(hidden)] #[inline] pub fn _from(value: bool) -> MONRESTARTR { match value { false => MONRESTARTR::NOT_DETECTED, true => MONRESTARTR::DETECTED, } } #[doc = "Checks if the value of the field is `NOT_DETECTED`"] #[inline] pub fn is_not_detected(&self) -> bool { *self == MONRESTARTR::NOT_DETECTED } #[doc = "Checks if the value of the field is `DETECTED`"] #[inline] pub fn is_detected(&self) -> bool { *self == MONRESTARTR::DETECTED } } #[doc = "Possible values of the field `MONNACK`"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum MONNACKR { #[doc = "Acknowledged. The data currently being provided by the Monitor function was acknowledged by at least one master or slave receiver."] ACKNOWLEDGED, #[doc = "Not acknowledged. The data currently being provided by the Monitor function was not acknowledged by any receiver."] NOT_ACKNOWLEDGED, } impl MONNACKR { #[doc = r" Returns `true` if the bit is clear (0)"] #[inline] pub fn bit_is_clear(&self) -> bool { !self.bit() } #[doc = r" Returns `true` if the bit is set (1)"] #[inline] pub fn bit_is_set(&self) -> bool { self.bit() } #[doc = r" Value of the field as raw bits"] #[inline] pub fn bit(&self) -> bool { match *self { MONNACKR::ACKNOWLEDGED => false, MONNACKR::NOT_ACKNOWLEDGED => true, } } #[allow(missing_docs)] #[doc(hidden)] #[inline] pub fn _from(value: bool) -> MONNACKR { match value { false => MONNACKR::ACKNOWLEDGED, true => MONNACKR::NOT_ACKNOWLEDGED, } } #[doc = "Checks if the value of the field is `ACKNOWLEDGED`"] #[inline] pub fn is_acknowledged(&self) -> bool { *self == MONNACKR::ACKNOWLEDGED } #[doc = "Checks if the value of the field is `NOT_ACKNOWLEDGED`"] #[inline] pub fn is_not_acknowledged(&self) -> bool { *self == MONNACKR::NOT_ACKNOWLEDGED } } impl R { #[doc = r" Value of the register as raw bits"] #[inline] pub fn bits(&self) -> u32 { self.bits } #[doc = "Bits 0:7 - Monitor function Receiver Data. This reflects every data byte that passes on the I2C pins."] #[inline] pub fn monrxdat(&self) -> MONRXDATR { let bits = { const MASK: u8 = 255; const OFFSET: u8 = 0; ((self.bits >> OFFSET) & MASK as u32) as u8 }; MONRXDATR { bits } } #[doc = "Bit 8 - Monitor Received Start."] #[inline] pub fn monstart(&self) -> MONSTARTR { MONSTARTR::_from({ const MASK: bool = true; const OFFSET: u8 = 8; ((self.bits >> OFFSET) & MASK as u32) != 0 }) } #[doc = "Bit 9 - Monitor Received Repeated Start."] #[inline] pub fn monrestart(&self) -> MONRESTARTR { MONRESTARTR::_from({ const MASK: bool = true; const OFFSET: u8 = 9; ((self.bits >> OFFSET) & MASK as u32) != 0 }) } #[doc = "Bit 10 - Monitor Received NACK."] #[inline] pub fn monnack(&self) -> MONNACKR { MONNACKR::_from({ const MASK: bool = true; const OFFSET: u8 = 10; ((self.bits >> OFFSET) & MASK as u32) != 0 }) } }