diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-11-04 11:55:33 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-11-12 12:11:33 -0800 |
commit | 09839fa23229daf00cb9b857806d47d2cac50057 (patch) | |
tree | 09068ed6dbda6747b1a1730885746c120c6eb934 /host/lib/rfnoc/mock_block.cpp | |
parent | bccc2b49ab25551c6fc104a0b69f69121b76031d (diff) | |
download | uhd-09839fa23229daf00cb9b857806d47d2cac50057.tar.gz uhd-09839fa23229daf00cb9b857806d47d2cac50057.tar.bz2 uhd-09839fa23229daf00cb9b857806d47d2cac50057.zip |
rfnoc: Add CHDR width to make args
This provides every block controller with a copy of its CHDR width.
Note: mock blocks always get configured with a 64-bit CHDR width, to
retain API compatibility.
Diffstat (limited to 'host/lib/rfnoc/mock_block.cpp')
-rw-r--r-- | host/lib/rfnoc/mock_block.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/rfnoc/mock_block.cpp b/host/lib/rfnoc/mock_block.cpp index 4332d078e..e867f06b4 100644 --- a/host/lib/rfnoc/mock_block.cpp +++ b/host/lib/rfnoc/mock_block.cpp @@ -6,6 +6,7 @@ #include <uhd/property_tree.hpp> #include <uhd/rfnoc/defaults.hpp> +#include <uhd/rfnoc/rfnoc_types.hpp> #include <uhd/rfnoc/mock_block.hpp> #include <uhd/types/device_addr.hpp> #include <uhdlib/rfnoc/clock_iface.hpp> @@ -36,6 +37,7 @@ uhd::rfnoc::mock_block_container uhd::rfnoc::get_mock_block(const noc_id_t noc_i ret_val.make_args->num_input_ports = num_inputs; ret_val.make_args->num_output_ports = num_outputs; ret_val.make_args->mtu = mtu; + ret_val.make_args->chdr_w = CHDR_W_64; ret_val.make_args->reg_iface = ret_val.reg_iface; ret_val.make_args->tree = ret_val.tree; ret_val.make_args->args = args; |