From 4f4032573b4ac1c7f9a0cff2ecdd49bf51c4b4d8 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Wed, 30 Nov 2011 05:18:32 -0800 Subject: usrp1: set scale factor after setting converter --- host/lib/usrp/usrp1/io_impl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'host/lib/usrp/usrp1/io_impl.cpp') diff --git a/host/lib/usrp/usrp1/io_impl.cpp b/host/lib/usrp/usrp1/io_impl.cpp index 937706fdd..ff89b2e18 100644 --- a/host/lib/usrp/usrp1/io_impl.cpp +++ b/host/lib/usrp/usrp1/io_impl.cpp @@ -603,10 +603,6 @@ rx_streamer::sptr usrp1_impl::get_rx_stream(const uhd::stream_args_t &args_){ boost::shared_ptr my_streamer = boost::make_shared(spp, _soft_time_ctrl); - //special scale factor change for sc8 - if (args.otw_format == "sc8") - my_streamer->set_scale_factor(1.0/127); - //init some streamer stuff my_streamer->set_tick_rate(_master_clock_rate); my_streamer->set_vrt_unpacker(&usrp1_bs_vrt_unpacker); @@ -622,6 +618,10 @@ rx_streamer::sptr usrp1_impl::get_rx_stream(const uhd::stream_args_t &args_){ id.num_outputs = args.channels.size(); my_streamer->set_converter(id); + //special scale factor change for sc8 + if (args.otw_format == "sc8") + my_streamer->set_scale_factor(1.0/127); + //save as weak ptr for update access _rx_streamer = my_streamer; -- cgit v1.2.3