Rolling back wide-band ISM change, back to 250kHz with bandpass.

This commit is contained in:
Marat Fayzullin 2024-02-19 15:45:51 -05:00
parent 2a5f936d9c
commit be7b90392f
3 changed files with 3 additions and 4 deletions

View File

@ -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),

View File

@ -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 = [

View File

@ -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