summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/AltosLogfileChooser.java
Commit message (Collapse)AuthorAge
* altosui: Unify datafile selection to AltosDataChooserKeith Packard2010-11-19
| | | | | | | Instead of having several separate intefaces, use a single dialog for selecting data files for graph/export/replay. Signed-off-by: Keith Packard <keithp@keithp.com>
* 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: Add ability to create CSV file from telem or eeprom filesKeith Packard2010-08-24
| | | | | | | This creates a comma separated value file to export data for external programs. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: refactor logfile chooser dialog to share more codeKeith Packard2010-08-23
| | | | | | Move file opening logic into logfile chooser as it can be shared that way. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Separate out log file choosing dialog to share with CSV generatorKeith Packard2010-08-23
This dialog will be shared with the CSV file generating code, so split it out instead of duplicating it. Signed-off-by: Keith Packard <keithp@keithp.com>