summaryrefslogtreecommitdiff
path: root/gr-digital/grc/digital_gmsk_demod.block.yml
blob: bbd3b4148af1aa19256df4e382b91819d4f23425 (plain)
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
id: digital_gmsk_demod
label: GMSK Demod

parameters:
-   id: samples_per_symbol
    label: Samples/Symbol
    dtype: int
    default: '2'
-   id: gain_mu
    label: Gain Mu
    dtype: real
    default: '0.175'
-   id: mu
    label: Mu
    dtype: real
    default: '0.5'
-   id: omega_relative_limit
    label: Omega Relative Limit
    dtype: real
    default: '0.005'
-   id: freq_error
    label: Freq Error
    dtype: real
    default: '0.0'
-   id: verbose
    label: Verbose
    dtype: bool
    default: 'False'
    options: ['True', 'False']
    option_labels: ['On', 'Off']
    hide: ${ ('part' if str(verbose) == 'False' else 'none') }
-   id: log
    label: Log
    dtype: bool
    default: 'False'
    options: ['True', 'False']
    option_labels: ['On', 'Off']
    hide: ${ ('part' if str(log) == 'False' else 'none') }

inputs:
-   domain: stream
    dtype: complex

outputs:
-   domain: stream
    dtype: byte

templates:
    imports: from gnuradio import digital
    make: "digital.gmsk_demod(\n\tsamples_per_symbol=${samples_per_symbol},\n\tgain_mu=${gain_mu},\n\
        \tmu=${mu},\n\tomega_relative_limit=${omega_relative_limit},\n\tfreq_error=${freq_error},\n\
        \tverbose=${verbose},\n\tlog=${log},\n)"

file_format: 1