mirror of
https://github.com/meshtastic/firmware.git
synced 2026-01-01 23:50:38 +00:00
Rename startTransmitTimerSNR to startTransmitTimerRebroadcast
This commit is contained in:
@@ -43,7 +43,7 @@ void SimRadio::setTransmitDelay()
|
||||
} else {
|
||||
// If there is a SNR, start a timer scaled based on that SNR.
|
||||
LOG_DEBUG("rx_snr found. hop_limit:%d rx_snr:%f", p->hop_limit, p->rx_snr);
|
||||
startTransmitTimerSNR(p->rx_snr);
|
||||
startTransmitTimerRebroadcast(p->rx_snr);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ void SimRadio::startTransmitTimer(bool withDelay)
|
||||
}
|
||||
}
|
||||
|
||||
void SimRadio::startTransmitTimerSNR(float snr)
|
||||
void SimRadio::startTransmitTimerRebroadcast(float snr)
|
||||
{
|
||||
// If we have work to do and the timer wasn't already scheduled, schedule it now
|
||||
if (!txQueue.empty()) {
|
||||
|
||||
Reference in New Issue
Block a user