From ad4004f1f78d5b64dae50b6e456d0206e824978f Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Thu, 30 May 2019 13:54:44 -0700 Subject: rfnoc: node: Add default command time API --- host/lib/rfnoc/node.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'host/lib') diff --git a/host/lib/rfnoc/node.cpp b/host/lib/rfnoc/node.cpp index d569cea4a..cc2d7b7a9 100644 --- a/host/lib/rfnoc/node.cpp +++ b/host/lib/rfnoc/node.cpp @@ -45,6 +45,29 @@ std::vector node_t::get_property_ids() const return return_value; } +void node_t::set_command_time(uhd::time_spec_t time, const size_t instance) +{ + if (_cmd_timespecs.size() <= instance) { + _cmd_timespecs.resize(instance + 1, uhd::time_spec_t(0.0)); + } + + _cmd_timespecs[instance] = time; +} + +uhd::time_spec_t node_t::get_command_time(const size_t instance) const +{ + if (instance >= _cmd_timespecs.size()) { + return uhd::time_spec_t::ASAP; + } + + return _cmd_timespecs.at(instance); +} + +void node_t::clear_command_time(const size_t instance) +{ + set_command_time(uhd::time_spec_t(0.0), instance); +} + /*** Protected methods *******************************************************/ void node_t::register_property(property_base_t* prop, resolve_callback_t&& clean_callback) { -- cgit v1.2.3