Skip to content

Commit

Permalink
fix mode
Browse files Browse the repository at this point in the history
  • Loading branch information
paulh002 committed Dec 9, 2023
1 parent 8aea613 commit 7709018
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions SoapyHifiBerrySettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,13 @@ SoapyHifiBerry::SoapyHifiBerry(const SoapySDR::Kwargs &args)
vfoIQMode = Single;
else if (IQMode == "IQSINGLE")
vfoIQMode = IQSingle;
else if (IQMode == "IQMulti")
else if (IQMode == "IQMULTI")
vfoIQMode = IQMulti;
else
vfoIQMode = IQSingleMultiPort;


cout << IQMode << " ";

if (vfoIQMode == Single || vfoIQMode == IQSingle || vfoIQMode == IQSingleMultiPort)
{
cout << "IQ mode single multiplier = " << multiplier << endl;
Expand Down

0 comments on commit 7709018

Please sign in to comment.