Adding debug time to SSTV decoder.

This commit is contained in:
Marat Fayzullin 2023-03-08 11:54:47 -05:00
parent 68d1296aea
commit 1089b1a548
1 changed files with 2 additions and 1 deletions

View File

@ -118,9 +118,10 @@ class SstvDemodulator(ServiceDemodulator, DialFrequencyReceiver):
def __init__(self, service: bool = False):
self.parser = SstvParser(service=service)
self.sampleRate = 24000
self.dbgTime = 300000
workers = [
Agc(Format.COMPLEX_FLOAT),
SstvDecoder(self.sampleRate),
SstvDecoder(self.sampleRate, self.dbgTime),
self.parser
]
super().__init__(workers)