aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Tsou <tom@tsou.cc>2015-01-19 09:54:17 -0800
committerTom Tsou <tom@tsou.cc>2015-01-19 09:59:41 -0800
commit722d4f70a4085448e0c02ba3fb9a4ee6a9077118 (patch)
tree4c625488a977c30d37ca61287cf510dc60a4898b
parent93b7f373097f3b1563ff327ffa163846b8da0987 (diff)
usrp1: Update device API for frequency offset tuning
Commit 8e17df7374367d57 "Add option for baseband frequency offset", modified the base device API to allow for RF tuning, which was never updated for the USRP1. Update the implementation to match the API, however, note actual offset in the USRP1 remains unsupported. Signed-off-by: Tom Tsou <tom@tsou.cc>
-rw-r--r--Transceiver52M/USRPDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Transceiver52M/USRPDevice.cpp b/Transceiver52M/USRPDevice.cpp
index e00d54e..bba8bb9 100644
--- a/Transceiver52M/USRPDevice.cpp
+++ b/Transceiver52M/USRPDevice.cpp
@@ -600,7 +600,7 @@ bool USRPDevice::setTxFreq(double wFreq) { return true;};
bool USRPDevice::setRxFreq(double wFreq) { return true;};
#endif
-RadioDevice *RadioDevice::make(size_t sps, size_t chans, bool diversity)
+RadioDevice *RadioDevice::make(size_t sps, size_t chans, bool diversity, double)
{
return new USRPDevice(sps, chans, diversity);
}