| 28 | return 0; |
| 29 | }; |
| 30 | [[nodiscard]] uint16_t EmptyRegisterInterface::readReg16(uint8_t regAddr) const { |
| 31 | return 0; |
| 32 | }; |
| 33 | void EmptyRegisterInterface::writeReg(uint8_t regAddr, uint8_t value) const {}; |
| 34 | void EmptyRegisterInterface::writeReg16(uint8_t regAddr, uint16_t value) const {}; |
| 35 | void EmptyRegisterInterface::readBytes(uint8_t regAddr, uint8_t size, uint8_t* buffer) |
nothing calls this directly
no outgoing calls
no test coverage detected