diff options
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, ] ################################################## |