| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
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>
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
|
|
|
| |
the CRC.
|
| |
|
|
|
|
|
|
|
|
|
| |
(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
|
|
|
|
| |
packet encoder
|
|
|