mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-27 02:14:37 +00:00
Chance calculation for Nice TX. Still same value but dynamically based on duty cycle.
This commit is contained in:
parent
e3fd17772d
commit
bd51cbd721
@ -132,7 +132,7 @@ bool AirTime::isTxAllowedChannelUtil(bool polite)
|
||||
bool AirTime::isTxAllowedAirUtil()
|
||||
{
|
||||
if (!config.lora.override_duty_cycle && myRegion->dutyCycle < 100) {
|
||||
if (utilizationTXPercent() < polite_tx_util_percent) {
|
||||
if (utilizationTXPercent() < myRegion->dutyCycle * polite_tx_util_percent / 100) {
|
||||
return true;
|
||||
} else {
|
||||
LOG_WARN("Tx air utilization is >%d percent. Skipping this opportunity to send.\n", polite_tx_util_percent);
|
||||
|
@ -70,7 +70,7 @@ class AirTime : private concurrency::OSThread
|
||||
uint32_t secSinceBoot = 0;
|
||||
uint8_t max_channel_util_percent = 40;
|
||||
uint8_t polite_channel_util_percent = 25;
|
||||
uint8_t polite_tx_util_percent = 5;
|
||||
uint8_t polite_tx_util_percent = 50; // half of Duty Cycle allowance
|
||||
|
||||
struct airtimeStruct {
|
||||
uint32_t periodTX[PERIODS_TO_LOG]; // AirTime transmitted
|
||||
|
Loading…
Reference in New Issue
Block a user