aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/common/adf535x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/common/adf535x.cpp')
-rw-r--r--host/lib/usrp/common/adf535x.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/host/lib/usrp/common/adf535x.cpp b/host/lib/usrp/common/adf535x.cpp
new file mode 100644
index 000000000..4289d7493
--- /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 std::make_shared<adf535x_impl<adf5355_regs_t>>(write);
+}
+
+adf535x_iface::sptr adf535x_iface::make_adf5356(write_fn_t write)
+{
+ return std::make_shared<adf535x_impl<adf5356_regs_t>>(write);
+} \ No newline at end of file