1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-15 15:03:07 +01:00

Fix warnings

This commit is contained in:
2024-11-20 10:42:38 +01:00
parent 64cb33ba67
commit a75ea95694
3 changed files with 4 additions and 4 deletions

View File

@@ -486,7 +486,7 @@ uint8_t RTC_BQ32000::readRegister(uint8_t address) {
return Wire.read();
}
uint8_t RTC_BQ32000::writeRegister(uint8_t address, uint8_t value) {
void RTC_BQ32000::writeRegister(uint8_t address, uint8_t value) {
/* Write the given value to the register at the given address.
*/
Wire.beginTransmission(BQ32000_ADDRESS);
@@ -513,4 +513,4 @@ DateTime RTC_Millis::now() {
return offset + millis() / 1000;
}
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////