diff options
author | sara <sara.halter@gmx.ch> | 2021-12-08 19:31:48 +0100 |
---|---|---|
committer | sara <sara.halter@gmx.ch> | 2021-12-08 19:31:48 +0100 |
commit | 746fc0bf57d9a6a57da5587406a229569f055e6b (patch) | |
tree | 84051a667689ab8b215a894ef74ca997ee44b1c3 /simulation/QAM | |
parent | Kleine änderung Doku (diff) | |
download | Fading-746fc0bf57d9a6a57da5587406a229569f055e6b.tar.gz Fading-746fc0bf57d9a6a57da5587406a229569f055e6b.zip |
FIR Filter Statistical model weiter implementiert
Diffstat (limited to 'simulation/QAM')
-rw-r--r-- | simulation/QAM/qam.grc | 2 | ||||
-rwxr-xr-x | simulation/QAM/qam.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/simulation/QAM/qam.grc b/simulation/QAM/qam.grc index 037c20f..e5409e3 100644 --- a/simulation/QAM/qam.grc +++ b/simulation/QAM/qam.grc @@ -54,7 +54,7 @@ blocks: rot_sym: '4' soft_dec_lut: None sym_map: '[0, 1, 3, 2]' - type: 16qam + type: qpsk states: bus_sink: false bus_source: false diff --git a/simulation/QAM/qam.py b/simulation/QAM/qam.py index 2c96d0e..0ccc88f 100755 --- a/simulation/QAM/qam.py +++ b/simulation/QAM/qam.py @@ -88,7 +88,7 @@ class qam(gr.top_block, Qt.QWidget): self.eq_ntaps = eq_ntaps = 15 self.eq_mod = eq_mod = 1 self.eq_gain = eq_gain = .01 - self.const = const = digital.constellation_16qam().base() + self.const = const = digital.constellation_qpsk().base() self.chn_taps = chn_taps = [1.0 + 0.0j, ] ################################################## |