-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgr_rpitx_Pi.py
executable file
·85 lines (61 loc) · 2.26 KB
/
gr_rpitx_Pi.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-License-Identifier: GPL-3.0
#
# GNU Radio Python Flow Graph
# Title: gr-rpitx_Pi
# Author: cmrivera
# GNU Radio version: v3.8.5.0-5-g982205bd
from gnuradio import analog
from gnuradio import blocks
from gnuradio import gr
from gnuradio.filter import firdes
import sys
import signal
from argparse import ArgumentParser
from gnuradio.eng_arg import eng_float, intx
from gnuradio import eng_notation
import rpitx
class gr_rpitx_Pi(gr.top_block):
def __init__(self):
gr.top_block.__init__(self, "gr-rpitx_Pi")
##################################################
# Variables
##################################################
self.samp_rate = samp_rate = 200e3
##################################################
# Blocks
##################################################
self.rpitx_rpitx_sink_0 = rpitx.rpitx_sink(samp_rate, 86.6e6)
self.blocks_magphase_to_complex_0 = blocks.magphase_to_complex(1)
self.analog_sig_source_x_0 = analog.sig_source_f(samp_rate, analog.GR_COS_WAVE, 5e3, 400e-3, 500e-3, 0)
self.analog_const_source_x_0 = analog.sig_source_f(0, analog.GR_CONST_WAVE, 0, 0, 0)
##################################################
# Connections
##################################################
self.connect((self.analog_const_source_x_0, 0), (self.blocks_magphase_to_complex_0, 1))
self.connect((self.analog_sig_source_x_0, 0), (self.blocks_magphase_to_complex_0, 0))
self.connect((self.blocks_magphase_to_complex_0, 0), (self.rpitx_rpitx_sink_0, 0))
def get_samp_rate(self):
return self.samp_rate
def set_samp_rate(self, samp_rate):
self.samp_rate = samp_rate
self.analog_sig_source_x_0.set_sampling_freq(self.samp_rate)
def main(top_block_cls=gr_rpitx_Pi, options=None):
tb = top_block_cls()
def sig_handler(sig=None, frame=None):
tb.stop()
tb.wait()
sys.exit(0)
signal.signal(signal.SIGINT, sig_handler)
signal.signal(signal.SIGTERM, sig_handler)
tb.start()
try:
input('Press Enter to quit: ')
except EOFError:
pass
tb.stop()
tb.wait()
if __name__ == '__main__':
main()