aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/block_container.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/rfnoc/block_container.cpp')
-rw-r--r--host/lib/rfnoc/block_container.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/host/lib/rfnoc/block_container.cpp b/host/lib/rfnoc/block_container.cpp
index 6bbb3828b..e7fd396ba 100644
--- a/host/lib/rfnoc/block_container.cpp
+++ b/host/lib/rfnoc/block_container.cpp
@@ -79,5 +79,12 @@ void block_container_t::shutdown()
for (auto it = _blocks.begin(); it != _blocks.end(); ++it) {
node_accessor.shutdown(it->get());
}
+}
+void block_container_t::init_props()
+{
+ node_accessor_t node_accessor{};
+ for (auto it = _blocks.begin(); it != _blocks.end(); ++it) {
+ node_accessor.init_props(it->get());
+ }
}