f_rtty.h 275 B

1234567891011
  1. #include <stdint.h>
  2. #include "config.h"
  3. typedef enum { rttyZero, rttyOne, rttyEnd } rttyStates;
  4. static const uint8_t RTTY_PRE_START_BITS = 1; // No pre-start bits, as it throws off timing estimation in FSK demods.
  5. rttyStates send_rtty(char *);
  6. extern uint8_t start_bits;