summaryrefslogtreecommitdiff
path: root/gr-digital/grc/digital_msk_timing_recovery_cc.block.yml
blob: 3f5ae678c7ee4a63b75ef4717eae9e25031b9cf7 (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
id: digital_msk_timing_recovery_cc
label: MSK Timing Recovery

parameters:
-   id: gain
    label: Gain
    dtype: float
-   id: sps
    label: Samples per symbol
    dtype: float
-   id: limit
    label: Error limit
    dtype: float
-   id: osps
    label: Output samples per symbol
    dtype: int

inputs:
-   domain: stream
    dtype: complex

outputs:
-   domain: stream
    dtype: complex
-   label: err
    domain: stream
    dtype: float
    optional: true
-   label: omega
    domain: stream
    dtype: float
    optional: true

templates:
    imports: from gnuradio import digital
    make: digital.msk_timing_recovery_cc(${sps}, ${gain}, ${limit}, ${osps})
    callbacks:
    - set_gain(${gain})
    - set_sps(${sps})
    - set_limit(${limit})

file_format: 1