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

tramp: moved common definitions to vtx_common

This commit is contained in:
Raphael Coeffic 2017-01-15 11:59:44 +01:00
parent 58a778c797
commit dddd09ae87
7 changed files with 37 additions and 44 deletions

View file

@ -1,3 +1,10 @@
#pragma once
#include <stdint.h>
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);