summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-07-04 20:21:09 -0700
committerJosh Blum <josh@joshknows.com>2010-07-05 13:49:04 -0700
commit549a0170a409904f123a4eef975362978ca62bf3 (patch)
tree7390bf1eb9bba9418a9c86f761f55f2900c2f484 /host/include
parent5e14653f241070791d46893e68e341357e040add (diff)
downloaduhd-549a0170a409904f123a4eef975362978ca62bf3.tar.gz
uhd-549a0170a409904f123a4eef975362978ca62bf3.tar.bz2
uhd-549a0170a409904f123a4eef975362978ca62bf3.zip
uhd: added get time now call to simple and mimo usrp
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/usrp/mimo_usrp.hpp6
-rw-r--r--host/include/uhd/usrp/simple_usrp.hpp6
2 files changed, 12 insertions, 0 deletions
diff --git a/host/include/uhd/usrp/mimo_usrp.hpp b/host/include/uhd/usrp/mimo_usrp.hpp
index a3cbde483..e85c06046 100644
--- a/host/include/uhd/usrp/mimo_usrp.hpp
+++ b/host/include/uhd/usrp/mimo_usrp.hpp
@@ -71,6 +71,12 @@ public:
* Misc
******************************************************************/
/*!
+ * Gets the current time in the usrp time registers.
+ * \return a timespec representing current usrp time
+ */
+ virtual time_spec_t get_time_now(void) = 0;
+
+ /*!
* Set the time registers on the usrp at the next pps tick.
* The values will not be latched in until the pulse occurs.
* It is recommended that the user sleep(1) after calling to ensure
diff --git a/host/include/uhd/usrp/simple_usrp.hpp b/host/include/uhd/usrp/simple_usrp.hpp
index 1d817e030..1d9136f08 100644
--- a/host/include/uhd/usrp/simple_usrp.hpp
+++ b/host/include/uhd/usrp/simple_usrp.hpp
@@ -64,6 +64,12 @@ public:
* Misc
******************************************************************/
/*!
+ * Gets the current time in the usrp time registers.
+ * \return a timespec representing current usrp time
+ */
+ virtual time_spec_t get_time_now(void) = 0;
+
+ /*!
* Sets the time registers on the usrp immediately.
* \param time_spec the time to latch into the usrp device
*/