mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-06-19 14:48:03 +03:00
RX can now be set from 18MHz to 1300MHz, though TX is still restricted.
This commit is contained in:
@ -21,6 +21,9 @@
|
||||
|
||||
#include "radio.h"
|
||||
|
||||
extern const uint32_t bx_min_Hz;
|
||||
extern const uint32_t bx_max_Hz;
|
||||
|
||||
enum FREQUENCY_Band_t
|
||||
{
|
||||
BAND1_50MHz = 0,
|
||||
@ -34,13 +37,15 @@ enum FREQUENCY_Band_t
|
||||
|
||||
typedef enum FREQUENCY_Band_t FREQUENCY_Band_t;
|
||||
|
||||
extern const uint32_t LowerLimitFrequencyBandTable[7];
|
||||
extern const uint32_t MiddleFrequencyBandTable[7];
|
||||
extern const uint32_t UpperLimitFrequencyBandTable[7];
|
||||
extern const uint32_t LowerLimitFrequencyBandTable[7];
|
||||
extern const uint32_t MiddleFrequencyBandTable[7];
|
||||
extern const uint32_t UpperLimitFrequencyBandTable[7];
|
||||
|
||||
#ifndef DISABLE_NOAA
|
||||
extern const uint32_t NoaaFrequencyTable[10];
|
||||
extern const uint32_t NoaaFrequencyTable[10];
|
||||
#endif
|
||||
extern const uint16_t StepFrequencyTable[6];
|
||||
|
||||
extern const uint16_t StepFrequencyTable[6];
|
||||
|
||||
FREQUENCY_Band_t FREQUENCY_GetBand(uint32_t Frequency);
|
||||
uint8_t FREQUENCY_CalculateOutputPower(uint8_t TxpLow, uint8_t TxpMid, uint8_t TxpHigh, int32_t LowerLimit, int32_t Middle, int32_t UpperLimit, int32_t Frequency);
|
||||
|
Reference in New Issue
Block a user