diff options
author | Keith Packard <keithp@keithp.com> | 2017-02-19 17:36:04 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-02-20 11:16:53 -0800 |
commit | 1029a6e4a61b20698e00e29fc0c8c3877f1e7b0f (patch) | |
tree | 68afb87e3cb0a2f75a5a1c8c61899e54a9281be3 /altoslib/AltosLib.java | |
parent | 5c272d8e50d0b23f31a6a9ebdad81fc514936222 (diff) |
altoslib: Add TeleMini v3 support
eeprom, telemetry and monitor idle. This is just like TeleMini v2,
except the ADC ranges are all difference as the voltage dividers are
different and the ADC itself has a different range.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosLib.java')
-rw-r--r-- | altoslib/AltosLib.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/altoslib/AltosLib.java b/altoslib/AltosLib.java index cfa1fa27..aec2c692 100644 --- a/altoslib/AltosLib.java +++ b/altoslib/AltosLib.java @@ -332,9 +332,11 @@ public class AltosLib { public static final int AO_LOG_FORMAT_TELEMEGA_OLD = 5; public static final int AO_LOG_FORMAT_EASYMINI = 6; public static final int AO_LOG_FORMAT_TELEMETRUM = 7; - public static final int AO_LOG_FORMAT_TELEMINI = 8; + public static final int AO_LOG_FORMAT_TELEMINI2 = 8; public static final int AO_LOG_FORMAT_TELEGPS = 9; public static final int AO_LOG_FORMAT_TELEMEGA = 10; + public static final int AO_LOG_FORMAT_DETHERM = 11; + public static final int AO_LOG_FORMAT_TELEMINI3 = 12; public static final int AO_LOG_FORMAT_NONE = 127; public static boolean isspace(int c) { |