* GpsResetTime increased 10 minutes to 30 minutes
* WSPR_DEFAULT_FREQ for 20m updated - https://github.com/lightaprs/LightAPRS-W-1.0/issues/3
* aprs telemetry fix - https://github.com/lightaprs/LightAPRS-W-1.0/issues/5
pull/8/head
lightaprs 2021-08-27 21:04:51 +03:00
rodzic 3071250d5e
commit afc4d1afcf
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -61,7 +61,7 @@ float WsprBattMin=4.5; //min Volts for HF mradio module to transmit (TX) ~10
char hf_call[7] = "NOCALL"; //DO NOT FORGET TO CHANGE YOUR CALLSIGN
//#define WSPR_DEFAULT_FREQ 10140200UL //30m band
#define WSPR_DEFAULT_FREQ 14097200UL //20m band
#define WSPR_DEFAULT_FREQ 14097100UL //20m band
//#define WSPR_DEFAULT_FREQ 18106100UL //17M band
//#define WSPR_DEFAULT_FREQ 21096100UL //15m band
//#define WSPR_DEFAULT_FREQ 24926100UL //12M band
@ -149,7 +149,7 @@ boolean HFSent = false;
//****************************** GPS SETTINGS *********************************
int16_t GpsResetTime=600; // timeout for reset if GPS is not fixed
int16_t GpsResetTime=1800; // timeout for reset if GPS is not fixed
// GEOFENCE
uint32_t GEOFENCE_APRS_frequency = 144390000; //default frequency before geofencing. This variable will be updated based on GPS location.
@ -499,7 +499,7 @@ void updatePosition() {
void updateTelemetry() {
sprintf(telemetry_buff, "%03d", gps.course.isValid() ? (int)gps.course.deg() : 0);
telemetry_buff[3] += '/';
telemetry_buff[3] = '/';
sprintf(telemetry_buff + 4, "%03d", gps.speed.isValid() ? (int)gps.speed.knots() : 0);
telemetry_buff[7] = '/';
telemetry_buff[8] = 'A';