openwebrx-clone/owrx/source/resampler.py

50 lines
1.5 KiB
Python
Raw Normal View History

2021-09-01 13:58:39 +00:00
from owrx.source import SdrSource
from pycsdr.modules import Buffer, FirDecimate, Shift
from pycsdr.types import Format
from csdr.chain import Chain
import logging
logger = logging.getLogger(__name__)
2021-09-01 13:58:39 +00:00
class Resampler(SdrSource):
2020-12-30 16:18:46 +00:00
def onPropertyChange(self, changes):
logger.warning("Resampler is unable to handle property changes: {0}".format(changes))
2019-12-27 23:26:45 +00:00
def __init__(self, props, sdr):
sdrProps = sdr.getProps()
2021-09-01 13:58:39 +00:00
shift = (sdrProps["center_freq"] - props["center_freq"]) / sdrProps["samp_rate"]
decimation = int(float(sdrProps["samp_rate"]) / props["samp_rate"])
if_samp_rate = sdrProps["samp_rate"] / decimation
transition_bw = 0.15 * (if_samp_rate / float(sdrProps["samp_rate"]))
props["samp_rate"] = if_samp_rate
2021-09-01 13:58:39 +00:00
self.chain = Chain([
Shift(shift),
FirDecimate(decimation, transition_bw)
])
self.chain.setReader(sdr.getBuffer().getReader())
super().__init__(None, props)
2021-09-01 13:58:39 +00:00
def getBuffer(self):
if self.buffer is None:
self.buffer = Buffer(Format.COMPLEX_FLOAT)
self.chain.setWriter(self.buffer)
return self.buffer
2021-09-02 08:53:05 +00:00
def stop(self):
self.chain.stop()
self.chain = None
super().stop()
def activateProfile(self, profile_id=None):
2019-12-27 23:26:45 +00:00
logger.warning("Resampler does not support setting profiles")
pass
2021-01-13 22:44:00 +00:00
def validateProfiles(self):
# resampler does not support profiles
pass