blob: 1be423454d84794d249b6bd1a622f023532f622a (
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: dtv_catv_randomizer_bb
label: Randomizer
parameters:
- id: constellation
label: Constellation
dtype: enum
options: [CATV_MOD_64QAM, CATV_MOD_256QAM]
option_labels: [64QAM, 256QAM]
option_attributes:
val: [dtv.CATV_MOD_64QAM, dtv.CATV_MOD_256QAM]
inputs:
- domain: stream
dtype: byte
outputs:
- domain: stream
dtype: byte
templates:
imports: from gnuradio import dtv
make: dtv.catv_randomizer_bb(${constellation.val})
file_format: 1
|