mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-21 06:13:45 +00:00
12 lines
228 B
Python
12 lines
228 B
Python
from csdr.chain import Chain
|
|
|
|
|
|
class BaseDemodulatorChain(Chain):
|
|
def getFixedIfSampleRate(self):
|
|
return None
|
|
|
|
def getFixedAudioRate(self):
|
|
return None
|
|
|
|
def supportsSquelch(self):
|
|
return True
|