constrain fastA2I to [0-9] (vice [0-9A])
[inav.git] / src / main / io / vtx.h
blob1a0fcaac48a261136a3b37413d4c26f2da7077a2
1 /*
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)
8 * any later version.
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/>.
21 #pragma once
23 #include <stdint.h>
25 #include "platform.h"
27 #include "common/time.h"
29 #include "config/parameter_group.h"
31 typedef enum {
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);
49 void vtxInit(void);
50 void vtxUpdate(timeUs_t currentTimeUs);