Compare commits

..

No commits in common. "7649e70585ab1fa9a67924c7e5ab4a85b4bf702a" and "fd56995764c3ea003a989e85965e197617854e3c" have entirely different histories.

3 changed files with 11 additions and 26 deletions

View File

@ -2662,14 +2662,13 @@ int Screen::handleStatusUpdate(const meshtastic::Status *arg)
int Screen::handleTextMessage(const meshtastic_MeshPacket *packet) int Screen::handleTextMessage(const meshtastic_MeshPacket *packet)
{ {
if (showingNormalScreen) { // If auto carousel is disabled -> return 0 and skip new messages handling
// Outgoing message if (config.display.auto_screen_carousel_secs == 0)
if (packet->from == 0) return 0;
setFrames(FOCUS_PRESERVE); // Return to same frame (quietly hiding the rx text message frame)
// Incoming message // Handle focus change based on message type
else if (showingNormalScreen) {
setFrames(FOCUS_TEXTMESSAGE); // Focus on the new message setFrames(packet->from == 0 ? FOCUS_PRESERVE : FOCUS_TEXTMESSAGE);
} }
return 0; return 0;
@ -2756,4 +2755,4 @@ int Screen::handleAdminMessage(const meshtastic_AdminMessage *arg)
} // namespace graphics } // namespace graphics
#else #else
graphics::Screen::Screen(ScanI2C::DeviceAddress, meshtastic_Config_DisplayConfig_OledType, OLEDDISPLAY_GEOMETRY) {} graphics::Screen::Screen(ScanI2C::DeviceAddress, meshtastic_Config_DisplayConfig_OledType, OLEDDISPLAY_GEOMETRY) {}
#endif // HAS_SCREEN #endif // HAS_SCREEN

View File

@ -160,8 +160,7 @@ bool PositionModule::hasGPS()
#endif #endif
} }
// Allocate a packet with our position data if we have one meshtastic_MeshPacket *PositionModule::allocReply()
meshtastic_MeshPacket *PositionModule::allocPositionPacket()
{ {
if (precision == 0) { if (precision == 0) {
LOG_DEBUG("Skip location send because precision is set to 0!"); LOG_DEBUG("Skip location send because precision is set to 0!");
@ -263,8 +262,7 @@ meshtastic_MeshPacket *PositionModule::allocPositionPacket()
p.has_ground_speed = true; p.has_ground_speed = true;
} }
LOG_INFO("Position packet: time=%i lat=%i lon=%i", p.time, p.latitude_i, p.longitude_i); LOG_INFO("Position reply: time=%i lat=%i lon=%i", p.time, p.latitude_i, p.longitude_i);
lastSentToMesh = millis();
// TAK Tracker devices should send their position in a TAK packet over the ATAK port // TAK Tracker devices should send their position in a TAK packet over the ATAK port
if (config.device.role == meshtastic_Config_DeviceConfig_Role_TAK_TRACKER) if (config.device.role == meshtastic_Config_DeviceConfig_Role_TAK_TRACKER)
@ -273,16 +271,6 @@ meshtastic_MeshPacket *PositionModule::allocPositionPacket()
return allocDataProtobuf(p); return allocDataProtobuf(p);
} }
meshtastic_MeshPacket *PositionModule::allocReply()
{
if (lastSentToMesh && Throttle::isWithinTimespanMs(lastSentToMesh, 3 * 60 * 1000)) {
LOG_DEBUG("Skip Position reply since we sent it <3min ago");
ignoreRequest = true; // Mark it as ignored for MeshModule
return nullptr;
}
return allocPositionPacket();
}
meshtastic_MeshPacket *PositionModule::allocAtakPli() meshtastic_MeshPacket *PositionModule::allocAtakPli()
{ {
LOG_INFO("Send TAK PLI packet"); LOG_INFO("Send TAK PLI packet");
@ -345,9 +333,9 @@ void PositionModule::sendOurPosition(NodeNum dest, bool wantReplies, uint8_t cha
precision = 0; precision = 0;
} }
meshtastic_MeshPacket *p = allocPositionPacket(); meshtastic_MeshPacket *p = allocReply();
if (p == nullptr) { if (p == nullptr) {
LOG_DEBUG("allocPositionPacket returned a nullptr"); LOG_DEBUG("allocReply returned a nullptr");
return; return;
} }

View File

@ -55,7 +55,6 @@ class PositionModule : public ProtobufModule<meshtastic_Position>, private concu
virtual int32_t runOnce() override; virtual int32_t runOnce() override;
private: private:
meshtastic_MeshPacket *allocPositionPacket();
struct SmartPosition getDistanceTraveledSinceLastSend(meshtastic_PositionLite currentPosition); struct SmartPosition getDistanceTraveledSinceLastSend(meshtastic_PositionLite currentPosition);
meshtastic_MeshPacket *allocAtakPli(); meshtastic_MeshPacket *allocAtakPli();
void trySetRtc(meshtastic_Position p, bool isLocal, bool forceUpdate = false); void trySetRtc(meshtastic_Position p, bool isLocal, bool forceUpdate = false);
@ -63,7 +62,6 @@ class PositionModule : public ProtobufModule<meshtastic_Position>, private concu
void sendLostAndFoundText(); void sendLostAndFoundText();
bool hasQualityTimesource(); bool hasQualityTimesource();
bool hasGPS(); bool hasGPS();
uint32_t lastSentToMesh = 0; // Last time we sent our position to the mesh
const uint32_t minimumTimeThreshold = const uint32_t minimumTimeThreshold =
Default::getConfiguredOrDefaultMs(config.position.broadcast_smart_minimum_interval_secs, 30); Default::getConfiguredOrDefaultMs(config.position.broadcast_smart_minimum_interval_secs, 30);