From 893609252b1935fc6d27aedaaf653f4ae62cfed4 Mon Sep 17 00:00:00 2001 From: Derek Kozel Date: Thu, 7 Dec 2017 18:04:36 +0000 Subject: TwinRX: Added ADF5356 synth and TwinRX Rev C support ADF5355 and ADF5356 support merged into adf535x class Default register values moved into regmap Reviewed-By: Martin Braun Reviewed-By: Ashish Chaudhari Reviewed-By: Mark Meserve --- host/lib/usrp/common/adf535x.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 host/lib/usrp/common/adf535x.cpp (limited to 'host/lib/usrp/common/adf535x.cpp') diff --git a/host/lib/usrp/common/adf535x.cpp b/host/lib/usrp/common/adf535x.cpp new file mode 100644 index 000000000..1cd802b41 --- /dev/null +++ b/host/lib/usrp/common/adf535x.cpp @@ -0,0 +1,17 @@ +// +// Copyright 2013-2014, 2017 Ettus Research, A National Instruments Company +// +// SPDX-License-Identifier: GPL-3.0 +// + +#include "adf535x.hpp" + +adf535x_iface::sptr adf535x_iface::make_adf5355(write_fn_t write) +{ + return sptr(new adf535x_impl(write)); +} + +adf535x_iface::sptr adf535x_iface::make_adf5356(write_fn_t write) +{ + return sptr(new adf535x_impl(write)); +} \ No newline at end of file -- cgit v1.2.3