1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 22:35:23 +03:00

fixed pre-processor directives

This commit is contained in:
Raphael Coeffic 2017-01-15 14:11:49 +01:00
parent c29f8a79ed
commit 07659576b1
3 changed files with 6 additions and 2 deletions

View file

@ -2,9 +2,13 @@
#include <stdint.h>
#if defined(VTX_CONTROL)
extern const uint16_t vtx58FreqTable[5][8];
extern const char * const vtx58BandNames[];
extern const char * const vtx58ChannelNames[];
extern const char vtx58BandLetter[];
bool vtx58_Freq2Bandchan(uint16_t freq, uint8_t *pBand, uint8_t *pChan);
#endif