Daniel Estévez
Daniel Estévez
For some uses cases it would be useful to have an option in the `gr_satellites` command line tool that skips the demodulator and sends the input the directly to the...
An earlier attempt at this is in the [gr-fec-rs](https://github.com/daniestevez/gr-satellites/tree/gr-fec-rs) branch. Since then, the Reed-Solomon blocks in gr-satellites have been refactored. This enhancement will help us remove the code taken from...
Currently the timestamp for telemetry submission is taken from the system time, so recordings don't have the correct timestamp. By adding and tracking timestamps appropriately in the data source, we...
This idea originated [here](https://community.libre.space/t/decoding-nayif-1-with-satnogs-ogg-files-in-gr-satellites/6456/5?u=ea4gpz). gr-satellites is sometimes used as a post-observation script in SatNOGS. It would be good if it can send the demodulated frames to SatNOGS so that they...
The FDSE and FDRE are the elements with synchronous resets.
### What happened? If we have a Python `gr.hier_block2` that uses message ports as outputs, when we try to set the processor affinity of the block by calling its `set_processor_affinity()`...
### What happened? While working in #6984, I have noticed that `_int` functions such as `encode_rs_int()` are declared in `gr-fec/include/gnuradio/fec/rs.h`, but they are never built. The code that would build...
The following code ```python from amaranth import * import amaranth.back.verilog m = Module() output = Signal(2) enable = Signal() with m.If(enable): m.d.comb += output[0].eq(1) with open('test.v', 'w') as f: f.write(amaranth.back.verilog.convert(...
### What happened? Tag propagation in the Integrator block is not working as expected. The following flowgraph demonstrates the problem. [test_integrate.grc.zip](https://github.com/gnuradio/gnuradio/files/13876385/test_integrate.grc.zip)  24 samples all having the value `1.0` are...
### What happened? I typically use selector blocks to bypass/not-bypass at runtime a block (or chain of blocks) as follows: ``` | ---------> some blocks -----> | ---> selector |...