diff options
author | Josh Blum <josh@joshknows.com> | 2012-01-28 12:21:01 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-01-31 14:56:31 -0800 |
commit | 8f25550d1a8ac634ee3873ae90a86d1e07dd5482 (patch) | |
tree | d4681f031bc00b1926a04965c7506f7823cc9314 /host/lib/usrp/b100/io_impl.cpp | |
parent | 72359ea15846ab87c781ab4d072f694e97cc3cd1 (diff) | |
download | uhd-8f25550d1a8ac634ee3873ae90a86d1e07dd5482.tar.gz uhd-8f25550d1a8ac634ee3873ae90a86d1e07dd5482.tar.bz2 uhd-8f25550d1a8ac634ee3873ae90a86d1e07dd5482.zip |
dsp rework: implemented new scalefactor in rx dsp core
Diffstat (limited to 'host/lib/usrp/b100/io_impl.cpp')
-rw-r--r-- | host/lib/usrp/b100/io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b100/io_impl.cpp b/host/lib/usrp/b100/io_impl.cpp index 494d5d123..c98f71754 100644 --- a/host/lib/usrp/b100/io_impl.cpp +++ b/host/lib/usrp/b100/io_impl.cpp @@ -202,7 +202,7 @@ rx_streamer::sptr b100_impl::get_rx_stream(const uhd::stream_args_t &args_){ //setup defaults for unspecified values args.otw_format = args.otw_format.empty()? "sc16" : args.otw_format; args.channels = args.channels.empty()? std::vector<size_t>(1, 0) : args.channels; - const unsigned sc8_scalar = unsigned(args.args.cast<double>("scalar", 0x400)); + const unsigned sc8_scalar = unsigned(args.args.cast<double>("scalar", 1)); //calculate packet size static const size_t hdr_size = 0 |