mirror of
https://github.com/meshtastic/firmware.git
synced 2025-06-22 04:54:47 +00:00

This reverts commit5cc8ca59a3
. Revert "Sync Wio lr1110 refresh with master (#4251)" This reverts commitd97e6b86b8
. Revert "update SD_FLASH_SIZE to 0x27000 (#4232)" This reverts commit2df8093fef
.
33 lines
1.0 KiB
C++
33 lines
1.0 KiB
C++
#pragma once
|
|
#include "Observer.h"
|
|
#include "SinglePortModule.h"
|
|
|
|
/**
|
|
* Waypoint message handling for meshtastic
|
|
*/
|
|
class WaypointModule : public SinglePortModule, public Observable<const UIFrameEvent *>
|
|
{
|
|
public:
|
|
/** Constructor
|
|
* name is for debugging output
|
|
*/
|
|
WaypointModule() : SinglePortModule("waypoint", meshtastic_PortNum_WAYPOINT_APP) {}
|
|
#if HAS_SCREEN
|
|
bool shouldDraw();
|
|
#endif
|
|
protected:
|
|
/** Called to handle a particular incoming message
|
|
|
|
@return ProcessMessage::STOP if you've guaranteed you've handled this message and no other handlers should be considered for
|
|
it
|
|
*/
|
|
|
|
virtual Observable<const UIFrameEvent *> *getUIFrameObservable() override { return this; }
|
|
#if HAS_SCREEN
|
|
virtual bool wantUIFrame() override { return this->shouldDraw(); }
|
|
virtual void drawFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16_t x, int16_t y) override;
|
|
#endif
|
|
virtual ProcessMessage handleReceived(const meshtastic_MeshPacket &mp) override;
|
|
};
|
|
|
|
extern WaypointModule *waypointModule; |