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:
parent
836b58c6ad
commit
dbeeaa8f66
@ -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;
|
||||
}
|
||||
|
@ -34,7 +34,8 @@ public:
|
||||
{
|
||||
SDRPlayUndef,
|
||||
SDRPlayRSP1,
|
||||
SDRPlayRSP1A
|
||||
SDRPlayRSP1A,
|
||||
SDRPlayRSP2
|
||||
};
|
||||
|
||||
class MsgConfigureSDRPlay : public Message {
|
||||
|
Loading…
Reference in New Issue
Block a user