Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove gcd, lcm, and log2 from gru module | Clayton Smith | 2020-10-29 | 1 | -2/+2 |
| | |||||
* | digital: remove six | Clayton Smith | 2020-10-05 | 1 | -9/+7 |
| | |||||
* | python: Remove unnecessary 'from __future__ import' | Oleksandr Kravchuk | 2020-08-03 | 1 | -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 format | devnulling | 2020-01-27 | 1 | -13/+1 |
| | |||||
* | python3: update non-GRC components to use python2 or python3 | Douglas Anderson | 2017-02-26 | 1 | -22/+30 |
| | |||||
* | fec: mostly documentation updates, spell check, etc. | Tom Rondeau | 2014-05-20 | 1 | -0/+1 |
| | |||||
* | digital: added option to packet_utils.unmake_packet to check or not check ↵ | Tom Rondeau | 2014-05-17 | 1 | -2/+10 |
| | | | | the CRC. | ||||
* | digital: adding an async message passsing CRC32 calc/check block for PDUs. | Tom Rondeau | 2014-05-17 | 1 | -268/+272 |
| | |||||
* | Fix inconsistent naming and docstring | Bolin Hsu | 2014-04-11 | 1 | -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 Berman | 2013-10-02 | 1 | -3/+7 |
| | | | | packet encoder | ||||
* | digital: Enabling uninstalled python imports. | Ben Reynwar | 2013-03-07 | 1 | -0/+457 |