diff options
author | Clayton Smith <argilo@gmail.com> | 2020-10-29 19:04:51 -0400 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-10-30 02:13:26 +0100 |
commit | 0fb20f8f1bcd088d37a4a8cef60e26d8ee402bf4 (patch) | |
tree | 4245612ea01047eecabffee901e51f6ab013e408 /gr-digital/python/digital | |
parent | 52df5e3224d67727b43361a2292c8c8d85f55a29 (diff) |
Remove hexint and hexshort from gru module
Diffstat (limited to 'gr-digital/python/digital')
-rw-r--r-- | gr-digital/python/digital/crc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/python/digital/crc.py b/gr-digital/python/digital/crc.py index 1c39bc1bbc..7407f70405 100644 --- a/gr-digital/python/digital/crc.py +++ b/gr-digital/python/digital/crc.py @@ -13,7 +13,7 @@ import struct def gen_and_append_crc32(s): crc = digital.crc32(s) - return s + struct.pack(">I", gru.hexint(crc) & 0xFFFFFFFF) + return s + struct.pack(">I", crc) def check_crc32(s): if len(s) < 4: |