diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-04-06 16:35:50 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-04-06 16:35:50 -0700 |
commit | 38b740cde2dfde06185edb83d9caa64a56789914 (patch) | |
tree | f5073ba267ee22a36e915bdb40fba94845e15958 /host/lib/usrp/usrp2/usrp2_iface.cpp | |
parent | 949eebc0e456db83bb44da24197a038ea695b65b (diff) | |
parent | 93d909e7c8c4053a05cdc9cb69c886183b4a7f09 (diff) | |
download | uhd-38b740cde2dfde06185edb83d9caa64a56789914.tar.gz uhd-38b740cde2dfde06185edb83d9caa64a56789914.tar.bz2 uhd-38b740cde2dfde06185edb83d9caa64a56789914.zip |
Merge branch 'maint'
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_iface.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_iface.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_iface.cpp b/host/lib/usrp/usrp2/usrp2_iface.cpp index 3ffbf9aac..1d41173f8 100644 --- a/host/lib/usrp/usrp2/usrp2_iface.cpp +++ b/host/lib/usrp/usrp2/usrp2_iface.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2012,2014 Ettus Research LLC +// Copyright 2010-2012,2014-2015 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -399,6 +399,16 @@ public: } } + void set_time(const time_spec_t&) + { + throw uhd::not_implemented_error("Timed commands not supported"); + } + + time_spec_t get_time(void) + { + return (0.0); + } + private: //this lovely lady makes it all possible udp_simple::sptr _ctrl_transport; |