2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
27 #include "common/time.h"
29 #include "config/parameter_group.h"
32 VTX_LOW_POWER_DISARM_OFF
= 0,
33 VTX_LOW_POWER_DISARM_ALWAYS
= 1,
34 VTX_LOW_POWER_DISARM_UNTIL_FIRST_ARM
= 2, // Set low power until arming for the first time
35 } vtxLowerPowerDisarm_e
;
37 typedef struct vtxSettingsConfig_s
{
38 uint8_t band
; // 1=A, 2=B, 3=E, 4=F(Airwaves/Fatshark), 5=Racebande
39 uint8_t channel
; // 1-8
40 uint8_t power
; // 0 = lowest
41 uint16_t pitModeChan
; // sets out-of-range pitmode frequency
42 uint8_t lowPowerDisarm
; // min power while disarmed, from vtxLowerPowerDisarm_e
43 uint16_t maxPowerOverride
; // for VTX drivers that are polling VTX capabilities - override what VTX is reporting
44 uint8_t frequencyGroup
; // Frequencies being used, i.e. 5.8, 2.4, or 1.3 GHz
45 } vtxSettingsConfig_t
;
47 PG_DECLARE(vtxSettingsConfig_t
, vtxSettingsConfig
);
50 void vtxUpdate(timeUs_t currentTimeUs
);