2020-12-05 10:00:46 +08:00
|
|
|
#pragma once
|
2022-03-09 19:01:43 +11:00
|
|
|
#include "ProtobufModule.h"
|
2020-12-05 10:00:46 +08:00
|
|
|
|
|
|
|
|
/**
|
2022-02-27 00:29:05 -08:00
|
|
|
* NodeInfo module for sending/receiving NodeInfos into the mesh
|
2020-12-05 10:00:46 +08:00
|
|
|
*/
|
2023-01-21 18:22:19 +01:00
|
|
|
class NodeInfoModule : public ProtobufModule<meshtastic_User>, private concurrency::OSThread
|
2020-12-05 10:00:46 +08:00
|
|
|
{
|
2021-02-11 17:39:53 +08:00
|
|
|
/// 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 14:34:29 +01:00
|
|
|
|
2021-02-14 12:27:10 +08:00
|
|
|
uint32_t currentGeneration = 0;
|
2023-01-21 14:34:29 +01:00
|
|
|
|
2020-12-05 10:00:46 +08:00
|
|
|
public:
|
|
|
|
|
/** Constructor
|
|
|
|
|
* name is for debugging output
|
|
|
|
|
*/
|
2022-02-27 02:21:02 -08:00
|
|
|
NodeInfoModule();
|
2023-01-21 14:34:29 +01:00
|
|
|
|
2020-12-05 10:00:46 +08:00
|
|
|
/**
|
|
|
|
|
* Send our NodeInfo into the mesh
|
|
|
|
|
*/
|
2024-08-14 17:17:53 -05:00
|
|
|
void sendOurNodeInfo(NodeNum dest = NODENUM_BROADCAST, bool wantReplies = false, uint8_t channel = 0,
|
|
|
|
|
bool _shorterTimeout = false);
|
2020-12-05 10:00:46 +08:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
*/
|
2023-01-21 18:22:19 +01:00
|
|
|
virtual bool handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshtastic_User *p) override;
|
2020-12-05 11:15:06 +08:00
|
|
|
|
2025-10-04 06:42:36 -05:00
|
|
|
/** Called to alter received User protobuf */
|
|
|
|
|
virtual void alterReceivedProtobuf(meshtastic_MeshPacket &mp, meshtastic_User *p) override;
|
|
|
|
|
|
2020-12-05 11:15:06 +08:00
|
|
|
/** Messages can be received that have the want_response bit set. If set, this callback will be invoked
|
2020-12-07 10:18:11 +08:00
|
|
|
* so that subclasses can (optionally) send a response back to the original sender. */
|
2023-01-21 18:22:19 +01:00
|
|
|
virtual meshtastic_MeshPacket *allocReply() override;
|
2021-02-14 12:27:10 +08:00
|
|
|
|
|
|
|
|
/** Does our periodic broadcast */
|
2022-01-24 17:24:40 +00:00
|
|
|
virtual int32_t runOnce() override;
|
2023-02-15 19:31:09 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
uint32_t lastSentToMesh = 0; // Last time we sent our NodeInfo to the mesh
|
2024-08-14 17:17:53 -05:00
|
|
|
bool shorterTimeout = false;
|
2020-12-05 10:00:46 +08:00
|
|
|
};
|
|
|
|
|
|
2022-02-27 02:21:02 -08:00
|
|
|
extern NodeInfoModule *nodeInfoModule;
|