2020-11-28 04:10:19 +00:00
|
|
|
#include "configuration.h"
|
|
|
|
#include "TextMessagePlugin.h"
|
|
|
|
#include "NodeDB.h"
|
|
|
|
#include "PowerFSM.h"
|
|
|
|
|
2021-01-08 05:15:49 +00:00
|
|
|
TextMessagePlugin *textMessagePlugin;
|
2020-11-28 04:10:19 +00:00
|
|
|
|
|
|
|
bool TextMessagePlugin::handleReceived(const MeshPacket &mp)
|
|
|
|
{
|
2021-02-17 05:06:23 +00:00
|
|
|
auto &p = mp.decoded;
|
2021-03-06 02:27:48 +00:00
|
|
|
DEBUG_MSG("Received text msg from=0x%0x, id=0x%x, msg=%.*s\n", mp.from, mp.id, p.payload.size, p.payload.bytes);
|
2020-11-28 04:10:19 +00:00
|
|
|
|
|
|
|
// We only store/display messages destined for us.
|
|
|
|
// Keep a copy of the most recent text message.
|
|
|
|
devicestate.rx_text_message = mp;
|
|
|
|
devicestate.has_rx_text_message = true;
|
|
|
|
|
|
|
|
powerFSM.trigger(EVENT_RECEIVED_TEXT_MSG);
|
|
|
|
notifyObservers(&mp);
|
|
|
|
|
|
|
|
return false; // Let others look at this message also if they want
|
|
|
|
}
|