From ef131e1e8dfce63f1ea0fb615dc5baf2f0119f5d Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Fri, 12 Apr 2024 00:49:06 -0400 Subject: [PATCH] Making sure RTL-433 always output JSON data. --- csdr/chain/toolbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csdr/chain/toolbox.py b/csdr/chain/toolbox.py index 97a36af2..76b57ee8 100644 --- a/csdr/chain/toolbox.py +++ b/csdr/chain/toolbox.py @@ -15,7 +15,7 @@ class IsmDemodulator(ServiceDemodulator, DialFrequencyReceiver): workers = [ Agc(Format.COMPLEX_FLOAT), Convert(Format.COMPLEX_FLOAT, Format.COMPLEX_SHORT), - Rtl433Module(self.sampleRate, jsonOutput = not service), + Rtl433Module(self.sampleRate, jsonOutput = True), self.parser, ] # Connect all the workers