summaryrefslogtreecommitdiff
path: root/altosui
Commit message (Collapse)AuthorAge
* Add GPS height to the usual plotplot-gps-heightKeith Packard2013-01-18
| | | | | | This lets us compare the GPS height data to the barometric height data Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Reference altosuilib.jar and altoslib.jar from original dirsKeith Packard2013-01-10
| | | | | | | The symlinks may not be created when the build is getting run as the dependencies aren't in place (thanks, automake). Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Create .dmg file for Mac OS X installationsKeith Packard2013-01-06
| | | | | | Easier for users than a zip file Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Remove duplicate AltosUSBDeviceKeith Packard2013-01-02
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Use shared AltosUIListenerKeith Packard2013-01-02
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Use shared AltosUIFrame and AltosUIDialogKeith Packard2013-01-02
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Use shared AltosFontListener classKeith Packard2013-01-02
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Use shared AltosDeviceDialogKeith Packard2013-01-02
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Remove AltosVersion.javaKeith Packard2013-01-02
| | | | | | Version data now stored in AltosUIVersion.java Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Use altosuilib for configurationKeith Packard2013-01-02
| | | | | | Start moving to shared UI code Signed-off-by: Keith Packard <keithp@keithp.com>
* Merge branch 'master' into micropeak-loggingKeith Packard2012-12-25
|\
| * altosui: Clean up graph a bit, remove shapes, improve tooltipsKeith Packard2012-12-18
| | | | | | | | | | | | | | | | Sometimes graphs would get shapes at each datapoint which was annoyingly cluttered. And, the tooltips used a format that was difficult to interpret. Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Add APRS interval configuration to UIKeith Packard2012-12-07
| | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Call config UI from AltosConfigData directlyKeith Packard2012-12-07
| | | | | | | | | | | | | | | | Don't make AltosConfig have a pile of config code, stick that in AltosConfigData instead. This uses a new interface, AltosConfigValues to get from AltosConfigData to the UI. Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Use AltosConfigData for altosui configuration dialogKeith Packard2012-12-07
| | | | | | | | | | | | Instead of a separate config language parser, share with altoslib Signed-off-by: Keith Packard <keithp@keithp.com>
* | Move libaltos to top levelKeith Packard2012-12-25
|/ | | | | | This will let it be shared by the new MicroPeak gui Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Allow AltosConfig to abort before serial line startsKeith Packard2012-10-25
| | | | | | Check to see if the serial line is active before trying to close it. Signed-off-by: Keith Packard <keithp@keithp.com>
* Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosBdale Garbee2012-10-23
|\
| * altosui: Allow any non-basestation to be configuredKeith Packard2012-10-22
| | | | | | | | | | | | TelePyro has some configuration bits. Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui/altoslib: Add support for configuring pyro channelsKeith Packard2012-10-22
| | | | | | | | | | | | | | This provides a UI on devices which have pyro channels other than main/apogee. Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Handle .mega files in Landed tab 'Graph Flight' buttonKeith Packard2012-10-21
| | | | | | | | | | | | Need to check for .mega files here too. Signed-off-by: Keith Packard <keithp@keithp.com>
| * altoslib: Move computed state from AltosRecord to AltosStateKeith Packard2012-10-21
| | | | | | | | | | | | | | Make AltosRecord simply track the raw data and have AltosState hold all computed values, including cross-packet averages and computed speeds. Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Correct megametrum eeprom filename dateKeith Packard2012-10-21
| | | | | | | | | | | | Was fetching day-of-month from the year field Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Add new filename filtersKeith Packard2012-10-21
| | | | | | | | | | | | Allow the user to restrict filenames to telem, eeprom or mega files Signed-off-by: Keith Packard <keithp@keithp.com>
* | remove local copy of launch-sites.txt and reference to old web locationBdale Garbee2012-10-23
|/
* altosui: Re-add a couple of "unused" valuesKeith Packard2012-10-18
| | | | | | | The values in these calls aren't needed, but the side-effects are, so add them back in. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Accept serial number of zero for eeprom downloadKeith Packard2012-10-16
| | | | | | | | AVR-based products don't have a valid serial number, and so usually report 0. Accept this by making the 'no serial number' case check for negative values. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Print exception stack trace when tracking flightsKeith Packard2012-10-16
| | | | | | More useful in fixing the problem Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Handle missing pad distance in descent tabKeith Packard2012-10-16
| | | | | | | When the GPS isn't locked, the distance from the pad cannot be computed and is left missing. Not crashing in this case is more useful. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Parse .mega files from command lineKeith Packard2012-10-13
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altos{lib,ui,droid}: move OS specific code out of altoslibMike Beattie2012-09-18
| | | | | | | | | This is to allow the usage of AltosLog on Android - no swing, so we need to push the "home directory" code used to pick a default telemetry logging path - using the PreferencesBackend interface for now. Signed-off-by: Mike Beattie <mike@ethernal.org>
* Merge branch 'prefs_interface' into altosdroidMike Beattie2012-09-16
|\
| * altosui: remove un-used importMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: revert AltosUIPreferences init() methodMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: Add return to try/catch.. duhMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: add missing try/catchMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui/altoslib: bug fixes, update Makefile.amMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui/altoslib: Add call to …Preferences.init() with backend object, ↵Mike Beattie2012-09-14
| | | | | | | | | | | | remove static init() Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui/altoslib: add methods to interface, fix imports/exceptions in BT codeMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: add missing methods for Backend, fix BT code.Mike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altoslib/altosui: begin moving preferences "backend" into interfaceMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: comment out obsolete code - could probably remove the file.Mike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: add type to … implements Comparable.Mike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: comment out/remove dead codeMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: access class variables by class, not instanceMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: remove redundant catchesMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: comment out un-used classes and associated importsMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: comment out un-used fields and methodsMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
| * altosui: remove un-used importsMike Beattie2012-09-14
| | | | | | | | Signed-off-by: Mike Beattie <mike@ethernal.org>
* | altosui: Show over-ground-distance in Descent tabKeith Packard2012-09-14
| | | | | | | | | | | | Helps to know where the rocket might land. Signed-off-by: Keith Packard <keithp@keithp.com>