Don't send anybody to null island ever (#3308)

This commit is contained in:
Ben Meadors 2024-02-28 13:44:15 -06:00 committed by GitHub
parent 6acc63729b
commit bf88773b6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,6 +176,11 @@ 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