blob: ea4ea4ea1856f3b35e040308abc4c5c27f38fe54 (
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
|
id: blocks_ctrlport_probe_c
label: Ctrlport Complex Probe
flags: [ python, cpp ]
parameters:
- id: name
label: Name
dtype: string
default: constellation
- id: desc
label: Description
dtype: string
default: Constellation Points
inputs:
- domain: stream
dtype: complex
templates:
imports: from gnuradio import blocks
make: blocks.ctrlport_probe_c(${name}, ${desc})
cpp_templates:
includes: ['#include <gnuradio/blocks/ctrlport_probe_c.h>']
declarations: 'blocks::ctrlport_probe_c::sptr ${id};'
make: 'this->${id} = blocks::ctrlport_probe_c::make(${name}, ${desc});'
documentation: |-
Place this in a graph to export complex values to a GRCP port probe.
file_format: 1
|