From d82d21246d4bc32997f6c92d0dd56cc0b5ef38a1 Mon Sep 17 00:00:00 2001 From: michael-west Date: Thu, 29 Nov 2018 12:20:16 -0800 Subject: TwinRX: Tuning improvements - Added delay for VTUNE calibration as per ADF5355 and ADF5356 data sheets - Increased SPI clock to 10 MHz - Removed write to register 10 during tuning of ADF5356 to match ADF5355 code and reduce tune time --- host/lib/usrp/common/adf535x.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'host/lib/usrp/common') diff --git a/host/lib/usrp/common/adf535x.cpp b/host/lib/usrp/common/adf535x.cpp index 67a94bcc1..ab81fbee7 100644 --- a/host/lib/usrp/common/adf535x.cpp +++ b/host/lib/usrp/common/adf535x.cpp @@ -6,12 +6,12 @@ #include -adf535x_iface::sptr adf535x_iface::make_adf5355(write_fn_t write) +adf535x_iface::sptr adf535x_iface::make_adf5355(write_fn_t write, wait_fn_t wait) { - return std::make_shared>(write); + return std::make_shared>(write, wait); } -adf535x_iface::sptr adf535x_iface::make_adf5356(write_fn_t write) +adf535x_iface::sptr adf535x_iface::make_adf5356(write_fn_t write, wait_fn_t wait) { - return std::make_shared>(write); -} \ No newline at end of file + return std::make_shared>(write, wait); +} -- cgit v1.2.3