mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Size of frequency table (stride) is now fixed constant
This commit is contained in:
parent
96fc6dc934
commit
9b06b570e1
4 changed files with 21 additions and 4 deletions
|
@ -40,3 +40,13 @@ void vtxTableConfigClearBand(struct vtxTableConfig_s *config, int band);
|
|||
void vtxTableConfigClearPowerValues(struct vtxTableConfig_s *config, int start);
|
||||
void vtxTableConfigClearPowerLabels(struct vtxTableConfig_s *config, int start);
|
||||
void vtxTableConfigClearChannels(struct vtxTableConfig_s *config, int band, int channels);
|
||||
|
||||
extern int vtxTableBandCount;
|
||||
extern int vtxTableChannelCount;
|
||||
extern uint16_t vtxTableFrequency[VTX_TABLE_MAX_BANDS][VTX_TABLE_MAX_CHANNELS];
|
||||
extern const char * vtxTableBandNames[VTX_TABLE_MAX_BANDS + 1];
|
||||
extern char vtxTableBandLetters[VTX_TABLE_MAX_BANDS + 1];
|
||||
extern const char * vtxTableChannelNames[VTX_TABLE_MAX_CHANNELS + 1];
|
||||
extern int vtxTablePowerLevels;
|
||||
extern uint16_t vtxTablePowerValues[VTX_TABLE_MAX_POWER_LEVELS];
|
||||
extern const char * vtxTablePowerLabels[VTX_TABLE_MAX_POWER_LEVELS + 1];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue