diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-17 15:21:11 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-17 15:21:11 -0800 |
commit | 7e1d02710090c2c1aac971e41a2abb6f68c37d12 (patch) | |
tree | 9c3261ac3eebde988030a80f976e68d49516ac65 /host/lib/usrp/usrp1/soft_time_ctrl.hpp | |
parent | caa911aa270ee4aef7244f3159b9fd402a454069 (diff) | |
parent | d71344091b324266975b58ec075d896fcb79aeb9 (diff) | |
download | uhd-7e1d02710090c2c1aac971e41a2abb6f68c37d12.tar.gz uhd-7e1d02710090c2c1aac971e41a2abb6f68c37d12.tar.bz2 uhd-7e1d02710090c2c1aac971e41a2abb6f68c37d12.zip |
Merge branch 'usrp1' into next
Diffstat (limited to 'host/lib/usrp/usrp1/soft_time_ctrl.hpp')
-rw-r--r-- | host/lib/usrp/usrp1/soft_time_ctrl.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/host/lib/usrp/usrp1/soft_time_ctrl.hpp b/host/lib/usrp/usrp1/soft_time_ctrl.hpp index 42056c285..7fdac7fc8 100644 --- a/host/lib/usrp/usrp1/soft_time_ctrl.hpp +++ b/host/lib/usrp/usrp1/soft_time_ctrl.hpp @@ -41,8 +41,7 @@ public: /*! * Make a new soft time control. - * \param start_streaming a function callback to start streaming - * \param stop_streaming a function callback to stop streaming + * \param stream_on_off a function to enable/disable rx * \return a new soft time control object */ static sptr make(const cb_fcn_type &stream_on_off); @@ -59,7 +58,7 @@ public: virtual void recv_post(rx_metadata_t &md, size_t &nsamps) = 0; //! Call before the internal send function - virtual void send_pre(const tx_metadata_t &md, double timeout) = 0; + virtual bool send_pre(const tx_metadata_t &md, double &timeout) = 0; //! Issue a stream command to receive virtual void issue_stream_cmd(const stream_cmd_t &cmd) = 0; |