STM32_RTTY/config.h

39 wiersze
1.1 KiB
C
Czysty Zwykły widok Historia

//
// Created by SQ5RWU on 2016-12-24.
//
#ifndef STM32_RTTY_CONFIG_H
#define STM32_RTTY_CONFIG_H
2017-01-22 23:17:52 +00:00
#ifdef USE_EXTERNAL_CONFIG
#include "config_external.h"
#else
//**************config**************
#define CALLSIGN "NO1LIC-1" // put your callsign here
2017-01-21 23:39:32 +00:00
#define APRS_CALLSIGN "NO1LIC"
#define APRS_SSID 'B'
#define RTTY_TO_APRS_RATIO 5
//*************frequency********************
2017-01-21 23:39:32 +00:00
#define RTTY_FREQUENCY 434.500f //Mhz middle frequency
2017-01-10 01:24:10 +00:00
#define APRS_FREQUENCY 432.500f //Mhz middle frequency
2016-12-24 21:23:49 +00:00
//************rtty speed****************** si4032
#define RTTY_SPEED 300
2017-01-22 15:50:09 +00:00
// SHITY -> 450Hz
//************rtty bits****************** si4032
#define RTTY_7BIT 1
//************rtty stop bits****************** si4032
#define RTTY_USE_2_STOP_BITS 0
//********* power definition**************************
2017-01-21 23:39:32 +00:00
#define Smoc 7 // PWR 0...7 0- MIN ... 7 - MAX
// 7 -> 42.95 mW@434.150 MHz na E4406A
//***************************************************
2017-01-22 15:50:09 +00:00
// WARNING: do not use this in flying tracker!
#define ALLOW_DISABLE_BY_BUTTON 1
//********** frame delay in msec**********
#define tx_delay 5000
2017-01-22 23:17:52 +00:00
#endif
#endif //STM32_RTTY_CONFIG_H