Handle text messages from local node

This commit is contained in:
Jonathan Bennett
2026-01-09 16:29:54 -06:00
parent 5de0654819
commit 5adc9663b7
4 changed files with 77 additions and 23 deletions

View File

@@ -87,6 +87,8 @@ class StoreForwardPlusPlusModule : public ProtobufModule<meshtastic_StoreForward
}
}
void handleEncrypted(const meshtastic_MeshPacket *, const meshtastic_MeshPacket *);
protected:
/** Called to handle a particular incoming message
@return ProcessMessage::STOP if you've guaranteed you've handled this message and no other handlers should be considered for
@@ -280,4 +282,6 @@ class StoreForwardPlusPlusModule : public ProtobufModule<meshtastic_StoreForward
bool did_announce_last = false;
};
extern StoreForwardPlusPlusModule *storeForwardPlusPlusModule;
#endif