Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
24/01/2016
Correct telemetry coefficients message in aprs.ino
8 changes: 5 additions & 3 deletions aprs.ino
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,8 @@ ax25_base91enc(ptr, 2, Channel0Average);
#ifdef APRS_TELEM_INTERVAL
#define APRS_PARM1 ":%-9s:PARM.Satellites"
#define APRS_UNIT1 ":%-9s:UNIT.Sats"
#define APRS_EQNS1 ":%-9s:EQNS.0,1,0,0,1,0"
//#define APRS_EQNS1 ":%-9s:EQNS.0,1,0,0,1,0"
#define APRS_EQNS1 ":%-9s:EQNS.0,1,0"

#ifdef WIREBUS
#define APRS_PARM2 ",Temperature"
Expand All @@ -214,7 +215,7 @@ ax25_base91enc(ptr, 2, Channel0Average);
#define APRS_UNIT3 ",Volts"
#define APRS_EQNS3 ",0,0.001,0"

#define APRS_EQNS4 ",0,0,0"
//#define APRS_EQNS4 ",0,0,0"

else if (aprs_mode >= 1)
{
Expand Down Expand Up @@ -250,7 +251,8 @@ ax25_base91enc(ptr, 2, Channel0Average);
APRS_CALLSIGN, APRS_SSID,
APRS_DEVID, 0,
0, 0,
APRS_EQNS1 APRS_EQNS2 APRS_EQNS3 APRS_EQNS4,
//APRS_EQNS1 APRS_EQNS2 APRS_EQNS3 APRS_EQNS4,
APRS_EQNS1 APRS_EQNS2 APRS_EQNS3,
s);
aprs_mode = 0;
}
Expand Down