1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-03-25 05:38:39 -04:00

SDRPlayInput: separate HW flavour from mirisdr_open

This commit is contained in:
ericek111 2022-07-18 15:52:40 +02:00
parent 528c28b0a8
commit 557147d09e
No known key found for this signature in database
GPG Key ID: 414DED726771329C

View File

@ -103,11 +103,17 @@ bool SDRPlayInput::openDevice()
return false;
}
if ((res = mirisdr_open(&m_dev, MIRISDR_HW_SDRPLAY, m_devNumber)) < 0)
if ((res = mirisdr_open(&m_dev, m_devNumber)) < 0)
{
qCritical("SDRPlayInput::openDevice: could not open SDRPlay #%d: %s", m_devNumber, strerror(errno));
return false;
}
if ((res = mirisdr_set_hw_flavour(m_dev, MIRISDR_HW_SDRPLAY)) < 0)
{
qCritical("SDRPlayInput::openDevice: failed to set HW flavour: %s", strerror(errno));
return false;
}
char vendor[256];
char product[256];