just off the coast of NULL Island isn't OK either.

This commit is contained in:
Jonathan Bennett 2024-03-03 11:19:30 -06:00
parent 3c3d391044
commit 7ab9a94edb

View File

@ -116,6 +116,11 @@ meshtastic_MeshPacket *PositionModule::allocReply()
} }
localPosition.seq_number++; localPosition.seq_number++;
if (localPosition.latitude_i == 0 && localPosition.longitude_i == 0) {
LOG_WARN("Skipping position send because lat/lon are zero!\n");
return nullptr;
}
// lat/lon are unconditionally included - IF AVAILABLE! // lat/lon are unconditionally included - IF AVAILABLE!
LOG_DEBUG("Sending location with precision %i\n", precision); LOG_DEBUG("Sending location with precision %i\n", precision);
if (precision < 32 && precision > 0) { if (precision < 32 && precision > 0) {
@ -176,11 +181,6 @@ meshtastic_MeshPacket *PositionModule::allocReply()
LOG_INFO("Providing time to mesh %u\n", p.time); LOG_INFO("Providing time to mesh %u\n", p.time);
} }
if (p.latitude_i == 0 && p.longitude_i == 0) {
LOG_WARN("Skipping position send because lat/lon are zero!\n");
return nullptr;
}
LOG_INFO("Position reply: time=%i, latI=%i, lonI=%i\n", p.time, p.latitude_i, p.longitude_i); LOG_INFO("Position reply: time=%i, latI=%i, lonI=%i\n", p.time, p.latitude_i, p.longitude_i);
// 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