mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +01:00
13 lines
228 B
Python
13 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
|