mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
- 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
17 lines
491 B
C++
17 lines
491 B
C++
//
|
|
// Copyright 2013-2014, 2017 Ettus Research, A National Instruments Company
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
//
|
|
|
|
#include <uhdlib/usrp/common/adf535x.hpp>
|
|
|
|
adf535x_iface::sptr adf535x_iface::make_adf5355(write_fn_t write, wait_fn_t wait)
|
|
{
|
|
return std::make_shared<adf535x_impl<adf5355_regs_t>>(write, wait);
|
|
}
|
|
|
|
adf535x_iface::sptr adf535x_iface::make_adf5356(write_fn_t write, wait_fn_t wait)
|
|
{
|
|
return std::make_shared<adf535x_impl<adf5356_regs_t>>(write, wait);
|
|
}
|