Rolling back wide-band ISM change, back to 250kHz with bandpass.
This commit is contained in:
parent
2a5f936d9c
commit
be7b90392f
|
|
@ -9,7 +9,7 @@ import os
|
|||
|
||||
class IsmDemodulator(ServiceDemodulator, DialFrequencyReceiver):
|
||||
def __init__(self, service: bool = False):
|
||||
self.sampleRate = 1200000
|
||||
self.sampleRate = 250000
|
||||
self.parser = IsmParser(service=service)
|
||||
workers = [
|
||||
Agc(Format.COMPLEX_FLOAT),
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ from owrx.config import Config
|
|||
import os
|
||||
|
||||
class Rtl433Module(ExecModule):
|
||||
def __init__(self, sampleRate: int = 1200000, jsonOutput: bool = False):
|
||||
def __init__(self, sampleRate: int = 250000, jsonOutput: bool = False):
|
||||
self.sampleRate = sampleRate
|
||||
self.jsonOutput = jsonOutput
|
||||
cmd = [
|
||||
|
|
|
|||
|
|
@ -227,8 +227,7 @@ class Modes(object):
|
|||
"ism",
|
||||
"ISM",
|
||||
underlying=["empty"],
|
||||
bandpass=None,
|
||||
ifRate=1200000,
|
||||
bandpass=Bandpass(-125000, 125000),
|
||||
requirements=["ism"],
|
||||
service=True,
|
||||
squelch=False
|
||||
|
|
|
|||
Loading…
Reference in New Issue