From 89255ce36ab8e6fc771a8b90cfb29e80a0e9f0e0 Mon Sep 17 00:00:00 2001 From: zs1jen Date: Sun, 24 Jan 2016 11:59:05 +0200 Subject: [PATCH 1/3] Corrected APRS telemetry coefficients message APRS coefficients messages contains three coefficients. Code had three superfluous coefficients which meant the battery voltage telemetry was not reflected correctly on aprs.fi. APRS_EQNS4 also commented out as it is not needed at this stage. --- aprs.ino | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aprs.ino b/aprs.ino index 1c55556..f44d13a 100644 --- a/aprs.ino +++ b/aprs.ino @@ -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" @@ -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) { From 13e8b7208189ec150a02acebf2eff3f5e33dcb93 Mon Sep 17 00:00:00 2001 From: zs1jen Date: Sun, 24 Jan 2016 12:42:30 +0200 Subject: [PATCH 2/3] Update aprs.ino --- aprs.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aprs.ino b/aprs.ino index f44d13a..c6bc8e8 100644 --- a/aprs.ino +++ b/aprs.ino @@ -251,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; } From 1e0529ebe22958c7b2633fbb4e776315a3d27b4b Mon Sep 17 00:00:00 2001 From: zs1jen Date: Sun, 24 Jan 2016 12:50:40 +0200 Subject: [PATCH 3/3] Create ChangeLog.md --- ChangeLog.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 ChangeLog.md diff --git a/ChangeLog.md b/ChangeLog.md new file mode 100644 index 0000000..f75911a --- /dev/null +++ b/ChangeLog.md @@ -0,0 +1,2 @@ +24/01/2016 +Correct telemetry coefficients message in aprs.ino