1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-12 11:26:11 -05:00

Recognize SDRplay RSP2 but do not support it effectively

This commit is contained in:
f4exb 2017-12-20 21:38:56 +01:00
parent 836b58c6ad
commit dbeeaa8f66
2 changed files with 4 additions and 1 deletions

View File

@ -112,6 +112,8 @@ bool SDRPlayInput::openDevice()
if (QString(product) == "RSP1A") {
m_variant = SDRPlayRSP1A;
} else if (QString(product) == "RSP2") {
m_variant = SDRPlayRSP2;
} else {
m_variant = SDRPlayRSP1;
}

View File

@ -34,7 +34,8 @@ public:
{
SDRPlayUndef,
SDRPlayRSP1,
SDRPlayRSP1A
SDRPlayRSP1A,
SDRPlayRSP2
};
class MsgConfigureSDRPlay : public Message {