Disabled APRS, callsign for ubseds7 (marsballoon)

v0.96
Richard Meadows 2015-06-08 18:35:38 +01:00
rodzic b5b734105a
commit 9421de582d
2 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -130,6 +130,7 @@
*/
#define TELEMETRY_FREQUENCY 434600000
#define TELEMETRY_INTERVAL 30
#define APRS_ENABLE 0
#define APRS_INTERVAL 180
/**

Wyświetl plik

@ -52,7 +52,7 @@
#include "spi_bitbang.h"
#include "system/interrupt.h"
#define CALLSIGN "UBSEDSx"
#define CALLSIGN "UBSEDS7"
void xosc_measure_callback(uint32_t result);
void timepulse_callback(uint32_t sequence);
@ -395,11 +395,12 @@ int main(void)
/* Maybe aprs? */
#if APRS_ENABLE
if (aprs_trigger_flag) {
aprs_telemetry();
}
aprs_trigger_flag = 0;
#endif
/* Pips */
telemetry_start(TELEMETRY_PIPS, 0xFFFF);