aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/rfnoc/node.hpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/host/include/uhd/rfnoc/node.hpp b/host/include/uhd/rfnoc/node.hpp
index 9d66c516a..0a49d1609 100644
--- a/host/include/uhd/rfnoc/node.hpp
+++ b/host/include/uhd/rfnoc/node.hpp
@@ -570,6 +570,13 @@ private:
_resolve_all_cb = resolver;
}
+ /*! Restores the default property resolution behavior of the node.
+ */
+ void clear_resolve_all_callback()
+ {
+ _resolve_all_cb = _default_resolve_all_cb;
+ }
+
/*! Forward the value of an edge property into this node
*
* Note that \p incoming_prop is a reference to the neighbouring node's
@@ -655,7 +662,11 @@ private:
//! A callback that can be called to notify the graph manager that something
// has changed, and that a property resolution needs to be performed.
- resolve_callback_t _resolve_all_cb = [this]() {
+ resolve_callback_t _resolve_all_cb;
+
+ //! This is the default implementation of the property resolution
+ // method.
+ const resolve_callback_t _default_resolve_all_cb = [this]() {
resolve_props();
clean_props();
};