Skip to content

Commit

Permalink
Don't send me to null island, please (#1576)
Browse files Browse the repository at this point in the history
* Don't send me to null island, please

* Typo

Co-authored-by: Sacha Weatherstone <[email protected]>
  • Loading branch information
thebentern and sachaw authored Jul 30, 2022
1 parent f0518bc commit fd27a81
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/modules/PositionModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,22 +133,22 @@ int32_t PositionModule::runOnce()

// Only send packets if the channel is less than 40% utilized.
if (airTime->channelUtilizationPercent() < 40) {
if (node->has_position && (node->position.latitude_i != 0 || node->position.longitude_i != 0)) {
lastGpsSend = now;

lastGpsSend = now;
lastGpsLatitude = node->position.latitude_i;
lastGpsLongitude = node->position.longitude_i;

lastGpsLatitude = node->position.latitude_i;
lastGpsLongitude = node->position.longitude_i;
// If we changed channels, ask everyone else for their latest info
bool requestReplies = currentGeneration != radioGeneration;
currentGeneration = radioGeneration;

// If we changed channels, ask everyone else for their latest info
bool requestReplies = currentGeneration != radioGeneration;
currentGeneration = radioGeneration;

DEBUG_MSG("Sending pos@%x:6 to mesh (wantReplies=%d)\n", node->position.pos_timestamp, requestReplies);

sendOurPosition(NODENUM_BROADCAST, requestReplies);
DEBUG_MSG("Sending pos@%x:6 to mesh (wantReplies=%d)\n", node->position.pos_timestamp, requestReplies);

sendOurPosition(NODENUM_BROADCAST, requestReplies);
}
} else {
DEBUG_MSG("Channel utilization is >50 percent. Skipping this opportunity to send.\n");
DEBUG_MSG("Channel utilization is >40 percent. Skipping this opportunity to send.\n");
}

} else if (!config.position.position_broadcast_smart_disabled) {
Expand Down

0 comments on commit fd27a81

Please sign in to comment.