summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python/digital/receive_path.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2010-02-08 21:30:09 -0800
committerTom Rondeau <trondeau@vt.edu>2010-02-08 21:30:09 -0800
commitf6010974b8f0af65a8b1a875587bb4a7810565ce (patch)
treecd5bb4169035a74d9b1b681920ac8e801d8ac968 /gnuradio-examples/python/digital/receive_path.py
parentfe3150d5e5a0bb7bf98b5f44ad0b68a107bd7f9a (diff)
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.py2
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 c229aa9e47..7aeeedab09 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)