mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-04 06:54:39 -04:00
Tx support: interim state (1)
This commit is contained in:
@@ -10,6 +10,9 @@
|
||||
const char *fcd_traits<Pro>::alsaDeviceName = "hw:CARD=V10";
|
||||
const char *fcd_traits<ProPlus>::alsaDeviceName = "hw:CARD=V20";
|
||||
|
||||
const char *fcd_traits<Pro>::hardwareID = "FCDPro";
|
||||
const char *fcd_traits<ProPlus>::hardwareID = "FCDPro+";
|
||||
|
||||
const char *fcd_traits<Pro>::interfaceIID = "sdrangel.samplesource.fcdpro";
|
||||
const char *fcd_traits<ProPlus>::interfaceIID = "sdrangel.samplesource.fcdproplus";
|
||||
|
||||
@@ -19,5 +22,5 @@ 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 = "2.0.0";
|
||||
const char *fcd_traits<ProPlus>::pluginVersion = "2.0.0";
|
||||
const char *fcd_traits<Pro>::pluginVersion = "3.0.0";
|
||||
const char *fcd_traits<ProPlus>::pluginVersion = "3.0.0";
|
||||
|
||||
@@ -25,6 +25,7 @@ struct fcd_traits
|
||||
static const int convBufSize = (1<<11);
|
||||
static const int fcdBufSize = (1<<12);
|
||||
static const char *alsaDeviceName;
|
||||
static const char *hardwareID;
|
||||
static const char *interfaceIID;
|
||||
static const char *displayedName;
|
||||
static const char *pluginDisplayedName;
|
||||
@@ -40,6 +41,7 @@ struct fcd_traits<Pro>
|
||||
static const int convBufSize = (1<<11);
|
||||
static const int fcdBufSize = (1<<12);
|
||||
static const char *alsaDeviceName;
|
||||
static const char *hardwareID;
|
||||
static const char *interfaceIID;
|
||||
static const char *displayedName;
|
||||
static const char *pluginDisplayedName;
|
||||
@@ -55,6 +57,7 @@ struct fcd_traits<ProPlus>
|
||||
static const int convBufSize = (1<<12);
|
||||
static const int fcdBufSize = (1<<18);
|
||||
static const char *alsaDeviceName;
|
||||
static const char *hardwareID;
|
||||
static const char *interfaceIID;
|
||||
static const char *displayedName;
|
||||
static const char *pluginDisplayedName;
|
||||
@@ -62,6 +65,7 @@ struct fcd_traits<ProPlus>
|
||||
};
|
||||
|
||||
template <fcd_type FCDType> const char *fcd_traits<FCDType>::alsaDeviceName = "";
|
||||
template <fcd_type FCDType> const char *fcd_traits<FCDType>::hardwareID = "";
|
||||
template <fcd_type FCDType> const char *fcd_traits<FCDType>::interfaceIID = "";
|
||||
template <fcd_type FCDType> const char *fcd_traits<FCDType>::displayedName = "";
|
||||
template <fcd_type FCDType> const char *fcd_traits<FCDType>::pluginDisplayedName = "";
|
||||
|
||||
Reference in New Issue
Block a user