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
|
id: blocks_tcp_server_sink
label: TCP Server Sink
flags: [ python, cpp ]
parameters:
- id: type
label: Input Type
dtype: enum
options: [complex, float, int, short, byte]
option_attributes:
size: [gr.sizeof_gr_complex, gr.sizeof_float, gr.sizeof_int, gr.sizeof_short,
gr.sizeof_char]
hide: part
- id: ipaddr
label: Destination IP Address
dtype: string
- id: port
label: Destination Port
dtype: int
- id: noblock
label: Nonblocking Mode
dtype: enum
options: ['True', 'False']
option_labels: ['On', 'Off']
- id: vlen
label: Vec Length
dtype: int
default: '1'
hide: ${ 'part' if vlen == 1 else 'none' }
inputs:
- domain: stream
dtype: ${ type }
vlen: ${ vlen }
asserts:
- ${ vlen > 0 }
templates:
imports: from gnuradio import blocks
make: blocks.tcp_server_sink(${type.size}*${vlen}, ${ipaddr}, ${port}, ${noblock})
cpp_templates:
includes: ['#include <gnuradio/blocks/tcp_server_sink.h>']
declarations: 'blocks::tcp_server_sink::sptr ${id};'
make: 'this->${id} = blocks::tcp_server_sink::make(${type.size}*${vlen}, ${ipaddr}, ${port}, ${noblock});'
translations:
'True': 'true'
'False': 'false'
file_format: 1
|