mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-02-05 06:54:19 +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
|