diff options
author | Josh Blum <josh@joshknows.com> | 2010-10-19 17:13:56 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-10-19 17:13:56 -0700 |
commit | b405abf883a5b37de1468cde679644927d89abce (patch) | |
tree | 35e216a6880cdfb8b707113fc06adad4b30f1652 /host/lib/usrp | |
parent | 799d5059bae77a24267cfc33b33c4af1c0de8c5b (diff) | |
download | uhd-b405abf883a5b37de1468cde679644927d89abce.tar.gz uhd-b405abf883a5b37de1468cde679644927d89abce.tar.bz2 uhd-b405abf883a5b37de1468cde679644927d89abce.zip |
uhd: remove some warnings in MSVC and with typo in xcvr2450
Diffstat (limited to 'host/lib/usrp')
-rw-r--r-- | host/lib/usrp/dboard/db_xcvr2450.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_xcvr2450.cpp b/host/lib/usrp/dboard/db_xcvr2450.cpp index 99f2a231c..fb1367113 100644 --- a/host/lib/usrp/dboard/db_xcvr2450.cpp +++ b/host/lib/usrp/dboard/db_xcvr2450.cpp @@ -524,7 +524,7 @@ static max2829_regs_t::rx_lpf_coarse_adj_t bandwidth_to_rx_lpf_coarse_reg(double } void xcvr2450::set_rx_bandwidth(double bandwidth){ - float requested_bandwidth = bandwidth; + double requested_bandwidth = bandwidth; //compute coarse low pass cutoff frequency setting _max2829_regs.rx_lpf_coarse_adj = bandwidth_to_rx_lpf_coarse_reg(bandwidth); |