mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-08-14 07:23:38 -04:00
FunCube Pro input: implemented transverter feature
This commit is contained in:
@@ -22,5 +22,11 @@ const char *fcd_traits<ProPlus>::displayedName = "FunCube Dongle Pro+";
|
||||
const char *fcd_traits<Pro>::pluginDisplayedName = "FunCube Pro Input";
|
||||
const char *fcd_traits<ProPlus>::pluginDisplayedName = "FunCube Pro+ Input";
|
||||
|
||||
const char *fcd_traits<Pro>::pluginVersion = "3.5.0";
|
||||
const char *fcd_traits<Pro>::pluginVersion = "3.7.3";
|
||||
const char *fcd_traits<ProPlus>::pluginVersion = "3.5.0";
|
||||
|
||||
const int64_t fcd_traits<Pro>::loLowLimitFreq = 64000000L;
|
||||
const int64_t fcd_traits<ProPlus>::loLowLimitFreq = 64000000L;
|
||||
|
||||
const int64_t fcd_traits<Pro>::loHighLimitFreq = 1700000000L;
|
||||
const int64_t fcd_traits<ProPlus>::loHighLimitFreq = 1700000000L;
|
||||
|
||||
@@ -30,6 +30,8 @@ struct fcd_traits
|
||||
static const char *displayedName;
|
||||
static const char *pluginDisplayedName;
|
||||
static const char *pluginVersion;
|
||||
static const int64_t loLowLimitFreq;
|
||||
static const int64_t loHighLimitFreq;
|
||||
};
|
||||
|
||||
template<>
|
||||
@@ -46,6 +48,8 @@ struct fcd_traits<Pro>
|
||||
static const char *displayedName;
|
||||
static const char *pluginDisplayedName;
|
||||
static const char *pluginVersion;
|
||||
static const int64_t loLowLimitFreq;
|
||||
static const int64_t loHighLimitFreq;
|
||||
};
|
||||
|
||||
template<>
|
||||
@@ -62,6 +66,8 @@ struct fcd_traits<ProPlus>
|
||||
static const char *displayedName;
|
||||
static const char *pluginDisplayedName;
|
||||
static const char *pluginVersion;
|
||||
static const int64_t loLowLimitFreq;
|
||||
static const int64_t loHighLimitFreq;
|
||||
};
|
||||
|
||||
template <fcd_type FCDType> const char *fcd_traits<FCDType>::alsaDeviceName = "";
|
||||
|
||||
Reference in New Issue
Block a user