mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-04-06 06:43:54 +00:00
changed var-names
This commit is contained in:
parent
96cb967bb7
commit
24899f3d08
3 changed files with 8 additions and 8 deletions
|
|
@ -67,7 +67,7 @@ class InputBase(ABC):
|
|||
print(data)
|
||||
|
||||
def getDecoderInstance(self, decoderConfig, StdIn):
|
||||
mmProc = ProcessManager(str(decoderConfig.get("Path", default="multimon-ng")), textMode=True)
|
||||
mmProc = ProcessManager(str(decoderConfig.get("path", default="multimon-ng")), textMode=True)
|
||||
if decoderConfig.get("fms", default=0):
|
||||
mmProc.addArgument("-a FMSFSK")
|
||||
if decoderConfig.get("zvei", default=0):
|
||||
|
|
@ -78,8 +78,8 @@ class InputBase(ABC):
|
|||
mmProc.addArgument("-a POCSAG1200")
|
||||
if decoderConfig.get("poc2400", default=0):
|
||||
mmProc.addArgument("-a POCSAG2400")
|
||||
if decoderConfig.get("Char", default=0):
|
||||
mmProc.addArgument("-C " + str(decoderConfig.get("Char")))
|
||||
if decoderConfig.get("char", default=0):
|
||||
mmProc.addArgument("-C " + str(decoderConfig.get("char")))
|
||||
mmProc.addArgument("-f alpha")
|
||||
mmProc.addArgument("-t raw -")
|
||||
mmProc.setStdin(StdIn)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue