aboutsummaryrefslogtreecommitdiffstats
path: root/grc/live_analyse_dab_poly.py
blob: 126c43dea9000b38d8e775400dbda26f547fca54 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
##################################################
# GNU Radio Python Flow Graph
# Title: Live Analyse Dab Poly
# Generated: Tue May 23 20:21:44 2017
##################################################

if __name__ == '__main__':
    import ctypes
    import sys
    if sys.platform.startswith('linux'):
        try:
            x11 = ctypes.cdll.LoadLibrary('libX11.so')
            x11.XInitThreads()
        except:
            print "Warning: failed to XInitThreads()"

from PyQt4 import Qt
from gnuradio import blocks
from gnuradio import eng_notation
from gnuradio import gr
from gnuradio import qtgui
from gnuradio import uhd
from gnuradio.eng_option import eng_option
from gnuradio.filter import firdes
from gnuradio.qtgui import Range, RangeWidget
from optparse import OptionParser
import dpd
import sip
import sys
import time


class live_analyse_dab_poly(gr.top_block, Qt.QWidget):

    def __init__(self):
        gr.top_block.__init__(self, "Live Analyse Dab Poly")
        Qt.QWidget.__init__(self)
        self.setWindowTitle("Live Analyse Dab Poly")
        try:
            self.setWindowIcon(Qt.QIcon.fromTheme('gnuradio-grc'))
        except:
            pass
        self.top_scroll_layout = Qt.QVBoxLayout()
        self.setLayout(self.top_scroll_layout)
        self.top_scroll = Qt.QScrollArea()
        self.top_scroll.setFrameStyle(Qt.QFrame.NoFrame)
        self.top_scroll_layout.addWidget(self.top_scroll)
        self.top_scroll.setWidgetResizable(True)
        self.top_widget = Qt.QWidget()
        self.top_scroll.setWidget(self.top_widget)
        self.top_layout = Qt.QVBoxLayout(self.top_widget)
        self.top_grid_layout = Qt.QGridLayout()
        self.top_layout.addLayout(self.top_grid_layout)

        self.settings = Qt.QSettings("GNU Radio", "live_analyse_dab_poly")
        self.restoreGeometry(self.settings.value("geometry").toByteArray())

        ##################################################
        # Variables
        ##################################################
        self.txgain = txgain = 80
        self.shift_freq = shift_freq = 1
        self.samp_rate_2 = samp_rate_2 = 2048000
        self.samp_rate_1 = samp_rate_1 = 8192000
        self.rxgain = rxgain = 10
        self.freq = freq = 222e6
        self.ampl = ampl = 0.4
        self.a_8 = a_8 = 0
        self.a_7 = a_7 = 0
        self.a_6 = a_6 = 0
        self.a_5 = a_5 = 0
        self.a_4 = a_4 = 0
        self.a_3 = a_3 = 0
        self.a_2 = a_2 = 0
        self.a_1 = a_1 = 0

        ##################################################
        # Message Queues
        ##################################################
        uhd_amsg_source_0_msgq_out = blocks_message_burst_source_0_msgq_in = gr.msg_queue(2)

        ##################################################
        # Blocks
        ##################################################
        self._txgain_range = Range(0, 100, 1, 80, 200)
        self._txgain_win = RangeWidget(self._txgain_range, self.set_txgain, "txgain", "counter_slider", float)
        self.top_layout.addWidget(self._txgain_win)
        self._rxgain_range = Range(0, 100, 1, 10, 200)
        self._rxgain_win = RangeWidget(self._rxgain_range, self.set_rxgain, "rxgain", "counter_slider", float)
        self.top_layout.addWidget(self._rxgain_win)
        self._a_8_range = Range(-1, 1, 0.001, 0, 200)
        self._a_8_win = RangeWidget(self._a_8_range, self.set_a_8, "a_8", "counter_slider", float)
        self.top_layout.addWidget(self._a_8_win)
        self._a_7_range = Range(-1, 1, 0.001, 0, 200)
        self._a_7_win = RangeWidget(self._a_7_range, self.set_a_7, "a_7", "counter_slider", float)
        self.top_layout.addWidget(self._a_7_win)
        self._a_6_range = Range(-1, 1, 0.001, 0, 200)
        self._a_6_win = RangeWidget(self._a_6_range, self.set_a_6, "a_6", "counter_slider", float)
        self.top_layout.addWidget(self._a_6_win)
        self._a_5_range = Range(-1, 1, 0.001, 0, 200)
        self._a_5_win = RangeWidget(self._a_5_range, self.set_a_5, "a_5", "counter_slider", float)
        self.top_layout.addWidget(self._a_5_win)
        self._a_4_range = Range(-1, 1, 0.001, 0, 200)
        self._a_4_win = RangeWidget(self._a_4_range, self.set_a_4, "a_4", "counter_slider", float)
        self.top_layout.addWidget(self._a_4_win)
        self._a_3_range = Range(-1, 1, 0.001, 0, 200)
        self._a_3_win = RangeWidget(self._a_3_range, self.set_a_3, "a_3", "counter_slider", float)
        self.top_layout.addWidget(self._a_3_win)
        self._a_2_range = Range(-1, 1, 0.001, 0, 200)
        self._a_2_win = RangeWidget(self._a_2_range, self.set_a_2, "a_2", "counter_slider", float)
        self.top_layout.addWidget(self._a_2_win)
        self._a_1_range = Range(-10, 10, 0.001, 0, 200)
        self._a_1_win = RangeWidget(self._a_1_range, self.set_a_1, "a_1", "counter_slider", float)
        self.top_layout.addWidget(self._a_1_win)
        self.uhd_usrp_source_0 = uhd.usrp_source(
        	",".join(("", "")),
        	uhd.stream_args(
        		cpu_format="fc32",
        		channels=range(1),
        	),
        )
        self.uhd_usrp_source_0.set_samp_rate(samp_rate_2)
        self.uhd_usrp_source_0.set_center_freq(freq, 0)
        self.uhd_usrp_source_0.set_gain(rxgain, 0)
        self.uhd_usrp_sink_0 = uhd.usrp_sink(
        	",".join(("", "")),
        	uhd.stream_args(
        		cpu_format="fc32",
        		channels=range(1),
        	),
        )
        self.uhd_usrp_sink_0.set_samp_rate(samp_rate_1)
        self.uhd_usrp_sink_0.set_center_freq(freq, 0)
        self.uhd_usrp_sink_0.set_gain(txgain, 0)
        self.uhd_amsg_source_0 = uhd.amsg_source(device_addr="", msgq=uhd_amsg_source_0_msgq_out)
        self._shift_freq_range = Range(-8000000, 8000000, 1, 1, 200)
        self._shift_freq_win = RangeWidget(self._shift_freq_range, self.set_shift_freq, "shift_freq", "counter_slider", float)
        self.top_layout.addWidget(self._shift_freq_win)
        self.qtgui_freq_sink_x_0_0 = qtgui.freq_sink_c(
        	16000, #size
        	firdes.WIN_BLACKMAN_hARRIS, #wintype
        	0, #fc
        	samp_rate_2, #bw
        	"", #name
        	1 #number of inputs
        )
        self.qtgui_freq_sink_x_0_0.set_update_time(0.1)
        self.qtgui_freq_sink_x_0_0.set_y_axis(-140, 10)
        self.qtgui_freq_sink_x_0_0.set_trigger_mode(qtgui.TRIG_MODE_FREE, 0.0, 0, "")
        self.qtgui_freq_sink_x_0_0.enable_autoscale(False)
        self.qtgui_freq_sink_x_0_0.enable_grid(False)
        self.qtgui_freq_sink_x_0_0.set_fft_average(1.0)
        self.qtgui_freq_sink_x_0_0.enable_control_panel(False)
        
        if not True:
          self.qtgui_freq_sink_x_0_0.disable_legend()
        
        if "complex" == "float" or "complex" == "msg_float":
          self.qtgui_freq_sink_x_0_0.set_plot_pos_half(not True)
        
        labels = ["", "", "", "", "",
                  "", "", "", "", ""]
        widths = [1, 1, 1, 1, 1,
                  1, 1, 1, 1, 1]
        colors = ["blue", "red", "green", "black", "cyan",
                  "magenta", "yellow", "dark red", "dark green", "dark blue"]
        alphas = [1.0, 1.0, 1.0, 1.0, 1.0,
                  1.0, 1.0, 1.0, 1.0, 1.0]
        for i in xrange(1):
            if len(labels[i]) == 0:
                self.qtgui_freq_sink_x_0_0.set_line_label(i, "Data {0}".format(i))
            else:
                self.qtgui_freq_sink_x_0_0.set_line_label(i, labels[i])
            self.qtgui_freq_sink_x_0_0.set_line_width(i, widths[i])
            self.qtgui_freq_sink_x_0_0.set_line_color(i, colors[i])
            self.qtgui_freq_sink_x_0_0.set_line_alpha(i, alphas[i])
        
        self._qtgui_freq_sink_x_0_0_win = sip.wrapinstance(self.qtgui_freq_sink_x_0_0.pyqwidget(), Qt.QWidget)
        self.top_layout.addWidget(self._qtgui_freq_sink_x_0_0_win)
        self.dpd_memless_poly_0 = dpd.memless_poly(a_1, a_2, a_3, a_4, a_5, a_6, a_7, a_8)
        self.blocks_null_sink_0_2_0 = blocks.null_sink(gr.sizeof_gr_complex*1)
        self.blocks_null_sink_0_2 = blocks.null_sink(gr.sizeof_char*1)
        self.blocks_multiply_const_vxx_1 = blocks.multiply_const_vcc((1, ))
        self.blocks_message_burst_source_0 = blocks.message_burst_source(gr.sizeof_char*1, blocks_message_burst_source_0_msgq_in)
        self.blocks_file_source_0 = blocks.file_source(gr.sizeof_gr_complex*1, "/home/andreas/dab/test_dat/out.iq", True)
        self._ampl_range = Range(-1, 1, 0.0001, 0.4, 200)
        self._ampl_win = RangeWidget(self._ampl_range, self.set_ampl, "ampl", "counter_slider", float)
        self.top_layout.addWidget(self._ampl_win)

        ##################################################
        # Connections
        ##################################################
        self.connect((self.blocks_file_source_0, 0), (self.dpd_memless_poly_0, 0))    
        self.connect((self.blocks_message_burst_source_0, 0), (self.blocks_null_sink_0_2, 0))    
        self.connect((self.blocks_multiply_const_vxx_1, 0), (self.uhd_usrp_sink_0, 0))    
        self.connect((self.dpd_memless_poly_0, 0), (self.blocks_multiply_const_vxx_1, 0))    
        self.connect((self.uhd_usrp_source_0, 0), (self.blocks_null_sink_0_2_0, 0))    
        self.connect((self.uhd_usrp_source_0, 0), (self.qtgui_freq_sink_x_0_0, 0))    

    def closeEvent(self, event):
        self.settings = Qt.QSettings("GNU Radio", "live_analyse_dab_poly")
        self.settings.setValue("geometry", self.saveGeometry())
        event.accept()


    def get_txgain(self):
        return self.txgain

    def set_txgain(self, txgain):
        self.txgain = txgain
        self.uhd_usrp_sink_0.set_gain(self.txgain, 0)
        	

    def get_shift_freq(self):
        return self.shift_freq

    def set_shift_freq(self, shift_freq):
        self.shift_freq = shift_freq

    def get_samp_rate_2(self):
        return self.samp_rate_2

    def set_samp_rate_2(self, samp_rate_2):
        self.samp_rate_2 = samp_rate_2
        self.qtgui_freq_sink_x_0_0.set_frequency_range(0, self.samp_rate_2)
        self.uhd_usrp_source_0.set_samp_rate(self.samp_rate_2)

    def get_samp_rate_1(self):
        return self.samp_rate_1

    def set_samp_rate_1(self, samp_rate_1):
        self.samp_rate_1 = samp_rate_1
        self.uhd_usrp_sink_0.set_samp_rate(self.samp_rate_1)

    def get_rxgain(self):
        return self.rxgain

    def set_rxgain(self, rxgain):
        self.rxgain = rxgain
        self.uhd_usrp_source_0.set_gain(self.rxgain, 0)
        	

    def get_freq(self):
        return self.freq

    def set_freq(self, freq):
        self.freq = freq
        self.uhd_usrp_sink_0.set_center_freq(self.freq, 0)
        self.uhd_usrp_source_0.set_center_freq(self.freq, 0)

    def get_ampl(self):
        return self.ampl

    def set_ampl(self, ampl):
        self.ampl = ampl

    def get_a_8(self):
        return self.a_8

    def set_a_8(self, a_8):
        self.a_8 = a_8
        self.dpd_memless_poly_0.set_a8(self.a_8)

    def get_a_7(self):
        return self.a_7

    def set_a_7(self, a_7):
        self.a_7 = a_7
        self.dpd_memless_poly_0.set_a7(self.a_7)

    def get_a_6(self):
        return self.a_6

    def set_a_6(self, a_6):
        self.a_6 = a_6
        self.dpd_memless_poly_0.set_a6(self.a_6)

    def get_a_5(self):
        return self.a_5

    def set_a_5(self, a_5):
        self.a_5 = a_5
        self.dpd_memless_poly_0.set_a5(self.a_5)

    def get_a_4(self):
        return self.a_4

    def set_a_4(self, a_4):
        self.a_4 = a_4
        self.dpd_memless_poly_0.set_a4(self.a_4)

    def get_a_3(self):
        return self.a_3

    def set_a_3(self, a_3):
        self.a_3 = a_3
        self.dpd_memless_poly_0.set_a3(self.a_3)

    def get_a_2(self):
        return self.a_2

    def set_a_2(self, a_2):
        self.a_2 = a_2
        self.dpd_memless_poly_0.set_a2(self.a_2)

    def get_a_1(self):
        return self.a_1

    def set_a_1(self, a_1):
        self.a_1 = a_1
        self.dpd_memless_poly_0.set_a1(self.a_1)


def main(top_block_cls=live_analyse_dab_poly, options=None):

    from distutils.version import StrictVersion
    if StrictVersion(Qt.qVersion()) >= StrictVersion("4.5.0"):
        style = gr.prefs().get_string('qtgui', 'style', 'raster')
        Qt.QApplication.setGraphicsSystem(style)
    qapp = Qt.QApplication(sys.argv)

    tb = top_block_cls()
    tb.start()
    tb.show()

    def quitting():
        tb.stop()
        tb.wait()
    qapp.connect(qapp, Qt.SIGNAL("aboutToQuit()"), quitting)
    qapp.exec_()


if __name__ == '__main__':
    main()