-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathzluudgbeeRX_block_ctrl.hpp
46 lines (38 loc) · 1.42 KB
/
zluudgbeeRX_block_ctrl.hpp
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
44
45
46
/* -*- c++ -*- */
/*
* Copyright 2019 Leon Fernandez (zluudg).
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_LIBUHD_RFNOC_ZLUUDGBEE_ZLUUDGBEERX_HPP
#define INCLUDED_LIBUHD_RFNOC_ZLUUDGBEE_ZLUUDGBEERX_HPP
#include <uhd/rfnoc/source_block_ctrl_base.hpp>
#include <uhd/rfnoc/sink_block_ctrl_base.hpp>
namespace uhd {
namespace rfnoc {
/*! \brief Block controller for the standard copy RFNoC block.
*
*/
class UHD_API zluudgbeeRX_block_ctrl : public source_block_ctrl_base, public sink_block_ctrl_base
{
public:
UHD_RFNOC_BLOCK_OBJECT(zluudgbeeRX_block_ctrl)
/*!
* Your block configuration here
*/
}; /* class zluudgbeeRX_block_ctrl*/
}} /* namespace uhd::rfnoc */
#endif /* INCLUDED_LIBUHD_RFNOC_ZLUUDGBEE_ZLUUDGBEERX_BLOCK_CTRL_HPP */