| 25 | namespace SlimeVR::Sensors { |
| 26 | |
| 27 | [[nodiscard]] uint8_t EmptyRegisterInterface::readReg(uint8_t regAddr) const { |
| 28 | return 0; |
| 29 | }; |
| 30 | [[nodiscard]] uint16_t EmptyRegisterInterface::readReg16(uint8_t regAddr) const { |
| 31 | return 0; |
| 32 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected