Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | modernization: `override` instead of virtual in all compilation units | Marcus Müller | 2020-11-03 | 1 | -3/+3 |
| | |||||
* | 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. | ||||
* | gr-blocks: Add Phase Shift Block with Msg Capabilities | ghostop14 | 2020-03-30 | 1 | -0/+43 |
This new block provides a native ability to phase shift signals for solutions such as DoA and array-based projects. The block supports both variable and message based updates such that other blocks can provide the appropriate calculations for shifting and only send message-based updates when necessary. Based on a block configuration parameter, shift can be specified either in radians or degrees. his block functions like a multiply const, but with the const limited to abs() == 1 to provide a constant phase shift. |