From 05ca541a8e78f61295437c54f6560c06bfd18817 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Mon, 7 Dec 2020 20:29:22 +0100 Subject: [PATCH] fix jt9 parameters --- owrx/wsjt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owrx/wsjt.py b/owrx/wsjt.py index 60df558..737beb7 100644 --- a/owrx/wsjt.py +++ b/owrx/wsjt.py @@ -98,7 +98,7 @@ class Fst4Profile(WsjtProfile): return "%y%m%d_%H%M%S" def decoder_commandline(self, file): - return ["jt9", "--fst4", "-b", "FST4-{0}".format(self.interval), "-d", str(self.decoding_depth("fst4")), file] + return ["jt9", "--fst4", "-p", str(self.interval), "-d", str(self.decoding_depth("fst4")), file] @staticmethod def getEnabledProfiles(): @@ -120,7 +120,7 @@ class Fst4wProfile(WsjtProfile): return "%y%m%d_%H%M%S" def decoder_commandline(self, file): - return ["jt9", "--fst4w", "-b", "FST4W-{0}".format(self.interval), "-d", str(self.decoding_depth("fst4w")), file] + return ["jt9", "--fst4w", "-p", str(self.interval), "-d", str(self.decoding_depth("fst4w")), file] @staticmethod def getEnabledProfiles():