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/AltosEepromChunk.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/AltosEepromChunk.java')
-rw-r--r-- | altoslib/AltosEepromChunk.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/altoslib/AltosEepromChunk.java b/altoslib/AltosEepromChunk.java index c9598254..36b5961b 100644 --- a/altoslib/AltosEepromChunk.java +++ b/altoslib/AltosEepromChunk.java @@ -82,7 +82,8 @@ public class AltosEepromChunk { case AltosLib.AO_LOG_FORMAT_TELEMETRUM: eeprom = new AltosEepromMetrum2(this, offset); break; - case AltosLib.AO_LOG_FORMAT_TELEMINI: + case AltosLib.AO_LOG_FORMAT_TELEMINI2: + case AltosLib.AO_LOG_FORMAT_TELEMINI3: case AltosLib.AO_LOG_FORMAT_EASYMINI: eeprom = new AltosEepromMini(this, offset); break; |