firmware/src/plugins/esp32/StoreForwardPlugin.h

77 lines
1.9 KiB
C
Raw Normal View History

#pragma once
#include "SinglePortPlugin.h"
#include "concurrency/OSThread.h"
2021-11-29 03:34:35 +00:00
#include "mesh/generated/storeforward.pb.h"
#include "configuration.h"
#include <Arduino.h>
#include <functional>
2021-02-22 04:15:31 +00:00
struct PacketHistoryStruct {
uint32_t time;
uint32_t to;
2021-11-21 05:21:11 +00:00
uint32_t from;
2021-02-25 04:27:21 +00:00
bool ack;
2021-11-21 05:21:11 +00:00
uint8_t payload[Constants_DATA_PAYLOAD_LEN];
pb_size_t payload_size;
2021-02-22 04:15:31 +00:00
};
2021-03-18 04:03:11 +00:00
class StoreForwardPlugin : public SinglePortPlugin, private concurrency::OSThread
{
//bool firstTime = 1;
bool busy = 0;
uint32_t busyTo;
char routerMessage[80];
2021-02-17 01:42:46 +00:00
uint32_t receivedRecord[50][2] = {{0}};
2021-02-23 04:07:19 +00:00
PacketHistoryStruct *packetHistory;
2021-02-25 04:27:21 +00:00
uint32_t packetHistoryCurrent = 0;
2021-02-23 04:07:19 +00:00
PacketHistoryStruct *packetHistoryTXQueue;
uint32_t packetHistoryTXQueue_size;
uint32_t packetHistoryTXQueue_index = 0;
2021-11-21 22:43:47 +00:00
uint32_t packetTimeMax = 0;
public:
StoreForwardPlugin();
2021-02-17 01:42:46 +00:00
/**
Update our local reference of when we last saw that node.
@return 0 if we have never seen that node before otherwise return the last time we saw the node.
*/
2021-11-21 05:21:11 +00:00
void historyAdd(const MeshPacket &mp);
2021-02-25 04:27:21 +00:00
void historyReport();
void historySend(uint32_t msAgo, uint32_t to);
2021-02-17 01:42:46 +00:00
uint32_t historyQueueCreate(uint32_t msAgo, uint32_t to);
2021-03-18 04:03:11 +00:00
/**
* Send our payload into the mesh
*/
2021-11-21 05:21:11 +00:00
void sendPayload(NodeNum dest = NODENUM_BROADCAST, uint32_t packetHistory_index = 0);
2021-11-21 22:43:47 +00:00
void sendMessage(NodeNum dest, char *str);
2021-03-18 04:03:11 +00:00
virtual MeshPacket *allocReply();
2021-11-29 03:34:35 +00:00
/*
Override the wantPortnum method.
*/
virtual bool wantPortnum(PortNum p) { return true; };
2021-03-18 04:03:11 +00:00
2021-02-17 01:42:46 +00:00
private:
2021-11-21 22:43:47 +00:00
void populatePSRAM();
2021-02-17 01:42:46 +00:00
protected:
virtual int32_t runOnce();
2021-03-18 04:03:11 +00:00
/** Called to handle a particular incoming message
2021-11-18 17:36:39 +00:00
@return ProcessMessage::STOP if you've guaranteed you've handled this message and no other handlers should be considered for
it
2021-03-18 04:03:11 +00:00
*/
virtual ProcessMessage handleReceived(const MeshPacket &mp);
};
2021-11-21 05:35:13 +00:00
extern StoreForwardPlugin *storeForwardPlugin;