FEC Encoder: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:


Input and output are flexible to accommodate encoders that, say, modulate their encoded results into complex or float types.
Input and output are flexible to accommodate encoders that, say, modulate their encoded results into complex or float types.
Generally, we would use the fec.extended_encoder Python implementation to instantiate this. The extended_encoder wraps up a few more details, like taking care of puncturing as well as the encoder itself.


== Parameters ==
== Parameters ==


; Constituent Encoder
; Constituent Encoder
: Description of parameter, provide any tips or recommended values.  Note that the name of the parameter above should match the param's label that shows up in grc (e.g. Sample Rate).
: An FECAPI encoder object child of the generic_encoder class.


== Example Flowgraph ==
== Example Flowgraph ==
Line 16: Line 18:


; C++ files
; C++ files
: [https://github.com/gnuradio/gnuradio TODO]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/lib/encoder_impl.cc]


; Header files
; Header files
: [https://github.com/gnuradio/gnuradio TODO]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/lib/encoder_impl.h]


; Public header files
; Public header files
: [https://github.com/gnuradio/gnuradio TODO]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/include/gnuradio/fec/encoder.h]


; Block definition
; Block definition
: [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/grc/fec_encoder.block.yml]
: [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/grc/fec_encoder.block.yml]

Revision as of 08:55, 12 September 2019

This is a GNU Radio adaptor for any FEC encoder following the generic_encoder API in the fec module.

Input and output are flexible to accommodate encoders that, say, modulate their encoded results into complex or float types.

Generally, we would use the fec.extended_encoder Python implementation to instantiate this. The extended_encoder wraps up a few more details, like taking care of puncturing as well as the encoder itself.

Parameters

Constituent Encoder
An FECAPI encoder object child of the generic_encoder class.

Example Flowgraph

Insert description of flowgraph here, then show a screenshot of the flowgraph and the output if there is an interesting GUI. Currently we have no standard method of uploading the actual flowgraph to the wiki or git repo, unfortunately. The plan is to have an example flowgraph showing how the block might be used, for every block, and the flowgraphs will live in the git repo.

Source Files

C++ files
[1]
Header files
[2]
Public header files
[3]
Block definition
[4]