blob: 90bdc35c551d82ac0425f20f442d53e60f16fc37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/* -*- c++ -*- */
/*
* Copyright 2019 Ettus Research, a National Instruments Brand.
* Copyright 2020 Free Software Foundation, Inc.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "rfnoc_block_generic_impl.h"
#include <gnuradio/uhd/rfnoc_graph.h>
namespace gr {
namespace uhd {
/******************************************************************************
* Factory and Structors
*****************************************************************************/
rfnoc_block_generic::sptr
rfnoc_block_generic::make(rfnoc_graph::sptr graph,
const ::uhd::device_addr_t& block_args,
const std::string& block_name,
const int device_select,
const int block_select)
{
return gnuradio::get_initial_sptr(
new rfnoc_block_generic_impl(rfnoc_block::make_block_ref(
graph, block_args, block_name, device_select, block_select)));
}
rfnoc_block_generic_impl::rfnoc_block_generic_impl(
::uhd::rfnoc::noc_block_base::sptr block_ref)
: rfnoc_block(block_ref)
{
}
rfnoc_block_generic_impl::~rfnoc_block_generic_impl() {}
} /* namespace uhd */
} /* namespace gr */
|