openwebrx/csdr/chain/demodulator.py

13 lines
228 B
Python
Raw Normal View History

2021-07-19 19:04:14 +02:00
from csdr.chain import Chain
2021-08-23 14:25:28 +02:00
class BaseDemodulatorChain(Chain):
def getFixedIfSampleRate(self):
return None
2021-08-01 00:49:20 +02:00
2021-08-23 14:25:28 +02:00
def getFixedAudioRate(self):
return None
2021-07-19 19:04:14 +02:00
2021-08-23 14:25:28 +02:00
def supportsSquelch(self):
return True