Jeff Long
Jeff Long
Wow, quite the patch! I wonder if we should have the GR blocks as a separate package somehow. They seem like they would be useful to other projects. No specific...
I don't think it will affect anything else. It was mainly to show that the signal was above scale. But then it should probably do the same thing at the...
The bottom clipping probably has a one-off somewhere.
Some indication of off-scale is nice. We could do it a different way. Nothing great comes to mind at the moment.
Blocking the signal in `freqctrl::setFrequency()` to avoid the loop would be better, architecturally. There are probably multiple places where we depend on a signal being routed through a GUI element,...
When I finish https://github.com/gqrx-sdr/gqrx/pull/1199 (output data via zmq), the user will be able to turn on output of various data. In the current PR, that includes raw data or fft...
This is a goal. It requires a little architecture work and time, so it hasn't been done yet.
Gqrx uses the GNU Radio "Simple Squelch" block in the rx nbrx chain. This (and all the GR squelch blocks) has a single alpha value for attack/release, so there's a...
PR above removes `int` from the yaml. Any opinions on whether int support can be added or whether it's too much trouble given the implementation? If not, then the PR...
Internally, GNU Radio passes around items of a given size, without regard to type. Blocks have to be designed so they are told an explicit type, or they can guess...