fix(mesh): update reconfigure methods to return true instead of RADIOLIB_ERR_NONE (#10407)

This commit is contained in:
Tom
2026-05-07 11:57:34 +01:00
committed by GitHub
parent cdc47a2aea
commit b11d29ff31
4 changed files with 4 additions and 4 deletions

View File

@@ -198,7 +198,7 @@ template <typename T> bool LR11x0Interface<T>::reconfigure()
startReceive(); // restart receiving
return RADIOLIB_ERR_NONE;
return true;
}
template <typename T> void LR11x0Interface<T>::disableInterrupt()

View File

@@ -252,7 +252,7 @@ bool RF95Interface::reconfigure()
startReceive(); // restart receiving
return RADIOLIB_ERR_NONE;
return true;
}
/**

View File

@@ -262,7 +262,7 @@ template <typename T> bool SX126xInterface<T>::reconfigure()
startReceive(); // restart receiving
return RADIOLIB_ERR_NONE;
return true;
}
template <typename T> void SX126xInterface<T>::disableInterrupt()

View File

@@ -153,7 +153,7 @@ template <typename T> bool SX128xInterface<T>::reconfigure()
startReceive(); // restart receiving
return RADIOLIB_ERR_NONE;
return true;
}
template <typename T> void SX128xInterface<T>::disableInterrupt()