diff options
author | Keith Packard <keithp@keithp.com> | 2015-03-02 21:06:02 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2015-03-02 21:06:02 -0800 |
commit | e637367e8b940e1642a07b3b7c99147561de9cf1 (patch) | |
tree | 46ae4d20be34efc84d267d0e139a744a7b0e9035 /altoslib/AltosLib.java | |
parent | 2614d20b324ab215ef22f178e3635d48e757fa9b (diff) |
altosui/telegps: Add config option for APRS format
Allow configuration of APRS compressed/uncompressed
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosLib.java')
-rw-r--r-- | altoslib/AltosLib.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/altoslib/AltosLib.java b/altoslib/AltosLib.java index b19f9f52..405a3acc 100644 --- a/altoslib/AltosLib.java +++ b/altoslib/AltosLib.java @@ -190,6 +190,13 @@ public class AltosLib { 38400, 9600, 2400 }; + public static final int ao_aprs_format_compressed = 0; + public static final int ao_aprs_format_uncompressed = 1; + + public static final String[] ao_aprs_format_name = { + "Compressed", "Uncompressed" + }; + public static final String launch_sites_url = "http://www.altusmetrum.org/AltOS/launch-sites.txt"; // public static final String launch_sites_url = "file:///home/keithp/misc/text/altusmetrum/AltOS/launch-sites.txt"; |