config.h 764 B

123456789101112131415161718192021222324252627
  1. //
  2. // (originally) Created by SQ5RWU on 2016-12-24.
  3. //
  4. #ifndef RS41HUP_CONFIG_H
  5. #define RS41HUP_CONFIG_H
  6. #define TRANSMIT_FREQUENCY 442.000f
  7. #define TX_POWER 7 /* PWR 0...7 0- MIN ... 7 - MAX*/
  8. #define TX_DELAY 5000
  9. #define ALLOW_DISABLE_BY_BUTTON 1
  10. #define RTTY_ENABLED 1
  11. #define BAUD_RATE 100
  12. #define CALLSIGN "VK2CJB"
  13. #define RTTY_DEVIATION 0x3 /* RTTY shift = RTTY_DEVIATION x 270Hz = 810 Hz */
  14. #define RTTY_7BIT 1 /* if 0 --> 5 bits */
  15. #define RTTY_USE_2_STOP_BITS 1
  16. #define FLYING (10) /* when above this altitude, have HORIZON=0 */
  17. #define HORIZON (10) /* only consider sats that appear above this */
  18. #define MORSE_WPM (1) /* be kinda QRSS when going through satellites.. */
  19. #define MORSE_DFCW_SHIFT (270*3)
  20. #endif //RS41HUP_CONFIG_H