Skip to content

Commit

Permalink
just off the coast of NULL Island isn't OK either.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-bennett committed Mar 3, 2024
1 parent 3c3d391 commit 7ab9a94
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/modules/PositionModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@ meshtastic_MeshPacket *PositionModule::allocReply()
}
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!
LOG_DEBUG("Sending location with precision %i\n", precision);
if (precision < 32 && precision > 0) {
Expand Down Expand Up @@ -176,11 +181,6 @@ meshtastic_MeshPacket *PositionModule::allocReply()
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);

// TAK Tracker devices should send their position in a TAK packet over the ATAK port
Expand Down

0 comments on commit 7ab9a94

Please sign in to comment.