diff options
Diffstat (limited to 'gr-uhd/include')
-rw-r--r-- | gr-uhd/include/gr_uhd_usrp_sink.h | 3 | ||||
-rw-r--r-- | gr-uhd/include/gr_uhd_usrp_source.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gr-uhd/include/gr_uhd_usrp_sink.h b/gr-uhd/include/gr_uhd_usrp_sink.h index ff4856f9b..381260c3b 100644 --- a/gr-uhd/include/gr_uhd_usrp_sink.h +++ b/gr-uhd/include/gr_uhd_usrp_sink.h @@ -130,6 +130,9 @@ public: */ virtual void set_start_time(const uhd::time_spec_t &time) = 0; + virtual std::vector<std::string> list_property_tree(const std::string &path) = 0; + virtual uhd::dict<std::string, std::string> get_usrp_info(size_t mboard = 0, size_t chan = 0) = 0; + /*! * Set the frontend specification. * \param spec the subdev spec markup string diff --git a/gr-uhd/include/gr_uhd_usrp_source.h b/gr-uhd/include/gr_uhd_usrp_source.h index 415503bc1..69a9ffcbd 100644 --- a/gr-uhd/include/gr_uhd_usrp_source.h +++ b/gr-uhd/include/gr_uhd_usrp_source.h @@ -122,6 +122,9 @@ public: */ virtual void set_start_time(const uhd::time_spec_t &time) = 0; + virtual std::vector<std::string> list_property_tree(const std::string &path) = 0; + virtual uhd::dict<std::string, std::string> get_usrp_info(size_t mboard = 0, size_t chan = 0) = 0; + /*! * Set the frontend specification. * \param spec the subdev spec markup string |