From 42c59a3aa0d8a4c27296fdcd8f6a3bd719e19930 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Fri, 27 Sep 2019 23:29:22 +0200 Subject: [PATCH] fft needs the multiprocessing send, too --- owrx/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/owrx/connection.py b/owrx/connection.py index e2e23d3..b667a53 100644 --- a/owrx/connection.py +++ b/owrx/connection.py @@ -172,7 +172,7 @@ class OpenWebRxReceiverClient(Client): self.dsp.setProperty(key, value) def write_spectrum_data(self, data): - self.send(bytes([0x01]) + data) + self.mp_send(bytes([0x01]) + data) def write_dsp_data(self, data): self.send(bytes([0x02]) + data)