Skip to content

Commit

Permalink
add missing sample rates in getSampleRateRange()
Browse files Browse the repository at this point in the history
  • Loading branch information
fventuri committed Feb 14, 2024
1 parent bfe8570 commit 2c8169d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -905,9 +905,13 @@ SoapySDR::RangeList SoapySDRPlay::getSampleRateRange(const int direction, const
}

output_sample_rates.push_back(SoapySDR::Range(62500, 62500));
output_sample_rates.push_back(SoapySDR::Range(96000, 96000));
output_sample_rates.push_back(SoapySDR::Range(125000, 125000));
output_sample_rates.push_back(SoapySDR::Range(192000, 192000));
output_sample_rates.push_back(SoapySDR::Range(250000, 250000));
output_sample_rates.push_back(SoapySDR::Range(384000, 384000));
output_sample_rates.push_back(SoapySDR::Range(500000, 500000));
output_sample_rates.push_back(SoapySDR::Range(768000, 768000));
output_sample_rates.push_back(SoapySDR::Range(1000000, 1000000));
output_sample_rates.push_back(SoapySDR::Range(2000000, 10660000));
return output_sample_rates;
Expand Down

0 comments on commit 2c8169d

Please sign in to comment.