From 1c08bc6919305f7cc7e3bd9b089bd20434091131 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 2 Jan 2022 22:31:28 -0500 Subject: [PATCH] Update: Working on SDR RX --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 3a1cda3..df8e95d 100644 --- a/bot.py +++ b/bot.py @@ -298,7 +298,7 @@ class Bot(commands.Bot): # Start the SDR receiver and pipe the output self.sdr_process = Popen(["rtl_fm", "-M", str(self.mode), "-f", str(self.freq), "-g", str(self.gain), "-l", str(self.squelch), "-s", str(self.sample_rate), "-E", - str(self.sdr_filters[0]), "-A", "fast"], stdout=PIPE) + str(self.sdr_filters[0])], stdout=PIPE) # Use the piped output of the SDR receiver to generate audio self.sdr_output_process = Popen(["play", "-t", "raw", "-r", str(self.play_sample_rate), "-es", "-b", "16", "-c", "1", "-V1", "-"],