diff options
author | Tom Rondeau | 2010-02-08 21:30:09 -0800 |
---|---|---|
committer | Tom Rondeau | 2010-02-08 21:30:09 -0800 |
commit | f6010974b8f0af65a8b1a875587bb4a7810565ce (patch) | |
tree | cd5bb4169035a74d9b1b681920ac8e801d8ac968 /gnuradio-examples/python/digital/receive_path.py | |
parent | fe3150d5e5a0bb7bf98b5f44ad0b68a107bd7f9a (diff) | |
download | gnuradio-f6010974b8f0af65a8b1a875587bb4a7810565ce.tar.gz gnuradio-f6010974b8f0af65a8b1a875587bb4a7810565ce.tar.bz2 gnuradio-f6010974b8f0af65a8b1a875587bb4a7810565ce.zip |
Setting up code to handle setting of samples per symbol properly. Still buggy in the transmitter due to the make packet padding to 512 bytes.
Diffstat (limited to 'gnuradio-examples/python/digital/receive_path.py')
-rw-r--r-- | gnuradio-examples/python/digital/receive_path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-examples/python/digital/receive_path.py b/gnuradio-examples/python/digital/receive_path.py index c229aa9e4..7aeeedab0 100644 --- a/gnuradio-examples/python/digital/receive_path.py +++ b/gnuradio-examples/python/digital/receive_path.py @@ -135,4 +135,4 @@ class receive_path(gr.hier_block2): print "\nReceive Path:" print "modulation: %s" % (self._demod_class.__name__) print "bitrate: %sb/s" % (eng_notation.num_to_str(self._bitrate)) - print "samples/symbol: %3d" % (self._samples_per_symbol) + print "samples/symbol: %.4f" % (self._samples_per_symbol) |