aboutsummaryrefslogtreecommitdiffstats
path: root/gr-trellis/grc/trellis_encoder_xx.block.yml
blob: d437c16119676ba0824a6b830994cfb1d9206aeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
id: trellis_encoder_xx
label: Trellis Encoder
category: '[Core]/Trellis Coding'

parameters:
-   id: type
    label: Type
    dtype: enum
    options: [bb, bs, bi, ss, si, ii]
    option_labels: [Byte->Byte, Byte->Short, Byte->Int, Short->Short, Short->Int,
        Int->Int]
    option_attributes:
        input: [byte, byte, byte, short, short, int]
        output: [byte, short, int, short, int, int]
    hide: part
-   id: fsm_args
    label: FSM Args
    dtype: raw
-   id: init_state
    label: Initial State
    dtype: int
    default: '0'
-   id: blockwise
    label: Blockwise
    dtype: enum
    default: 'False'
    options: ['True', 'False']
    option_labels: ['On', 'Off']
    hide: part
-   id: blocklength
    label: Block length
    dtype: int
    default: '0'
    hide: ${ ('none' if blockwise == 'True' else 'all') }

inputs:
-   domain: stream
    dtype: ${ type.input }

outputs:
-   domain: stream
    dtype: ${ type.output }

asserts:
- ${ (isinstance(eval(""" fsm_args """[1:-1], locals(),globals()), str) and open(fsm_args).close()) or True }

templates:
    imports: from gnuradio import trellis
    make: ' trellis.encoder_${type}(trellis.fsm(${fsm_args}), ${init_state}, ${blocklength})
        if ${blockwise} else trellis.encoder_${type}(trellis.fsm(${fsm_args}), ${init_state}) '
    callbacks:
    - set_FSM(trellis.fsm(${fsm_args}))
    - set_ST(${init_state})
    - set_K(${blocklength})

documentation: |-
    The fsm arguments are passed directly to the trellis.fsm() constructor.

file_format: 1