 |
USRP Hardware Driver and USRP Manual
Version: 4.0.0.0-0-unknown
UHD and USRP Manual
|
|
Go to the documentation of this file.
18 #define RFNOC_BLOCK_CONSTRUCTOR(CLASS_NAME) \
19 CLASS_NAME##_impl(make_args_ptr make_args) : CLASS_NAME(std::move(make_args))
21 #define RFNOC_DECLARE_BLOCK(CLASS_NAME) \
22 using sptr = std::shared_ptr<CLASS_NAME>; \
23 CLASS_NAME(make_args_ptr make_args) : noc_block_base(std::move(make_args)) {}
25 namespace uhd {
namespace rfnoc {
47 using sptr = std::shared_ptr<noc_block_base>;
63 return get_block_id().to_string();
74 return _num_input_ports;
85 return _num_output_ports;
258 void _set_tick_rate(
const double tick_rate);
279 size_t _num_input_ports;
282 size_t _num_output_ports;
286 std::vector<property_t<double>> _tick_rate_props;
293 std::vector<property_t<size_t>> _mtu_props;
296 std::unordered_map<res_source_info, size_t> _mtu;
299 std::shared_ptr<clock_iface> _ctrlport_clock_iface;
302 std::shared_ptr<clock_iface> _tb_clock_iface;
306 std::shared_ptr<mb_controller> _mb_controller;
uhd::device_addr_t get_block_args() const
Definition: noc_block_base.hpp:131
Definition: res_source_info.hpp:18
const block_id_t & get_block_id() const
Definition: noc_block_base.hpp:104
void set_num_output_ports(const size_t num_ports)
Update number of output ports.
Definition: block_id.hpp:40
Definition: register_iface_holder.hpp:19
size_t get_num_output_ports() const
Number of output ports. Note: This gets passed outto this block from the.
Definition: noc_block_base.hpp:83
Definition: noc_block_base.hpp:42
property_base_t * get_mtu_prop_ref(const res_source_info &edge)
noc_block_base(make_args_ptr make_args)
Definition: noc_block_make_args.hpp:24
void set_mtu_forwarding_policy(const forwarding_policy_t policy)
#define UHD_API
Definition: config.h:67
std::shared_ptr< property_tree > sptr
Definition: property_tree.hpp:217
uhd::property_tree::sptr & get_tree()
Return a reference to this block's subtree (non-const version)
Definition: noc_block_base.hpp:143
Definition: device_addr.hpp:38
virtual ~noc_block_base()
size_t get_num_input_ports() const
Number of input ports. Note: This gets passed into this block from the.
Definition: noc_block_base.hpp:72
std::shared_ptr< mb_controller > get_mb_controller()
double get_tick_rate() const
Definition: build_info.hpp:12
noc_id_t get_noc_id() const
Definition: noc_block_base.hpp:95
forwarding_policy_t
Types of property/action forwarding for those not defined by the block itself.
Definition: node.hpp:45
Definition: property.hpp:26
void set_mtu(const res_source_info &edge, const size_t new_mtu)
size_t get_mtu(const res_source_info &edge)
uhd::property_tree::sptr & get_tree() const
Return a reference to this block's subtree.
Definition: noc_block_base.hpp:137
std::string get_unique_id() const
Unique ID for an RFNoC block is its block ID.
Definition: noc_block_base.hpp:61
std::shared_ptr< noc_block_base > sptr
Definition: noc_block_base.hpp:47
void set_tick_rate(const double tick_rate)
uint32_t noc_id_t
Definition: defaults.hpp:54
std::unique_ptr< make_args_t > make_args_ptr
Opaque pointer to the constructor arguments.
Definition: noc_block_base.hpp:53
void set_num_input_ports(const size_t num_ports)
Update number of input ports.