USRP Hardware Driver and USRP Manual  Version: 4.6.0.0-7-gece7c4811
UHD and USRP Manual
ddc_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>
12 #include <boost/optional.hpp>
13 
14 namespace uhd { namespace rfnoc {
15 
32 {
33 public:
35 
36  static const uint16_t MAJOR_COMPAT;
37  static const uint16_t MINOR_COMPAT;
38  // Readback addresses
39  static const uint32_t RB_COMPAT_NUM;
40  static const uint32_t RB_NUM_HB;
41  static const uint32_t RB_CIC_MAX_DECIM;
42  // Write addresses
43  static const uint32_t SR_N_ADDR;
44  static const uint32_t SR_M_ADDR;
45  static const uint32_t SR_CONFIG_ADDR;
46  static const uint32_t SR_FREQ_ADDR;
47  static const uint32_t SR_SCALE_IQ_ADDR;
48  static const uint32_t SR_DECIM_ADDR;
49  static const uint32_t SR_MUX_ADDR;
50  static const uint32_t SR_COEFFS_ADDR;
51  static const uint32_t SR_TIME_INCR_ADDR;
52 
72  virtual double set_freq(const double freq,
73  const size_t chan,
74  const boost::optional<uhd::time_spec_t> time = boost::none) = 0;
75 
80  virtual double get_freq(const size_t chan) const = 0;
81 
93  virtual uhd::freq_range_t get_frequency_range(const size_t chan) const = 0;
94 
100  virtual double get_input_rate(const size_t chan) const = 0;
101 
107  virtual void set_input_rate(const double rate, const size_t chan) = 0;
108 
116  virtual double get_output_rate(const size_t chan) const = 0;
117 
123  virtual uhd::meta_range_t get_output_rates(const size_t chan) const = 0;
124 
135  virtual double set_output_rate(const double rate, const size_t chan) = 0;
136 
137  /**************************************************************************
138  * Streaming-Related API Calls
139  *************************************************************************/
145  virtual void issue_stream_cmd(
146  const uhd::stream_cmd_t& stream_cmd, const size_t port) = 0;
147 };
148 
149 }} // namespace uhd::rfnoc
Definition: stream_cmd.hpp:39
Definition: time_spec.hpp:28
#define RFNOC_DECLARE_BLOCK(CLASS_NAME)
Definition: noc_block_base.hpp:22
Definition: build_info.hpp:12
Definition: noc_block_base.hpp:42
#define UHD_API
Definition: config.h:87
Definition: ranges.hpp:65
Definition: ddc_block_control.hpp:31