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