aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2015-10-16 14:13:45 -0700
committerMartin Braun <martin.braun@ettus.com>2015-10-19 17:33:04 -0700
commit4a6c47682daff6fae533647487297967ae559c49 (patch)
treed62420f48f756cd16e05fe63100045e103dbb68d
parentc30956d9dec3d823355cf513e9c5ef16d4b1f48d (diff)
downloaduhd-4a6c47682daff6fae533647487297967ae559c49.tar.gz
uhd-4a6c47682daff6fae533647487297967ae559c49.tar.bz2
uhd-4a6c47682daff6fae533647487297967ae559c49.zip
max287x: assert target_freq
-rw-r--r--host/lib/usrp/common/max287x.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/usrp/common/max287x.hpp b/host/lib/usrp/common/max287x.hpp
index fe5da195c..3d43802c8 100644
--- a/host/lib/usrp/common/max287x.hpp
+++ b/host/lib/usrp/common/max287x.hpp
@@ -434,6 +434,7 @@ double max287x<max287x_regs_t>::set_frequency(
bool feedback_divided = (_regs.feedback_select == max287x_regs_t::FEEDBACK_SELECT_DIVIDED);
//increase RF divider until acceptable VCO frequency (MIN freq for MAX287x VCO is 3GHz)
+ UHD_ASSERT_THROW(target_freq > 0);
double vco_freq = target_freq;
while (vco_freq < MIN_VCO_FREQ)
{