From 4eba6d87e5e6f31253d6a569bdd3a68b9022d916 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Wed, 13 Mar 2024 22:18:04 -0400 Subject: [PATCH] Not killing satdump, will quit on its own. --- csdr/module/toolbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csdr/module/toolbox.py b/csdr/module/toolbox.py index 0ccf9a8e..2cd85b6d 100644 --- a/csdr/module/toolbox.py +++ b/csdr/module/toolbox.py @@ -199,4 +199,4 @@ class SatDumpModule(ExecModule): cmd.append("--" + key) cmd.append(str(options[key])) # Create parent object - super().__init__(Format.COMPLEX_FLOAT, Format.CHAR, cmd) + super().__init__(Format.COMPLEX_FLOAT, Format.CHAR, cmd, doNotKill=True)