diff options
author | Mark Meserve <mark.meserve@ni.com> | 2018-09-04 17:32:11 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-10-17 15:15:12 -0700 |
commit | f7d3cf84a513d124131c46ac806a0d1b068d25ba (patch) | |
tree | d2e3c85f0f0c24c8b27eac52ce24f3512a77d8b3 /host/lib/include | |
parent | 20855e30f90b004b0746b7456d797e783115f17c (diff) | |
download | uhd-f7d3cf84a513d124131c46ac806a0d1b068d25ba.tar.gz uhd-f7d3cf84a513d124131c46ac806a0d1b068d25ba.tar.bz2 uhd-f7d3cf84a513d124131c46ac806a0d1b068d25ba.zip |
lmx2592: add spur dodging
Diffstat (limited to 'host/lib/include')
-rw-r--r-- | host/lib/include/uhdlib/usrp/common/lmx2592.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/host/lib/include/uhdlib/usrp/common/lmx2592.hpp b/host/lib/include/uhdlib/usrp/common/lmx2592.hpp index 0e86d82aa..91beb24b7 100644 --- a/host/lib/include/uhdlib/usrp/common/lmx2592.hpp +++ b/host/lib/include/uhdlib/usrp/common/lmx2592.hpp @@ -37,7 +37,10 @@ public: enum mash_order_t { INT_N, FIRST, SECOND, THIRD, FOURTH }; - virtual double set_frequency(double target_freq) = 0; + virtual double set_frequency( + double target_freq, + const bool spur_dodging, + const double spur_dodging_threshold) = 0; virtual void set_mash_order(mash_order_t mash_order) = 0; |