Example #1
0
 def __make_demodulator(self):
     return rtty_demod_cb(
         samp_rate=self.__demod_rate,
         # 6000 / 45.45 / 11 = 12.0012 samples per bit. We want a number
         # that's not too small to avoid quantization errors in the
         # timing.
         decimation=11,
         mark_freq=0,
         space_freq=-self.__spacing)
Example #2
0
 def __make_demodulator(self):
     return rtty_demod_cb(
         samp_rate=self.__demod_rate,
         # 6000 / 45.45 / 11 = 12.0012 samples per bit. We want a number
         # that's not too small to avoid quantization errors in the
         # timing.
         decimation=11,
         mark_freq=0,
         space_freq=-self.__spacing)