summaryrefslogtreecommitdiff
path: root/gr-channels/lib/dynamic_channel_model_impl.cc
diff options
context:
space:
mode:
authorTim O'Shea <tim.oshea753@gmail.com>2013-11-08 12:44:37 -0500
committerTim O'Shea <tim.oshea753@gmail.com>2013-11-08 12:44:37 -0500
commit917fb98fdd6f706a58dae515fc0e28fa5ac3b906 (patch)
tree77c476257f7387b4a4b8b32ae0b061b43801aa4d /gr-channels/lib/dynamic_channel_model_impl.cc
parent173b9fc9785cc2f8d11bbd965ca56e05e4e4e3e0 (diff)
channels: new block documentation/grc cleanup, dynamic fading model AWGN ampl bug fix
Diffstat (limited to 'gr-channels/lib/dynamic_channel_model_impl.cc')
-rw-r--r--gr-channels/lib/dynamic_channel_model_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-channels/lib/dynamic_channel_model_impl.cc b/gr-channels/lib/dynamic_channel_model_impl.cc
index d07a0f9454..7c2044570a 100644
--- a/gr-channels/lib/dynamic_channel_model_impl.cc
+++ b/gr-channels/lib/dynamic_channel_model_impl.cc
@@ -73,7 +73,7 @@ namespace gr {
{
d_noise_adder = blocks::add_cc::make();
d_noise = analog::fastnoise_source_c::make(analog::GR_GAUSSIAN,
- 1.0, noise_seed, 1024*8);
+ noise_amp, noise_seed, 1024*8);
d_sro_model = channels::sro_model::make(samp_rate, sro_std_dev, sro_max_dev, noise_seed);
d_cfo_model = channels::cfo_model::make(samp_rate, cfo_std_dev, cfo_max_dev, noise_seed);
d_fader = channels::selective_fading_model::make(N, doppler_freq / samp_rate, LOS_model, K, noise_seed, delays, mags, ntaps_mpath);