feat: update default power setting in tx_params_t structure to TX_POWER_AUTO

This commit is contained in:
2025-08-18 16:11:22 +08:00
parent 70a51cdb5c
commit 3bcc5bf273
2 changed files with 1 additions and 3 deletions

View File

@ -232,7 +232,7 @@ struct tx_params_t {
static tx_params_t Default() {
return tx_params_t{
.power = MAX_POWER_HIGH_PA,
.power = TX_POWER_AUTO,
.ramp_time = SET_RAMP_200U,
};
}