blob: 1c44ea285061a020aecb586a3f046957990e6123 (
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: digital_lms_dd_equalizer_cc
label: LMS DD Equalizer
parameters:
- id: mu
label: Gain
dtype: real
- id: num_taps
label: Num. Taps
dtype: int
- id: sps
label: Samples per Symbol
dtype: int
- id: cnst
label: Constellation Object
dtype: raw
inputs:
- domain: stream
dtype: complex
outputs:
- domain: stream
dtype: complex
templates:
imports: from gnuradio import digital
make: digital.lms_dd_equalizer_cc(${num_taps}, ${mu}, ${sps}, ${cnst})
callbacks:
- set_gain(${mu})
file_format: 1
|