diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-08-09 21:50:13 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-08-09 21:50:13 -0400 |
commit | 61db1684fdda602d18134b2e8c510bb7e33245fc (patch) | |
tree | d1bb6dc6c824c98d82b17027d271292dab66eb6e /gr-digital/examples | |
parent | 386a73c53aeb36bdf10e28fc5366385faebe78b2 (diff) |
digital: setting up receive path to use new timing loop API, FLL API, new gain names/settings. Also added concept of gray coding to generic mod/demod and reworked bpsk/qpsk modulators so both work.
Diffstat (limited to 'gr-digital/examples')
-rwxr-xr-x | gr-digital/examples/benchmark_tx.py | 2 | ||||
-rw-r--r-- | gr-digital/examples/transmit_path.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gr-digital/examples/benchmark_tx.py b/gr-digital/examples/benchmark_tx.py index 01902c0e37..e5d24915af 100755 --- a/gr-digital/examples/benchmark_tx.py +++ b/gr-digital/examples/benchmark_tx.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright 2010 Free Software Foundation, Inc. +# Copyright 2010,2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # diff --git a/gr-digital/examples/transmit_path.py b/gr-digital/examples/transmit_path.py index 91869ad9ad..8ffb1e1089 100644 --- a/gr-digital/examples/transmit_path.py +++ b/gr-digital/examples/transmit_path.py @@ -50,7 +50,7 @@ class transmit_path(gr.hier_block2): # Get mod_kwargs mod_kwargs = self._modulator_class.extract_kwargs_from_options(options) - + # transmitter modulator = self._modulator_class(**mod_kwargs) self.packet_transmitter = \ |