summaryrefslogtreecommitdiff
path: root/gr-digital/python/packet_utils.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2011-07-26 20:59:49 -0400
committerTom Rondeau <trondeau@vt.edu>2011-07-26 20:59:49 -0400
commit8b3c4ccf922c602ae77dad7f3911b16bdd0112d3 (patch)
treee87bdb4b6cddfe1ab4721736c0a95185eb95253d /gr-digital/python/packet_utils.py
parentebcf1e9e180c7a8e9147ce441c5e9ab9056ecb13 (diff)
digital: reworking code so digital examples work. BPSK seems to work fine offline.
Diffstat (limited to 'gr-digital/python/packet_utils.py')
-rw-r--r--gr-digital/python/packet_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/python/packet_utils.py b/gr-digital/python/packet_utils.py
index addbf43f57..2e216ff50e 100644
--- a/gr-digital/python/packet_utils.py
+++ b/gr-digital/python/packet_utils.py
@@ -184,7 +184,7 @@ def unmake_packet(whitened_payload_with_crc, whitener_offset=0, dewhitening=True
else:
payload_with_crc = (whitened_payload_with_crc)
- ok, payload = gru.check_crc32(payload_with_crc)
+ ok, payload = crc.check_crc32(payload_with_crc)
if 0:
print "payload_with_crc =", string_to_hex_list(payload_with_crc)