summaryrefslogtreecommitdiff
path: root/gr-digital/python/digital/packet_utils.py
Commit message (Collapse)AuthorAgeFilesLines
* digital: Gut packet_utils.pyMartin Braun2021-05-221-458/+6
| | | | | | | | | | | This module is a deprecated module and is used nowhere in GNU Radio, with the exception of a single variable (default_access_code). We keep that variable and remove all the rest. Because this module was the only consumer of crc.py, that was also removed. Signed-off-by: Martin Braun <martin.braun@ettus.com>
* Remove gcd, lcm, and log2 from gru moduleClayton Smith2020-10-291-2/+2
|
* digital: remove sixClayton Smith2020-10-051-9/+7
|
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-3/+0
| | | | | | | | | | | | | | | | All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-261-22/+30
|
* fec: mostly documentation updates, spell check, etc.Tom Rondeau2014-05-201-0/+1
|
* digital: added option to packet_utils.unmake_packet to check or not check ↵Tom Rondeau2014-05-171-2/+10
| | | | the CRC.
* digital: adding an async message passsing CRC32 calc/check block for PDUs.Tom Rondeau2014-05-171-268/+272
|
* Fix inconsistent naming and docstringBolin Hsu2014-04-111-0/+2
| | | | | | | | | (1) In the XML files, all keys except "log" are used as parameter names. (2) Most files use the parameter name "log" to flip logging. So change the ones that use "logging" or "debug" to "log". (3) packet_mod constructor does not have the argument payload_length. (4) Add missing args to some docstrings (5) Resolve inconsistency between gmsk_demod code and doc
* digital/packet_utils: adding parameter to take a user input preamble to the ↵Michael Berman2013-10-021-3/+7
| | | | packet encoder
* digital: Enabling uninstalled python imports.Ben Reynwar2013-03-071-0/+457