summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosTelemetryReader.java
Commit message (Collapse)AuthorAge
* altosui: Create iterables for log file scanning. Split out display threadsKeith Packard2010-09-27
| | | | | | | | | Convert from log file reading paradigm to using iterators which is more idiomatic for java. Split more code out of AltosUI.java, including the display update threads for telemetry monitoring and logfile replay.x Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Remove debug printfs from AltosTelemetryReaderKeith Packard2010-09-09
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Fix telemetry file reader to handle tick count wrappingKeith Packard2010-09-09
| | | | | | | The telemetry reader was ignoring tick count wrapping, so you'd see time go backwards in jumps. Not useful. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Report telemetry CRC errors in UIKeith Packard2010-09-03
| | | | | | | Telemetry CRC errors can signal problems with TeleMetrum or TeleDongle units, so report them in the UI. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: When parsing saved telem files, errors shouldn't abort fileKeith Packard2010-08-26
| | | | | | | Make syntax errors in telem files just skip the current line and move on to the next one instead of abandoning the whole file. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Start adding code to write csv files from eeprom/telem filesKeith Packard2010-08-07
This is a start to code which can write out a csv file full of flight data from either an eeprom or telem input file. It's not hooked up, but the restructuring necessary is finished and the output is started. Signed-off-by: Keith Packard <keithp@keithp.com>