(&mut self)
| 213 | } |
| 214 | |
| 215 | fn thr_empty(&mut self) -> Result<()> { |
| 216 | if self.is_thr_intr_enabled() { |
| 217 | self.add_intr_bit(IIR_THR_BIT); |
| 218 | self.trigger_interrupt()?; |
| 219 | } |
| 220 | Ok(()) |
| 221 | } |
| 222 | |
| 223 | fn recv_data(&mut self) -> Result<()> { |
| 224 | if self.is_recv_intr_enabled() { |
no test coverage detected