From b1657a066628ca2ecd726637b1f4252d06305656 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Tue, 16 Apr 2024 20:47:25 -0400 Subject: [PATCH] Adding character set parameter to the Multimon-NG module. --- csdr/module/toolbox.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/csdr/module/toolbox.py b/csdr/module/toolbox.py index 2cd85b6d..10691e71 100644 --- a/csdr/module/toolbox.py +++ b/csdr/module/toolbox.py @@ -22,7 +22,8 @@ class MultimonModule(PopenModule): super().__init__() def getCommand(self): - cmd = ["multimon-ng", "-", "-v0", "-c"] + pm = Config.get() + cmd = ["multimon-ng", "-", "-v0", "-c", "-C", pm["paging_charset"]] for x in self.decoders: cmd += ["-a", x] return cmd