summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* update changelog for Debian builddebian/1.1.1-1Bdale Garbee2012-09-16
|
* Merge branch 'branch-1.1' into debianBdale Garbee2012-09-16
|\
| * releasing 1.1.11.1.1Bdale Garbee2012-09-16
| |
| * Add release notes for version 1.1.1Keith Packard2012-09-16
| | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| * altos: Fix telemini sdcdb init fileKeith Packard2012-09-16
| | | | | | | | | | | | Set the driver source path for the debugger Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Gather Tm sensor data in Monitor Idle modeKeith Packard2012-09-16
| | | | | | | | | | | | | | | | Tm is pretty much the same as TM for the analog sensors, it's just missing the accelerometr. Use the same code for constructing an AltosRecord for it Signed-off-by: Keith Packard <keithp@keithp.com>
| * altos: Need to use 16-bit counts for ao_xmem functionsKeith Packard2012-09-14
| | | | | | | | | | | | | | | | | | Trying to use 8-bit counts is a nice optimization which fails when the count is larger than 255, as is the case with clearing the flash block in the AT45 driver. This bug resulted in the inability to erase flights on TeleMetrum v1.0 boards. Signed-off-by: Keith Packard <keithp@keithp.com>
| * 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>
| * altosui: Remove debugging from KML exportKeith Packard2012-09-14
| | | | | | | | | | | | Left in from testing the Eeprom export bug Signed-off-by: Keith Packard <keithp@keithp.com>
| * altosui: Fix Landed tab unitsKeith Packard2012-09-14
| | | | | | | | | | | | | | | | | | | | And clean up the whole flight value reporting code base. It would be nice to create a separate class to make this easier; at present there's a bunch of customization embedded in how values are presented in each tab. Reported by: Bdale Garbee <bdale@gag.com> Signed-off-by: Keith Packard <keithp@keithp.com>
| * altoslib: Update GPS seen_values in AltosEepromIterableKeith Packard2012-09-14
| | | | | | | | | | | | | | Otherwise, KML export won't ever get GPS data to write. Reported by: Bob Brown <prefect@kloudbusters.org> Signed-off-by: Keith Packard <keithp@keithp.com>
| * altoslib: Remove duplicate seen_ values in AltosEepromIterableKeith Packard2012-09-14
| | | | | | | | | | | | These are defined in AltosRecord; duplicating them is not a good plan Signed-off-by: Keith Packard <keithp@keithp.com>
| * add note about checking doc copyright date and revision history to ReleasingBdale Garbee2012-09-13
| |
| * doc: Add revision history for 1.1. Update copyright dateKeith Packard2012-09-13
| | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* | Merge branch 'branch-1.1' into debiandebian/1.1-1Bdale Garbee2012-09-13
|\|
| * Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos1.1Bdale Garbee2012-09-13
| |\
| | * doc: Document imperial units and groundstation configurationKeith Packard2012-09-13
| | | | | | | | | | | | | | | | | | What it says on the tin. Signed-off-by: Keith Packard <keithp@keithp.com>
* | | update changelog to also close default-jdk bug, reflect actual release dateBdale Garbee2012-09-13
| | |
* | | Merge branch 'branch-1.1' into debianBdale Garbee2012-09-13
|\| |
| * | Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosBdale Garbee2012-09-13
| |\|
| | * altosui: Exit with an error status when file processing failsKeith Packard2012-09-12
| | | | | | | | | | | | | | | | | | | | | If the user provides any files on the command line, and if processing them fails in some way, exit immediately with an error indication. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui: Leave new_gps indication until gps value is usedKeith Packard2012-09-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During replay, AltosState may not see a new GPS value as soon as it lands in the state field as additional records with the same timestamp may come in after the GPS record. Instead of resetting the new_gps indication when the new record is created, wait until the new_gps indication is seen by the AltosState update code and have that clear the new_gps indication. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui: Stop downloading eeprom data on a block full of invalid dataKeith Packard2012-09-12
| | | | | | | | | | | | | | | | | | | | | When no valid records are found within an eeprom block, we assume that no more data will be found within the entire storage area. Signed-off-by: Keith Packard <keithp@keithp.com>
| * | document workaround for 'make fat' not building altoslibBdale Garbee2012-09-12
| |/
* | eliminate .gbp.conf that shouldn't be in the source treeBdale Garbee2012-09-12
| |
* | Merge branch 'branch-1.1' into debianBdale Garbee2012-09-12
|\|
| * update Releasing for non-native versioning and builds on debian branchBdale Garbee2012-09-12
| |
| * Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosBdale Garbee2012-09-12
| |\
| | * altosui: Serialize data access in TD config codeKeith Packard2012-09-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | Setting the values was being done in the UI thread instead of the Serial thread, which left the serial thread with uninitialized values when it went to update the displayed value for the current frequency. All fixed now. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui: Lock access to preferences dataKeith Packard2012-09-12
| | | | | | | | | | | | | | | | | | | | | These are accessed by several different threads, so keep things sane by just holding locks across all access. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui: Add multi-sized icons to all windowsKeith Packard2012-09-12
| | | | | | | | | | | | | | | | | | This lets the window system pick a better size for presentation Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Reference specific dependent jars in the AltosUI launchersTom Marble2012-09-12
| | |
| | * doc: Mention changes to flight data download UIKeith Packard2012-09-12
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui: Initialize flight velocity to zero when reading eeprom filesKeith Packard2012-09-12
| | | | | | | | | | | | | | | | | | | | | | | | Otherwise, the integration of velocity will start at MISSING and get stranger. Fortunately, we know the initial velocity of the rocket when sitting on the pad. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui: Don't say a decimal point for distances in metersKeith Packard2012-09-11
| | | | | | | | | | | | | | | | | | Useful for distances in miles, but not meters. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui: Initialize imperial units checkbox with correct valueKeith Packard2012-09-11
| | | | | | | | | | | | | | | | | | | | | Use imperial units preference instead of serial debug preference. Cut & paste programming failure... Signed-off-by: Keith Packard <keithp@keithp.com>
| * | Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosBdale Garbee2012-09-12
| |\|
| | * Clean up Windows event handles on com port closeKeith Packard2012-09-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids having to wait for the receiver to timeout before we can open the same com port again. This patch also adds a bit more debugging -- it prints Windows error messages to stdout along with the file/line where the error was generated. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Include AltosLib.jar in windows installKeith Packard2012-09-11
| | | | | | | | | | | | | | | | | | Otherwise, altosui doesn't do much. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosTom Marble2012-09-11
| | |\
| | * | Added the feature to AC to default --with-android to $ANDROID_SDK (if set)Tom Marble2012-09-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed typos in altosui/Makefile.am (had removed JCOMMON, but it's from AC) Jenkins changes: - added android sdk - will now record artifacts: altoslib/AltosLib.jar,altosui/altosui.jar,**/*.apk
* | | | Merge branch 'new-debian' into debianBdale Garbee2012-09-12
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog debian/altos.install debian/changelog debian/control debian/copyright debian/dirs debian/docs debian/menu debian/rules src/Makefile
| * | | | use non-native versioning, don't run prebuild target on this branch, update ↵Bdale Garbee2012-09-11
| |/ / / | | | | | | | | | | | | changelog
| * | / releasing 1.1Bdale Garbee2012-09-11
| | |/ | |/|
| * | Use ft/s for imperial speedsKeith Packard2012-09-11
| | | | | | | | | | | | | | | | | | Bob Brown thinks this unit will be more useful than mph Signed-off-by: Keith Packard <keithp@keithp.com>
| * | Add Version 1.1 release notes.Keith Packard2012-09-11
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| * | altosui: Imperial units for graphs tooKeith Packard2012-09-11
| |/ | | | | | | | | | | Just to be consistent Signed-off-by: Keith Packard <keithp@keithp.com>
| * Reverted package name to 'altosui' from 'AltosUI'Tom Marble2012-09-11
| | | | | | | | Also added emacs backup regex (*~) to .gitignore
| * Add appropriate Java build deps as given from autoconfTom Marble2012-09-11
| |
| * Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosTom Marble2012-09-11
| |\