Check if time is being updated
(&mut self)
| 194 | |
| 195 | // Check if time is being updated |
| 196 | fn updating(&mut self) -> bool |
| 197 | { |
| 198 | unsafe |
| 199 | { |
| 200 | self.address.write(Reg::A as u8); |
| 201 | self.data.read().get_bit(7) |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | |
| 206 | // Read registers |
no test coverage detected