55 lines
1.4 KiB
Python
55 lines
1.4 KiB
Python
|
from csdr.chain.demodulator import BaseDemodulatorChain
|
||
|
from pycsdr.modules import AmDemod, DcBlock, FmDemod, Limit, NfmDeemphasis, Agc, WfmDeemphasis, FractionalDecimator, RealPart
|
||
|
from pycsdr.types import Format, AgcProfile
|
||
|
|
||
|
|
||
|
class Am(BaseDemodulatorChain):
|
||
|
def __init__(self):
|
||
|
agc = Agc(Format.FLOAT)
|
||
|
agc.setProfile(AgcProfile.SLOW)
|
||
|
agc.setInitialGain(200)
|
||
|
workers = [
|
||
|
AmDemod(),
|
||
|
DcBlock(),
|
||
|
agc,
|
||
|
]
|
||
|
|
||
|
super().__init__(workers)
|
||
|
|
||
|
|
||
|
class NFm(BaseDemodulatorChain):
|
||
|
def __init__(self, sampleRate: int):
|
||
|
agc = Agc(Format.FLOAT)
|
||
|
agc.setProfile(AgcProfile.SLOW)
|
||
|
agc.setMaxGain(3)
|
||
|
workers = [
|
||
|
FmDemod(),
|
||
|
Limit(),
|
||
|
NfmDeemphasis(sampleRate),
|
||
|
agc,
|
||
|
]
|
||
|
super().__init__(workers)
|
||
|
|
||
|
|
||
|
class WFm(BaseDemodulatorChain):
|
||
|
def __init__(self, sampleRate: int, tau: float):
|
||
|
workers = [
|
||
|
FmDemod(),
|
||
|
Limit(),
|
||
|
FractionalDecimator(Format.FLOAT, 200000.0 / sampleRate, prefilter=True),
|
||
|
WfmDeemphasis(sampleRate, tau),
|
||
|
]
|
||
|
super().__init__(workers)
|
||
|
|
||
|
def getFixedIfSampleRate(self):
|
||
|
return 200000
|
||
|
|
||
|
|
||
|
class Ssb(BaseDemodulatorChain):
|
||
|
def __init__(self):
|
||
|
workers = [
|
||
|
RealPart(),
|
||
|
Agc(Format.FLOAT),
|
||
|
]
|
||
|
super().__init__(workers)
|