Skip to content

Commit

Permalink
Merge pull request #88 from bazuchan/master
Browse files Browse the repository at this point in the history
Add support for Funcube Dongle Pro+
  • Loading branch information
csete committed Jul 16, 2013
2 parents 2c38110 + 9b30874 commit 31420fd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Gqrx
====

Gqrx is an experimental software defined radio receiver implemented using GNU Radio and the Qt GUI toolkit. Currently it works on Linux and Mac and supports the following devices:
- Funcube Dongle Pro (not Pro+)
- Funcube Dongle Pro (and Pro+ with latest gr-osmosdr)
- RTL2832U-based DVB-T dongles (rtlsdr)
- OsmoSDR
- USRP
Expand Down
9 changes: 8 additions & 1 deletion qtgui/ioconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,14 @@ void CIoConfig::updateInputSampleRates(int rate)

if (ui->inDevEdit->text().contains("fcd"))
{
ui->inSrCombo->addItem("96000");
if (ui->inDevCombo->currentText().contains("V2.0"))
{
ui->inSrCombo->addItem("192000");
}
else
{
ui->inSrCombo->addItem("96000");
}
}
else if (ui->inDevEdit->text().contains("rtl"))
{
Expand Down

0 comments on commit 31420fd

Please sign in to comment.