uhd/host/lib/usrp/common/adf435x.cpp
Martin Braun 6652eb4a03 uhd: Move internal headers to uhdlib/
To avoid the proliferation of additional include directories and
multiple ways of including project-local headers, we now default to
moving all headers that are used across UHD into the uhdlib/
subdirectory.

Some #include statements were also reordered as they were modified for
closer compliance with the coding guidelines.

Internal cpp source files should now include files like this:

    #include <uhdlib/rfnoc/ctrl_iface.hpp>

Reviewed-by: Ashish Chaudhari <ashish.chaudhari@ettus.com>
2018-03-14 15:17:44 -07:00

24 lines
521 B
C++

//
// Copyright 2013-2014 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <uhdlib/usrp/common/adf435x.hpp>
using namespace uhd;
adf435x_iface::~adf435x_iface()
{
}
adf435x_iface::sptr adf435x_iface::make_adf4350(write_fn_t write)
{
return sptr(new adf435x_impl<adf4350_regs_t>(write));
}
adf435x_iface::sptr adf435x_iface::make_adf4351(write_fn_t write)
{
return sptr(new adf435x_impl<adf4351_regs_t>(write));
}