blob: d629a16694facc9d1bb8ae14514c54515d2ce86b (
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
|
id: dtv_catv_frame_sync_enc_bb
label: Frame Sync Encoder
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]
- id: ctrlword
label: Control Word
dtype: int
default: '6'
inputs:
- domain: stream
dtype: byte
outputs:
- domain: stream
dtype: byte
templates:
imports: from gnuradio import dtv
make: dtv.catv_frame_sync_enc_bb(${constellation.val}, ${ctrlword})
file_format: 1
|