0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 22:31:25 +03:00

User TX low power setting update

This commit is contained in:
OneOfEleven 2023-11-24 18:11:00 +00:00
parent ecfc99c81c
commit a49af16dda
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -631,7 +631,7 @@ void RADIO_ConfigureTXPower(vfo_info_t *p_vfo)
#endif #endif
if (p_vfo->channel.tx_power == OUTPUT_POWER_USER) if (p_vfo->channel.tx_power == OUTPUT_POWER_USER)
p_vfo->txp_reg_value = 8 + (p_vfo->channel.tx_power_user * 2); p_vfo->txp_reg_value = 8 + (p_vfo->channel.tx_power_user * 1);
else else
p_vfo->txp_reg_value = FREQUENCY_CalculateOutputPower(tx_power[0], tx_power[1], tx_power[2], p_vfo->p_tx->frequency); p_vfo->txp_reg_value = FREQUENCY_CalculateOutputPower(tx_power[0], tx_power[1], tx_power[2], p_vfo->p_tx->frequency);
} }