loopback test support

This commit is contained in:
geeksville
2020-02-17 17:47:01 -08:00
parent 47d278b3b9
commit 9481d9e95b
2 changed files with 43 additions and 27 deletions

View File

@@ -78,9 +78,12 @@ private:
virtual void onNotify(Observable *o);
/// handle packets that just arrived from the mesh radio
/// handle all the packets that just arrived from the mesh radio
void handleFromRadio();
/// Handle a packet that just arrived from the radio
void handleFromRadio(MeshPacket *p);
/// handle a user packet that just arrived on the radio, return NULL if we should not process this packet at all
MeshPacket *handleFromRadioUser(MeshPacket *mp);
};