diff options
author | tvogel-nid <thomas.vogel@ni.com> | 2019-03-06 15:35:16 +0100 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-03-13 17:08:06 -0700 |
commit | 6468aa105ed23d745c416b1db12266ae708f3749 (patch) | |
tree | d75cf19d90dcec9b873bc79ccdf06e8c2e585a58 /host/lib | |
parent | 431deb855b2eb5ce1c66370c73c8dabe38629f25 (diff) | |
download | uhd-6468aa105ed23d745c416b1db12266ae708f3749.tar.gz uhd-6468aa105ed23d745c416b1db12266ae708f3749.tar.bz2 uhd-6468aa105ed23d745c416b1db12266ae708f3749.zip |
lmx2592: fixup for correct frequency borders
LMX2592 frequency borders were missing the correct exponent ('e6') in
some cases.
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/common/lmx2592.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/common/lmx2592.cpp b/host/lib/usrp/common/lmx2592.cpp index f9b2554b5..e6ffdfbfb 100644 --- a/host/lib/usrp/common/lmx2592.cpp +++ b/host/lib/usrp/common/lmx2592.cpp @@ -48,8 +48,8 @@ const std::array<double, NUM_DIVIDERS> LMX2592_CHDIV_MIN_FREQ = { 221.88e6, 147.92e6, 110.94e6, 55.47e6, 36.98e6, 27.73e6, 20e6 }; constexpr std::array<double, NUM_DIVIDERS> LMX2592_CHDIV_MAX_FREQ = { - 6000e6, 3550.0e6, 2366.67e6, 1775.00e6, 1183.33, 887.50e6, 591.67e6, - 443.75e6, 295.83e6, 221.88e6, 110.94e6, 73.96e6, 55.47e6, 36.98 + 6000e6, 3550.0e6, 2366.67e6, 1775.00e6, 1183.33e6, 887.50e6, 591.67e6, + 443.75e6, 295.83e6, 221.88e6, 110.94e6, 73.96e6, 55.47e6, 36.98e6 }; constexpr int NUM_CHDIV_STAGES = 3; constexpr std::array<std::array<int, NUM_CHDIV_STAGES>, NUM_DIVIDERS> LMX2592_CHDIV_SEGS = { |