summaryrefslogtreecommitdiff
path: root/gr-digital/grc/digital_diff_phasor_cc.block.yml
blob: 2568221f183d05fc1a693a1122f6d62cfb5015e0 (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
id: digital_diff_phasor_cc
label: Differential Phasor
flags: [ python, cpp ]

inputs:
-   domain: stream
    dtype: complex

outputs:
-   domain: stream
    dtype: complex

templates:
    imports: from gnuradio import digital
    make: digital.diff_phasor_cc()

cpp_templates:
    includes: ['#include <gnuradio/digital/diff_phasor_cc.h>']
    declarations: 'digital::diff_phasor_cc::sptr ${id};'
    make: |-
        this->${id} = digital::diff_phasor_cc::make();
    link: ['gnuradio::gnuradio-digital']

file_format: 1