-
Notifications
You must be signed in to change notification settings - Fork 5
/
ControlTRX_Pluto.py
141 lines (126 loc) · 4.5 KB
/
ControlTRX_Pluto.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
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
##################################################
# Piped Commands TRx Control Thread for Hayling Transceiver Pluto Version
# Author: G4EML
# Needs to be manually added into Gnu Radio Flowgraph
##################################################
####################################################
#Add these imports to the top
#####################################################
import os
import errno
#######################################################
# Add these lines at the start of the Variables section
#######################################################
plutoip=os.environ.get('PLUTO_IP')
if plutoip==None :
plutoip='pluto.local'
plutoip='ip:' + plutoip
########################################################
# change the pluto sink definition to this
########################################################
self.pluto_sink_0 = iio.pluto_sink(plutoip, 1000000000, 528000, 2000000, 0x800, False, 0, '', True)
########################################################
# change the pluto source definition to this
########################################################
self.pluto_source_0 = iio.pluto_source(plutoip, 1000000000, 528000, 2000000, 0x800, True, True, True, "slow_attack", 64.0, '', True)
#######################################################
# Manually add just before the Main () Function
# to provide support for Piped commands
#######################################################
def docommands(tb):
try:
os.mkfifo("/tmp/langstoneTRx")
except OSError as oe:
if oe.errno != errno.EEXIST:
raise
ex=False
lastbase=0
while not ex:
fifoin=open("/tmp/langstoneTRx",'r')
while True:
try:
with fifoin as filein:
for line in filein:
line=line.strip()
if line[0]=='Q':
ex=True
if line[0]=='U':
value=int(line[1:])
tb.set_Rx_Mute(value)
if line[0]=='H':
value=int(line[1:])
if value==1:
tb.lock()
if value==0:
tb.unlock()
if line[0]=='O':
value=int(line[1:])
tb.set_RxOffset(value)
if line[0]=='V':
value=int(line[1:])
tb.set_AFGain(value)
if line[0]=='L':
value=int(line[1:])
tb.set_Rx_LO(value)
if line[0]=='A':
value=int(line[1:])
tb.set_Rx_Gain(value)
if line[0]=='F':
value=int(line[1:])
tb.set_Rx_Filt_High(value)
if line[0]=='I':
value=int(line[1:])
tb.set_Rx_Filt_Low(value)
if line[0]=='M':
value=int(line[1:])
tb.set_Rx_Mode(value)
tb.set_Tx_Mode(value)
if line=='R':
tb.set_PTT(False)
if line=='T':
tb.set_PTT(True)
if line[0]=='K':
value=int(line[1:])
tb.set_KEY(value)
if line[0]=='B':
value=int(line[1:])
tb.set_ToneBurst(value)
if line[0]=='G':
value=int(line[1:])
tb.set_MicGain(value)
if line[0]=='g':
value=int(line[1:])
tb.set_FMMIC(value)
if line[0]=='d':
value=int(line[1:])
tb.set_AMMIC(value)
if line[0]=='f':
value=int(line[1:])
tb.set_Tx_Filt_High(value)
if line[0]=='i':
value=int(line[1:])
tb.set_Tx_Filt_Low(value)
if line[0]=='l':
value=int(line[1:])
tb.set_Tx_LO(value)
if line[0]=='a':
value=int(line[1:])
tb.set_Tx_Gain(value)
if line[0]=='C':
value=int(line[1:])
tb.set_CTCSS(value)
if line[0]=='W':
value=int(line[1:])
tb.set_FFT_SEL(value)
except:
break
########################################################
#########################################################
#Replace the Main() function with this
########################################################
tb = top_block_cls()
tb.start()
docommands(tb)
tb.stop()
tb.wait()
#########################################################