2020-12-05 02:00:46 +00:00
|
|
|
#pragma once
|
2022-03-09 08:01:43 +00:00
|
|
|
#include "ProtobufModule.h"
|
2021-02-14 03:57:48 +00:00
|
|
|
#include "concurrency/OSThread.h"
|
2020-12-03 08:48:44 +00:00
|
|
|
|
|
|
|
/**
|
2022-02-27 08:29:05 +00:00
|
|
|
* Position module for sending/receiving positions into the mesh
|
2020-12-03 08:48:44 +00:00
|
|
|
*/
|
2023-01-21 17:22:19 +00:00
|
|
|
class PositionModule : public ProtobufModule<meshtastic_Position>, private concurrency::OSThread
|
2020-12-03 08:48:44 +00:00
|
|
|
{
|
2021-02-11 09:39:53 +00:00
|
|
|
/// The id of the last packet we sent, to allow us to cancel it if we make something fresher
|
|
|
|
PacketId prevPacketId = 0;
|
|
|
|
|
2021-02-14 03:57:48 +00:00
|
|
|
/// We limit our GPS broadcasts to a max rate
|
|
|
|
uint32_t lastGpsSend = 0;
|
|
|
|
|
2021-11-27 03:12:00 +00:00
|
|
|
// Store the latest good lat / long
|
2021-12-05 18:20:16 +00:00
|
|
|
int32_t lastGpsLatitude = 0;
|
|
|
|
int32_t lastGpsLongitude = 0;
|
2021-11-27 03:12:00 +00:00
|
|
|
|
2021-02-14 03:57:48 +00:00
|
|
|
/// We force a rebroadcast if the radio settings change
|
|
|
|
uint32_t currentGeneration = 0;
|
|
|
|
|
2020-12-03 08:48:44 +00:00
|
|
|
public:
|
|
|
|
/** Constructor
|
|
|
|
* name is for debugging output
|
|
|
|
*/
|
2022-02-27 10:21:02 +00:00
|
|
|
PositionModule();
|
2023-01-21 13:34:29 +00:00
|
|
|
|
2020-12-03 08:48:44 +00:00
|
|
|
/**
|
|
|
|
* Send our position into the mesh
|
|
|
|
*/
|
2023-03-29 11:51:22 +00:00
|
|
|
void sendOurPosition(NodeNum dest = NODENUM_BROADCAST, bool wantReplies = false, uint8_t channel = 0);
|
2020-12-03 08:48:44 +00:00
|
|
|
|
2023-09-24 04:45:35 +00:00
|
|
|
void handleNewPosition();
|
|
|
|
|
2020-12-03 08:48:44 +00: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 17:22:19 +00:00
|
|
|
virtual bool handleReceivedProtobuf(const meshtastic_MeshPacket &mp, meshtastic_Position *p) override;
|
2020-12-05 03:15:06 +00:00
|
|
|
|
|
|
|
/** 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. */
|
2023-01-21 17:22:19 +00:00
|
|
|
virtual meshtastic_MeshPacket *allocReply() override;
|
2021-02-14 03:57:48 +00:00
|
|
|
|
|
|
|
/** Does our periodic broadcast */
|
2022-01-24 17:24:40 +00:00
|
|
|
virtual int32_t runOnce() override;
|
2023-09-27 15:32:35 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct SmartPosition getDistanceTraveledSinceLastSend(meshtastic_PositionLite currentPosition);
|
2024-02-17 02:04:21 +00:00
|
|
|
meshtastic_MeshPacket *allocAtakPli();
|
2024-02-22 18:32:01 +00:00
|
|
|
uint32_t precision;
|
2023-10-01 02:09:17 +00:00
|
|
|
|
|
|
|
/** Only used in power saving trackers for now */
|
|
|
|
void clearPosition();
|
2023-12-13 23:43:20 +00:00
|
|
|
void sendLostAndFoundText();
|
2023-09-27 15:32:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SmartPosition {
|
|
|
|
float distanceTraveled;
|
|
|
|
uint32_t distanceThreshold;
|
|
|
|
bool hasTraveledOverThreshold;
|
2020-12-03 08:48:44 +00:00
|
|
|
};
|
|
|
|
|
2023-10-01 02:09:17 +00:00
|
|
|
extern PositionModule *positionModule;
|