allow observers to return an error code to abort further processing

Will allow me to use observers to generalize the various hooks
that need to run to preflight sleep entry.
This commit is contained in:
geeksville
2020-04-10 12:40:44 -07:00
parent 6ad451eb5f
commit 640cb3bf7f
4 changed files with 22 additions and 8 deletions

View File

@@ -322,7 +322,7 @@ void MeshService::sendOurPosition(NodeNum dest, bool wantReplies)
sendToMesh(p);
}
void MeshService::onGPSChanged(void *unused)
int MeshService::onGPSChanged(void *unused)
{
DEBUG_MSG("got gps notify\n");
@@ -354,4 +354,6 @@ void MeshService::onGPSChanged(void *unused)
releaseToPool(p);
}
return 0;
}