summaryrefslogtreecommitdiff
path: root/gr-uhd/lib/rfnoc_duc_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-uhd/lib/rfnoc_duc_impl.h')
-rw-r--r--gr-uhd/lib/rfnoc_duc_impl.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/gr-uhd/lib/rfnoc_duc_impl.h b/gr-uhd/lib/rfnoc_duc_impl.h
new file mode 100644
index 0000000000..1bf1306e31
--- /dev/null
+++ b/gr-uhd/lib/rfnoc_duc_impl.h
@@ -0,0 +1,37 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2019 Ettus Research, a National Instruments Brand.
+ * Copyright 2020 Free Software Foundation, Inc.
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+#ifndef INCLUDED_GR_UHD_RFNOC_DUC_IMPL_H
+#define INCLUDED_GR_UHD_RFNOC_DUC_IMPL_H
+
+#include <gnuradio/uhd/rfnoc_duc.h>
+#include <uhd/rfnoc/duc_block_control.hpp>
+
+namespace gr {
+namespace uhd {
+
+class rfnoc_duc_impl : public rfnoc_duc
+{
+public:
+ rfnoc_duc_impl(::uhd::rfnoc::noc_block_base::sptr block_ref);
+ ~rfnoc_duc_impl();
+
+ /*** API *****************************************************************/
+ double set_freq(const double freq,
+ const size_t chan,
+ const ::uhd::time_spec_t time = ::uhd::time_spec_t::ASAP);
+ double set_input_rate(const double rate, const size_t chan);
+
+private:
+ ::uhd::rfnoc::duc_block_control::sptr d_duc_ref;
+};
+
+} // namespace uhd
+} // namespace gr
+
+#endif /* INCLUDED_GR_UHD_RFNOC_DUC_IMPL_H */