Repetition Encoder Definition: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:Block Docs Category:Stub Docs This is the template for the "Page-per-block Docs". This first section should describe what the block...") |
(add example flowgraph) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
[[Category:Block Docs]] | [[Category:Block Docs]] | ||
A repetition encoder class that repeats each input bit rep times. To decode, take a majority vote over the number of repetitions. | |||
== Parameters == | |||
; Parallelism | |||
: | |||
; Dimension 1 | |||
: For parallelism | |||
; Dimension 2 | |||
: For parallelism | |||
; | ; Frame Bits | ||
: | : Number of bits per frame. If using in the tagged stream style, this is the maximum allowable number of bits per frame | ||
; | ; Repetitions | ||
: | : Repetition rate; encoder rate is rep bits out for each input bit. | ||
== Example Flowgraph == | == Example Flowgraph == | ||
[[File:Fec_coder_test_fg.png|800px]] | |||
<p>This flowgraph can be downloaded from [[Media:Fec_coder_test.grc]].</p> | |||
== Source Files == | == Source Files == | ||
; C++ files | ; C++ files | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/lib/repetition_encoder_impl.cc] | ||
; Header files | ; Header files | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/lib/repetition_encoder_impl.h] | ||
; Public header files | ; Public header files | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/include/gnuradio/fec/repetition_encoder.h] | ||
; Block definition | ; Block definition | ||
: [https://github.com/gnuradio/gnuradio | : [https://github.com/gnuradio/gnuradio/blob/master/gr-fec/grc/variable_repetition_encoder_def_list.block.yml] |
Latest revision as of 15:08, 9 April 2025
A repetition encoder class that repeats each input bit rep times. To decode, take a majority vote over the number of repetitions.
Parameters
- Parallelism
- Dimension 1
- For parallelism
- Dimension 2
- For parallelism
- Frame Bits
- Number of bits per frame. If using in the tagged stream style, this is the maximum allowable number of bits per frame
- Repetitions
- Repetition rate; encoder rate is rep bits out for each input bit.
Example Flowgraph
This flowgraph can be downloaded from Media:Fec_coder_test.grc.
Source Files
- C++ files
- [1]
- Header files
- [2]
- Public header files
- [3]
- Block definition
- [4]