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):
|
class IsmDemodulator(ServiceDemodulator, DialFrequencyReceiver):
|
||||||
def __init__(self, service: bool = False):
|
def __init__(self, service: bool = False):
|
||||||
self.sampleRate = 1200000
|
self.sampleRate = 250000
|
||||||
self.parser = IsmParser(service=service)
|
self.parser = IsmParser(service=service)
|
||||||
workers = [
|
workers = [
|
||||||
Agc(Format.COMPLEX_FLOAT),
|
Agc(Format.COMPLEX_FLOAT),
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ from owrx.config import Config
|
||||||
import os
|
import os
|
||||||
|
|
||||||
class Rtl433Module(ExecModule):
|
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.sampleRate = sampleRate
|
||||||
self.jsonOutput = jsonOutput
|
self.jsonOutput = jsonOutput
|
||||||
cmd = [
|
cmd = [
|
||||||
|
|
|
||||||
|
|
@ -227,8 +227,7 @@ class Modes(object):
|
||||||
"ism",
|
"ism",
|
||||||
"ISM",
|
"ISM",
|
||||||
underlying=["empty"],
|
underlying=["empty"],
|
||||||
bandpass=None,
|
bandpass=Bandpass(-125000, 125000),
|
||||||
ifRate=1200000,
|
|
||||||
requirements=["ism"],
|
requirements=["ism"],
|
||||||
service=True,
|
service=True,
|
||||||
squelch=False
|
squelch=False
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue