Added slightly different string when testing

master
Richard Meadows 2015-06-26 01:36:25 +01:00
rodzic 28c044f95f
commit 4fb5a30e5f
1 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

@ -25,10 +25,14 @@
#ifndef APRS_H
#define APRS_H
#include "rf_tests.h"
/**
* Reference APRS Protocol Spec http://www.aprs.org/doc/APRS101.PDF
*/
#if RF_TEST != RF_TEST_APRS
/**
* This should be a full licensed callsign you own. Not mine plz k thx bai
*
@ -40,7 +44,15 @@
/**
* APRS Map Symbol. See Appendix 2: APRS Symbol Tables
*/
#define APRS_SYMBOL "/O" /* Balloon */
#define APRS_SYMBOL "/O" /* Balloon */
#else /* ----------- Parameters for testing */
#define APRS_CALLSIGN "M0SBU"
#define APRS_SSID 2
#define APRS_SYMBOL "/2"
#endif
void aprs_set_location(float lat, float lon, float altitude);