-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuhd_fft_remote.py
130 lines (113 loc) · 4.57 KB
/
uhd_fft_remote.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
import requests
import threading
import time
import base64
import io
import matplotlib.pyplot as plt
from uhd_fft import UhdFft
class UhdFftRemote():
params = {}
base_url = ""
room_id = "test"
params_thread = None
running = True
params_update_interval = 0.25
update_interval = 0.1
def __init__(self, base_url="http://localhost:8000", room_id="test"):
self.uhd_fft = UhdFft(center_freq=796e6,
bandwidth=10e6,
gain=38)
self.room_id = room_id
self.base_url = base_url
self.params_thread = threading.Thread(
target=self.receive_params_worker,
daemon=True)
self.params_thread.start()
def extract_param(self, k):
if k in self.params and "raw" in self.params[k]:
return self.params[k]["raw"]
return None
def receive_params_worker(self):
requests.post("%s/create_room?room=%s" % (self.base_url, self.room_id))
while self.running:
try:
self.recieve_params()
except Exception as err:
print("Error receiving remote params...")
print(err)
finally:
time.sleep(self.params_update_interval)
self.running = False
def recieve_params(self):
url = "%s/params?room=%s" % (self.base_url, self.room_id)
resp = requests.get(url)
self.params = resp.json()
def send_result(self, freq_result, freq_result2):
url = "%s/result?room=%s" % (self.base_url, self.room_id)
result = {
"room": self.room_id,
"freq": self.ndarray_to_list(freq_result),
"image": self.make_plot(freq_result, freq_result2)
}
resp = requests.post(url, json=result)
@staticmethod
def ndarray_to_list(freq_result):
result = []
for r in freq_result:
result.append(list(r))
return result
def make_plot(self, freq_result, freq_result2):
bts = io.BytesIO()
with plt.style.context(('dark_background')):
fig, ax = plt.subplots(2, 1, sharex=True)
plt.subplots_adjust(hspace=.0, bottom=0.20)
self.uhd_fft.plot_spectogram(ax[0], freq_result)
self.uhd_fft.plot_avg_power(ax[1], freq_result, 1.,
label="Antenna 0", color="g")
self.uhd_fft.plot_avg_power(ax[1], freq_result2, 1.,
label="Antenna 1", color="r")
plt.figtext(.05, .9, "Sweep time: %.2f ms" %
(self.uhd_fft.time_res*1e3))
plt.figtext(.7, .9, "Resolution: %.2f kHz" %
(self.uhd_fft.freq_res/1e3))
ax[0].tick_params(colors='white')
ax[1].tick_params(colors='white')
ax[1].legend()
fig.savefig(bts, format='png')
bts.seek(0)
plt.close()
return base64.encodebytes(bts.read()).decode("ascii")
def measurement_worker(self):
while self.running:
try:
center_freq = self.extract_param("cf")
gain = self.extract_param("antennaGain")
fft_size = self.extract_param("fftSize")
sampling_rate = self.extract_param("samplingRate")
power_min = self.extract_param("powerMin")
power_max = self.extract_param("powerMax")
if not center_freq is None:
self.uhd_fft.center_freq = center_freq
if not gain is None:
self.uhd_fft.gain = gain
if not fft_size is None:
self.uhd_fft.fft_size = fft_size
if not sampling_rate is None:
self.uhd_fft.bandwidth = sampling_rate
if not power_min is None:
self.uhd_fft.vmin = power_min
if not power_max is None:
self.uhd_fft.vmax = power_max
prev_antenna_id = self.uhd_fft.antenna_id
next_antenna_id = (prev_antenna_id + 1) % 2
freq_result1 = self.uhd_fft.usrp_recv()
self.uhd_fft.antenna_id = next_antenna_id
freq_result2 = self.uhd_fft.usrp_recv()
self.uhd_fft.antenna_id = prev_antenna_id
self.send_result(freq_result1, freq_result2)
except Exception as err:
print("Error measuring...")
print(err)
finally:
time.sleep(self.update_interval)
self.running = False