Added Power Saving for NRF52 companions

This commit is contained in:
Kevin Le
2026-05-22 10:58:17 +07:00
parent 23f48e025f
commit 6b1099161c
3 changed files with 21 additions and 4 deletions
+8
View File
@@ -2222,3 +2222,11 @@ bool MyMesh::advert() {
return false;
}
}
// To check if there is pending work
bool MyMesh::hasPendingWork() const {
#if defined(WITH_BRIDGE)
if (bridge.isRunning()) return true; // bridge needs WiFi radio, can't sleep
#endif
return _mgr->getOutboundTotal() > 0;
}