blob: 66f9e1d3a515b2d3ad15cacf4c99d2a47d990f95 (
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: channels_conj_fs_iqcorr
label: Freq. Selective IQ Correction
parameters:
- id: delay
label: Delay
dtype: int
default: '0'
- id: taps
label: Taps
dtype: complex_vector
default: '0'
inputs:
- domain: stream
dtype: complex
outputs:
- domain: stream
dtype: complex
templates:
imports: from gnuradio import channels
make: channels.conj_fs_iqcorr(${delay}, ${taps})
callbacks:
- set_delay(${delay})
- set_taps(${taps})
file_format: 1
|