From f249b73036ce55b3beecad94cd0f362b6a2b8b5d Mon Sep 17 00:00:00 2001 From: Martin Anderseck Date: Thu, 2 Dec 2021 10:56:08 +0100 Subject: max287x: Fix key in table of freq ranges The keys for the table of frequency ranges for each VCO value counts up consecutively but key "1" was there twice while "2" was missing. This is fixed here. --- host/lib/include/uhdlib/usrp/common/max287x.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host') diff --git a/host/lib/include/uhdlib/usrp/common/max287x.hpp b/host/lib/include/uhdlib/usrp/common/max287x.hpp index de3db9b4b..84d8b710e 100644 --- a/host/lib/include/uhdlib/usrp/common/max287x.hpp +++ b/host/lib/include/uhdlib/usrp/common/max287x.hpp @@ -298,7 +298,7 @@ static const vco_map_t max2871_vco_map = boost::assign::map_list_of (0,uhd::range_t(2767776024.0,2838472816.0)) (1,uhd::range_t(2838472816.0,2879070053.0)) - (1,uhd::range_t(2879070053.0,2921202504.0)) + (2,uhd::range_t(2879070053.0,2921202504.0)) (3,uhd::range_t(2921202504.0,2960407579.0)) (4,uhd::range_t(2960407579.0,3001687422.0)) (5,uhd::range_t(3001687422.0,3048662562.0)) -- cgit v1.2.3