mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-28 18:47:40 +00:00
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
#include "GroupPlugin.h"
|
|
#include "MeshService.h"
|
|
#include "Router.h"
|
|
#include "configuration.h"
|
|
#include "NodeDB.h"
|
|
|
|
|
|
GroupPlugin *groupPlugin;
|
|
|
|
|
|
|
|
GroupPlugin::GroupPlugin()
|
|
: ProtobufPlugin("group", PortNum_GROUP_APP, GroupInfo_fields), concurrency::OSThread("GroupPlugin")
|
|
{
|
|
//isPromiscuous = true; // We always want to update our nodedb, even if we are sniffing on others
|
|
//setIntervalFromNow(60 * 1000); // Send our initial position 60 seconds after we start (to give GPS time to setup)
|
|
}
|
|
|
|
bool GroupPlugin::handleReceivedProtobuf(const MeshPacket &mp, GroupInfo *pptr)
|
|
{
|
|
//auto p = *pptr;
|
|
|
|
|
|
|
|
return false; // Let others look at this message also if they want
|
|
}
|
|
|
|
MeshPacket *GroupPlugin::allocReply()
|
|
{
|
|
GroupInfo gi = GroupInfo_init_default; // Start with an empty structure
|
|
|
|
return allocDataProtobuf(gi);
|
|
}
|
|
|
|
int32_t GroupPlugin::runOnce()
|
|
{
|
|
NodeInfo *node = nodeDB.getNode(nodeDB.getNodeNum());
|
|
|
|
|
|
//ourGroupInfo.group[0][1] = "a";
|
|
|
|
return 5000; // to save power only wake for our callback occasionally
|
|
}
|