mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-13 10:03:57 -03:00
AP_VideoTX: with SmartAudio v2 set the power level rather than power in dBm
This commit is contained in:
parent
968d05a637
commit
f7e23566ac
@ -480,7 +480,11 @@ void AP_SmartAudio::update_vtx_settings(const Settings& settings)
|
||||
vtx.set_frequency_mhz(settings.frequency);
|
||||
vtx.set_band(settings.band);
|
||||
vtx.set_channel(settings.channel);
|
||||
if (settings.version == SMARTAUDIO_SPEC_PROTOCOL_v21) {
|
||||
vtx.set_power_dbm(settings.power_in_dbm);
|
||||
} else {
|
||||
vtx.set_power_level(settings.power);
|
||||
}
|
||||
// it seems like the spec is wrong, on a unify pro32 this setting is inverted
|
||||
_vtx_use_set_freq = !(settings.mode & 1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user