diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-10-16 14:13:45 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-10-19 17:33:04 -0700 |
commit | 4a6c47682daff6fae533647487297967ae559c49 (patch) | |
tree | d62420f48f756cd16e05fe63100045e103dbb68d /host/lib/usrp/common | |
parent | c30956d9dec3d823355cf513e9c5ef16d4b1f48d (diff) | |
download | uhd-4a6c47682daff6fae533647487297967ae559c49.tar.gz uhd-4a6c47682daff6fae533647487297967ae559c49.tar.bz2 uhd-4a6c47682daff6fae533647487297967ae559c49.zip |
max287x: assert target_freq
Diffstat (limited to 'host/lib/usrp/common')
-rw-r--r-- | host/lib/usrp/common/max287x.hpp | 1 |
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) { |