USRP Hardware Driver and USRP Manual Version: 4.1.0.1
UHD and USRP Manual
duc_block_control.hpp
Go to the documentation of this file.
1//
2// Copyright 2019 Ettus Research, a National Instruments Brand
3//
4// SPDX-License-Identifier: GPL-3.0-or-later
5//
6
7#pragma once
8
9#include <uhd/config.hpp>
11#include <uhd/types/ranges.hpp>
13#include <boost/optional.hpp>
14
15namespace uhd { namespace rfnoc {
16
31{
32public:
34
35 static const uint16_t MAJOR_COMPAT;
36 static const uint16_t MINOR_COMPAT;
37 // Readback addresses
38 static const uint32_t RB_COMPAT_NUM;
39 static const uint32_t RB_NUM_HB;
40 static const uint32_t RB_CIC_MAX_INTERP;
41 // Write addresses
42 static const uint32_t SR_N_ADDR;
43 static const uint32_t SR_M_ADDR;
44 static const uint32_t SR_CONFIG_ADDR;
45 static const uint32_t SR_FREQ_ADDR;
46 static const uint32_t SR_SCALE_IQ_ADDR;
47 static const uint32_t SR_INTERP_ADDR;
48 static const uint32_t SR_TIME_INCR_ADDR;
49
69 virtual double set_freq(const double freq,
70 const size_t chan,
71 const boost::optional<uhd::time_spec_t> time = boost::none) = 0;
72
77 virtual double get_freq(const size_t chan) const = 0;
78
83 virtual uhd::freq_range_t get_frequency_range(const size_t chan) const = 0;
84
90 virtual double get_input_rate(const size_t chan) const = 0;
91
99 virtual double get_output_rate(const size_t chan) const = 0;
100
106 virtual void set_output_rate(const double rate, const size_t chan) = 0;
107
113 virtual uhd::meta_range_t get_input_rates(const size_t chan) const = 0;
114
125 virtual double set_input_rate(const double rate, const size_t chan) = 0;
126};
127
128}} // namespace uhd::rfnoc
Definition: duc_block_control.hpp:31
Definition: noc_block_base.hpp:42
Definition: time_spec.hpp:31
#define UHD_API
Definition: config.h:70
Definition: build_info.hpp:12
#define RFNOC_DECLARE_BLOCK(CLASS_NAME)
Definition: noc_block_base.hpp:21
Definition: ranges.hpp:65