firmware/src/modules/NodeInfoModule.h

44 lines
1.4 KiB
C
Raw Normal View History

#pragma once
#include "ProtobufModule.h"
/**
* NodeInfo module for sending/receiving NodeInfos into the mesh
*/
class NodeInfoModule : public ProtobufModule<meshtastic_User>, private concurrency::OSThread
{
/// The id of the last packet we sent, to allow us to cancel it if we make something fresher
PacketId prevPacketId = 0;
2023-01-21 13:34:29 +00:00
uint32_t currentGeneration = 0;
2023-01-21 13:34:29 +00:00
public:
/** Constructor
* name is for debugging output
*/
2022-02-27 10:21:02 +00:00
NodeInfoModule();
2023-01-21 13:34:29 +00:00
/**
* Send our NodeInfo into the mesh
*/
void sendOurNodeInfo(NodeNum dest = NODENUM_BROADCAST, bool wantReplies = false);
protected:
/** Called to handle a particular incoming message
@return true if you've guaranteed you've handled this message and no other handlers should be considered for it
*/
virtual bool handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshtastic_User *p) override;
/** Messages can be received that have the want_response bit set. If set, this callback will be invoked
2020-12-07 02:18:11 +00:00
* so that subclasses can (optionally) send a response back to the original sender. */
virtual meshtastic_MeshPacket *allocReply() override;
/** Does our periodic broadcast */
2022-01-24 17:24:40 +00:00
virtual int32_t runOnce() override;
private:
uint32_t lastSentToMesh = 0; // Last time we sent our NodeInfo to the mesh
};
2022-02-27 10:21:02 +00:00
extern NodeInfoModule *nodeInfoModule;