diff options
author | Sugandha Gupta <sugandha.gupta@ettus.com> | 2018-06-22 14:49:33 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-06-22 09:13:11 -0700 |
commit | b5be620d1922e924eb5da5bf26955b570eab2584 (patch) | |
tree | 9a6f3c06c1a51c3524ce027f8104d37efb0fadf4 /host/include | |
parent | 068c9cf64541338a62bab06a57b62f5a917fae84 (diff) | |
download | uhd-b5be620d1922e924eb5da5bf26955b570eab2584.tar.gz uhd-b5be620d1922e924eb5da5bf26955b570eab2584.tar.bz2 uhd-b5be620d1922e924eb5da5bf26955b570eab2584.zip |
RFNoC: Add Siggen block controller
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/rfnoc/siggen_block_ctrl.hpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/host/include/uhd/rfnoc/siggen_block_ctrl.hpp b/host/include/uhd/rfnoc/siggen_block_ctrl.hpp new file mode 100644 index 000000000..3d21ca258 --- /dev/null +++ b/host/include/uhd/rfnoc/siggen_block_ctrl.hpp @@ -0,0 +1,25 @@ +// +// Copyright 2014-2018 Ettus Research, a National Instruments Company +// +// SPDX-License-Identifier: GPL-3.0-or-later +// + +#ifndef INCLUDED_LIBUHD_RFNOC_SIGGEN_BLOCK_CTRL_HPP +#define INCLUDED_LIBUHD_RFNOC_SIGGEN_BLOCK_CTRL_HPP + +#include <uhd/rfnoc/source_block_ctrl_base.hpp> +#include <uhd/rfnoc/sink_block_ctrl_base.hpp> + +namespace uhd { + namespace rfnoc { + +class UHD_RFNOC_API siggen_block_ctrl : public source_block_ctrl_base, public sink_block_ctrl_base +{ +public: + UHD_RFNOC_BLOCK_OBJECT(siggen_block_ctrl) + +}; /* class siggen_block_ctrl*/ + +}} /* namespace uhd::rfnoc */ + +#endif /* INCLUDED_LIBUHD_RFNOC_SIGGEN_BLOCK_CTRL_HPP */ |