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. | ||||
* | blocks/correctiq: Remove manual memory management & add const | Thomas Habets | 2020-09-09 | 1 | -7/+4 |
| | |||||
* | Blocks: Add DC Spike Removal and IQ Swap Native Blocks | ghostop14 | 2020-02-15 | 1 | -0/+54 |
This block incorporates the OOT modules in correctiq that provide 3 different techniques to remove the DC spike inherent in IQ sampling. The first technique mirrors SDR GUI receivers with an IIR filter approach, the second provides a time-limited IIR approach where after a user-configurable number of seconds locks into a basic offset correction to eliminate the effect of the filter on the signal while maintaining the correction, and the last is manual I and Q configurable offsets. The Swap IQ block is a drop-in block to help correct for inverted spectrums and just swaps I<->Q. |