blob: 1ebf5b378a9bd514a6554148fd394c2a2264ec7d (
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
|
id: blocks_message_debug
label: Message Debug
flags: [ python, cpp ]
inputs:
- domain: message
id: print
optional: true
- domain: message
id: store
optional: true
- domain: message
id: print_pdu
optional: true
templates:
imports: from gnuradio import blocks
make: blocks.message_debug()
cpp_templates:
includes: ['#include <gnuradio/blocks/message_debug.h>']
declarations: 'blocks::message_debug::sptr ${id};'
make: 'this->${id} = blocks::message_debug::make();'
file_format: 1
|