blob: 64e83390d5e764bacb318f4a76901fe1aea660dd (
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
33
|
id: digital_cma_equalizer_cc
label: CMA Equalizer
parameters:
- id: num_taps
label: Num. Taps
dtype: int
- id: modulus
label: Modulus
dtype: real
- id: mu
label: Gain
dtype: real
- id: sps
label: Samples per Symbol
dtype: int
inputs:
- domain: stream
dtype: complex
outputs:
- domain: stream
dtype: complex
templates:
imports: from gnuradio import digital
make: digital.cma_equalizer_cc(${num_taps}, ${modulus}, ${mu}, ${sps})
callbacks:
- set_gain(${mu})
- set_modulus(${modulus})
file_format: 1
|