trunk roundhouse kick

This commit is contained in:
Thomas Göttgens
2023-01-21 14:34:29 +01:00
parent 6cf18b7d07
commit 51b2c431d9
234 changed files with 4989 additions and 5101 deletions

View File

@@ -1,7 +1,6 @@
#pragma once
#include "SinglePortModule.h"
/**
* A simple example module that just replies with "Message received" to any message it receives.
*/
@@ -14,9 +13,8 @@ class ReplyModule : public SinglePortModule
ReplyModule() : SinglePortModule("reply", PortNum_REPLY_APP) {}
protected:
/** For reply module we do all of our processing in the (normally optional)
* want_replies handling
*/
*/
virtual MeshPacket *allocReply() override;
};