mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 07:21:14 -05:00
24 lines
792 B
C++
24 lines
792 B
C++
/*
|
|
* fcdtraits.cpp
|
|
*
|
|
* Created on: Sep 5, 2015
|
|
* Author: f4exb
|
|
*/
|
|
|
|
#include "fcdtraits.h"
|
|
|
|
const char *fcd_traits<Pro>::alsaDeviceName = "hw:CARD=V10";
|
|
const char *fcd_traits<ProPlus>::alsaDeviceName = "hw:CARD=V20";
|
|
|
|
const char *fcd_traits<Pro>::interfaceIID = "sdrangel.samplesource.fcdpro";
|
|
const char *fcd_traits<ProPlus>::interfaceIID = "sdrangel.samplesource.fcdproplus";
|
|
|
|
const char *fcd_traits<Pro>::displayedName = "FunCube Dongle Pro";
|
|
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";
|