207 lines
7.7 KiB
Python
Executable File
207 lines
7.7 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
##################################################
|
|
# GNU Radio Python Flow Graph
|
|
# Title: Top Block
|
|
# Generated: Fri Nov 13 09:08:57 2020
|
|
##################################################
|
|
|
|
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 eng_notation
|
|
from gnuradio import gr
|
|
from gnuradio import qtgui
|
|
from gnuradio.eng_option import eng_option
|
|
from gnuradio.filter import firdes
|
|
from grc_gnuradio import blks2 as grc_blks2
|
|
from optparse import OptionParser
|
|
import osmosdr
|
|
import sip
|
|
import sys
|
|
import time
|
|
|
|
|
|
class top_block(gr.top_block, Qt.QWidget):
|
|
|
|
def __init__(self):
|
|
gr.top_block.__init__(self, "Top Block")
|
|
Qt.QWidget.__init__(self)
|
|
self.setWindowTitle("Top Block")
|
|
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", "top_block")
|
|
self.restoreGeometry(self.settings.value("geometry").toByteArray())
|
|
|
|
##################################################
|
|
# Variables
|
|
##################################################
|
|
self.samp_rate = samp_rate = 2600000
|
|
|
|
##################################################
|
|
# Blocks
|
|
##################################################
|
|
self.qtgui_waterfall_sink_x_0 = qtgui.waterfall_sink_c(
|
|
1024, #size
|
|
firdes.WIN_BLACKMAN_hARRIS, #wintype
|
|
0, #fc
|
|
samp_rate, #bw
|
|
"", #name
|
|
1 #number of inputs
|
|
)
|
|
self.qtgui_waterfall_sink_x_0.set_update_time(0.10)
|
|
self.qtgui_waterfall_sink_x_0.enable_grid(False)
|
|
self.qtgui_waterfall_sink_x_0.enable_axis_labels(True)
|
|
|
|
if not True:
|
|
self.qtgui_waterfall_sink_x_0.disable_legend()
|
|
|
|
if "complex" == "float" or "complex" == "msg_float":
|
|
self.qtgui_waterfall_sink_x_0.set_plot_pos_half(not True)
|
|
|
|
labels = ['', '', '', '', '',
|
|
'', '', '', '', '']
|
|
colors = [0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0]
|
|
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_waterfall_sink_x_0.set_line_label(i, "Data {0}".format(i))
|
|
else:
|
|
self.qtgui_waterfall_sink_x_0.set_line_label(i, labels[i])
|
|
self.qtgui_waterfall_sink_x_0.set_color_map(i, colors[i])
|
|
self.qtgui_waterfall_sink_x_0.set_line_alpha(i, alphas[i])
|
|
|
|
self.qtgui_waterfall_sink_x_0.set_intensity_range(-140, 10)
|
|
|
|
self._qtgui_waterfall_sink_x_0_win = sip.wrapinstance(self.qtgui_waterfall_sink_x_0.pyqwidget(), Qt.QWidget)
|
|
self.top_layout.addWidget(self._qtgui_waterfall_sink_x_0_win)
|
|
self.qtgui_freq_sink_x_0 = qtgui.freq_sink_c(
|
|
1024, #size
|
|
firdes.WIN_BLACKMAN_hARRIS, #wintype
|
|
0, #fc
|
|
samp_rate, #bw
|
|
"", #name
|
|
1 #number of inputs
|
|
)
|
|
self.qtgui_freq_sink_x_0.set_update_time(0.10)
|
|
self.qtgui_freq_sink_x_0.set_y_axis(-30, 40)
|
|
self.qtgui_freq_sink_x_0.set_y_label('Relative Gain', 'dB')
|
|
self.qtgui_freq_sink_x_0.set_trigger_mode(qtgui.TRIG_MODE_FREE, 0.0, 0, "")
|
|
self.qtgui_freq_sink_x_0.enable_autoscale(False)
|
|
self.qtgui_freq_sink_x_0.enable_grid(False)
|
|
self.qtgui_freq_sink_x_0.set_fft_average(1.0)
|
|
self.qtgui_freq_sink_x_0.enable_axis_labels(True)
|
|
self.qtgui_freq_sink_x_0.enable_control_panel(False)
|
|
|
|
if not True:
|
|
self.qtgui_freq_sink_x_0.disable_legend()
|
|
|
|
if "complex" == "float" or "complex" == "msg_float":
|
|
self.qtgui_freq_sink_x_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.set_line_label(i, "Data {0}".format(i))
|
|
else:
|
|
self.qtgui_freq_sink_x_0.set_line_label(i, labels[i])
|
|
self.qtgui_freq_sink_x_0.set_line_width(i, widths[i])
|
|
self.qtgui_freq_sink_x_0.set_line_color(i, colors[i])
|
|
self.qtgui_freq_sink_x_0.set_line_alpha(i, alphas[i])
|
|
|
|
self._qtgui_freq_sink_x_0_win = sip.wrapinstance(self.qtgui_freq_sink_x_0.pyqwidget(), Qt.QWidget)
|
|
self.top_layout.addWidget(self._qtgui_freq_sink_x_0_win)
|
|
self.osmosdr_sink_0 = osmosdr.sink( args="numchan=" + str(1) + " " + 'hackrf=81320f' )
|
|
self.osmosdr_sink_0.set_clock_source('external', 0)
|
|
self.osmosdr_sink_0.set_sample_rate(samp_rate)
|
|
self.osmosdr_sink_0.set_center_freq(1575420000, 0)
|
|
self.osmosdr_sink_0.set_freq_corr(0, 0)
|
|
self.osmosdr_sink_0.set_gain(17, 0)
|
|
self.osmosdr_sink_0.set_if_gain(20, 0)
|
|
self.osmosdr_sink_0.set_bb_gain(20, 0)
|
|
self.osmosdr_sink_0.set_antenna('RX/TX', 0)
|
|
self.osmosdr_sink_0.set_bandwidth(2600000, 0)
|
|
|
|
self.blks2_tcp_source_0 = grc_blks2.tcp_source(
|
|
itemsize=gr.sizeof_gr_complex*1,
|
|
addr='127.0.0.1',
|
|
port=1234,
|
|
server=True,
|
|
)
|
|
(self.blks2_tcp_source_0).set_max_output_buffer(10000)
|
|
|
|
##################################################
|
|
# Connections
|
|
##################################################
|
|
self.connect((self.blks2_tcp_source_0, 0), (self.osmosdr_sink_0, 0))
|
|
self.connect((self.blks2_tcp_source_0, 0), (self.qtgui_freq_sink_x_0, 0))
|
|
self.connect((self.blks2_tcp_source_0, 0), (self.qtgui_waterfall_sink_x_0, 0))
|
|
|
|
def closeEvent(self, event):
|
|
self.settings = Qt.QSettings("GNU Radio", "top_block")
|
|
self.settings.setValue("geometry", self.saveGeometry())
|
|
event.accept()
|
|
|
|
def get_samp_rate(self):
|
|
return self.samp_rate
|
|
|
|
def set_samp_rate(self, samp_rate):
|
|
self.samp_rate = samp_rate
|
|
self.qtgui_waterfall_sink_x_0.set_frequency_range(0, self.samp_rate)
|
|
self.qtgui_freq_sink_x_0.set_frequency_range(0, self.samp_rate)
|
|
self.osmosdr_sink_0.set_sample_rate(self.samp_rate)
|
|
|
|
|
|
def main(top_block_cls=top_block, 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()
|