blob: 67a94bcc1f1307f0c5ea031874688d934e850046 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// 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)
{
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);
}
|