Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | modernization: `override` instead of virtual in all compilation units | Marcus Müller | 2020-11-03 | 1 | -1/+1 |
| | |||||
* | Add `override` for common virtual function overrides | Thomas Habets | 2020-11-03 | 1 | -1/+1 |
| | | | | | | | | | | Mostly done with: ``` find -name "*_impl.h" | xargs sed -i -r '/(void forecast|int work|int general_work|bool check_topology)\(/{:back /\)/b nxt;N;b back;:nxt s/\)$|\)(;)/) override\1/g}' ``` Then I removed an incorrect `work` that this found. | ||||
* | interleaved_char/short_to_complex: remove unused private fields | Marcus Müller | 2020-04-11 | 1 | -1/+0 |
| | |||||
* | blocks: Add const to member variables that don't change | Thomas Habets | 2020-03-26 | 1 | -1/+1 |
| | |||||
* | gr-blocks: Add scaling option to Complex to/from ishort and ichar | ghostop14 | 2020-02-20 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | The existing block combinations of complex-to-ichar/ichar-to-complex and complex-to-ishort/ishort-to-complex was not exposing a scale factor to the UI (it was hard-coded at 1.0) which prevented the blocks from being used with voltage-based inputs and outputs, for example a -127 to 127 byte input would be mapped directly to the same value as a float. The same was true in reverse and there were notes in the code about FIX clipping. Adding the scale factor provides a mechanism for the user to appropriately fix the clipping and scale the conversion correctly. Additional documentation was added to the block yml to provide guidance to users on how to appropriately select the scale factor for their use case, and the default value was set to 1.0 for backward compatibility. | ||||
* | Update license header to SPDX format | devnulling | 2020-01-27 | 1 | -13/+1 |
| | |||||
* | Tree: clang-format without the include sorting | Marcus Müller | 2019-08-09 | 1 | -11/+11 |
| | |||||
* | Clean-up: Remove unused private variables (Issue #1621, #1622, #1624) | andriy gelman | 2018-04-28 | 1 | -1/+0 |
| | |||||
* | Removing trailing/extra whitespaces before release. | Tom Rondeau | 2014-07-07 | 1 | -1/+1 |
| | | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace). | ||||
* | blocks: adding interleaved_char_to_complex block | Tim O'Shea | 2013-08-16 | 1 | -0/+47 |