diff options
author | Trung Tran <trung.tran@ettus.com> | 2018-08-03 09:10:48 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-09-14 22:15:56 -0700 |
commit | 29f896182a6b9d2b6831dfcc0b22711f05fde0c2 (patch) | |
tree | ebc0e0bbbf54d54cf6bc37b3067229073b2c1e4d /host/include | |
parent | e16e046d436e10bf1b3f268371e62c23bc5bfa98 (diff) | |
download | uhd-29f896182a6b9d2b6831dfcc0b22711f05fde0c2.tar.gz uhd-29f896182a6b9d2b6831dfcc0b22711f05fde0c2.tar.bz2 uhd-29f896182a6b9d2b6831dfcc0b22711f05fde0c2.zip |
radio_ctrl: add disable time stamp
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/rfnoc/radio_ctrl.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/host/include/uhd/rfnoc/radio_ctrl.hpp b/host/include/uhd/rfnoc/radio_ctrl.hpp index 9f1496dfc..28ba9264b 100644 --- a/host/include/uhd/rfnoc/radio_ctrl.hpp +++ b/host/include/uhd/rfnoc/radio_ctrl.hpp @@ -531,6 +531,9 @@ public: */ virtual std::string get_dboard_fe_from_chan(const size_t chan, const uhd::direction_t dir) = 0; + /*! Enable or disable the setting of timestamps on Rx. + */ + virtual void enable_rx_timestamps(const bool enable, const size_t chan) = 0; }; /* class radio_ctrl */ }} /* namespace uhd::rfnoc */ |