summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| | * altoslib: Get rid of AltosMap from AltosMapLoaderKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | | | | Cleans up the loader API and eliminates a AltosMapTile for every chunk of map data. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosdroid: make disconnect stick past pause/restartKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | | | | Clear the active_device preference on disconnect so we don't reconnect anytime the service gets activated. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Clean up map file and url handlingKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | move it all to AltosMapStore.java Signed-off-by: Keith Packard <keithp@keithp.com>
| | * doc: Start update for 1.6.4Keith Packard2016-05-11
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosuilib: Don't flicker missing voltages when changing unitsKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | | | | | | | For some reason, a value of MISSING -1 was getting used, which caused displays to light up briefly with a weird value when switching between metric and imperial units. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosdroid: Rate limit map loading pacifierKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | Just like in altosui. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Allow map preloading to be abortedKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | | | | Close the map preload dialog and it would be nice to stop loading map bits. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosuilib: Rate limit map loading pacifier updatesKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | | | | Just updating the pacifier was consuming a huge amount of CPU. Update no more than once every 100ms. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Remove some debug printf callsKeith Packard2016-05-11
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Switch distance from m/ft to km/miles for large valuesKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | | | | This adds lots of infrastructure to deal with making the unit used depend on the value itself, and then uses it only for distances. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Add TeleMega to spec list. Add TeleGPS RF output.Keith Packard2016-05-11
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Publish firmware with keithp-fatKeith Packard2016-05-11
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosdroid: Check for closed before writing/reading bluetoothKeith Packard2016-05-11
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosui/telegps: Ship firmware for new hardwareKeith Packard2016-05-11
| | | | | | | | | | | | | | | | | | TBT v3.0 and Tmega v2.0 Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosBdale Garbee2016-05-09
| | |\
| | | * Bump version to 1.6.3.1v1.6.3.1Keith Packard2016-05-09
| | | | | | | | | | | | | | | | | | | | | | | | Post 1.6.3 release Signed-off-by: Keith Packard <keithp@keithp.com>
| | | * altos/cc1111: Use SW to drive UART RTS pinKeith Packard2016-05-09
| | | | | | | | | | | | | | | | | | | | | | | | Can't get the hw to work. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * | process updates made during 1.6.3 release cycleBdale Garbee2016-05-09
| | |/
* | | update changelog for Debian builddebian/1.6.3-1Bdale Garbee2016-05-06
| | |
* | | Merge branch 'branch-1.6' into debianBdale Garbee2016-05-06
|\| |
| * | releasing 1.6.31.6.3Bdale Garbee2016-05-06
| | |
| * | Merge branch 'master' into branch-1.6Bdale Garbee2016-05-06
| |\|
| | * Ignore some built files for 1.6.3Keith Packard2016-05-06
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| * | Merge branch 'master' into branch-1.6Bdale Garbee2016-05-06
| |\|
| | * Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altosBdale Garbee2016-05-06
| | |\
| | | * windows: Change install to look for browser in a different placeKeith Packard2016-05-06
| | | | | | | | | | | | | | | | | | | | | | | | The windows registry is a mystery. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * | add beep to TeleMega turnon scriptBdale Garbee2016-05-06
| | |/
| | * altoslib: Fix map preloading callbacks, run in separate threadKeith Packard2016-05-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The map storage and tile callbacks were muddled together. Create clearly separate states for map data and have status updates be delivered when registering for new status events so that registration is sufficient to track the state without an explicit call to get the current state. Run the map tile creation in a separate thread so that even checking status of files on disk runs out of the UI thread. These fixes serve to make the pacifier update more smoothly, and also not over/under count tile loading so that the loading actually completes when all of the tiles are loaded. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * micropeak: Change order of windows install so that java detect worksKeith Packard2016-05-04
| | | | | | | | | | | | | | | | | | | | | | | | I have no idea why this matters, but if you run the FTDI script before trying to detect java, then the javaw.exe program isn't found and java detection fails. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * doc: 1.6.3 release notes note TeleBT rts/cts and TM 2.0 monitor idle fixesKeith Packard2016-05-04
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * doc: Update AltosDroid chapter for 1.6.3Keith Packard2016-05-04
| | | | | | | | | | | | | | | | | | New menu structure, idle mode and frequency configuration Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altos: Make sure AO_MMA655X_INVERT is declared where neededKeith Packard2016-05-02
| | | | | | | | | | | | | | | | | | | | | | | | Add #define AO_MMA655X_INVERT 0 to existing products which didn't declare it at all. This will make sure the value is set correctly for each new board. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Deal with TeleMetrum v2.0 MMA6555 being invertedKeith Packard2016-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dumping the MMA655X data with the 'A' command provides the raw sensor value. On TM v2.0 boards, the sensor is inverted, and all of the firmware uses the inverted value except for the 'dump the raw data' command. As a result, MonitorIdle was using the un-inverted value and displaying mystic values. I've fixed this in the ground station code by checking the product name and conditionally inverting the value (4095 - value) for TeleMetrum v2.0 products. Unknown products will generate a warning dialog on AltosUI so we'll catch places where we've failed to add a new product name. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * publish AltosDroid in keithp-fat targetKeith Packard2016-04-30
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Flush during set_state. Don't store listener state.Keith Packard2016-04-30
| | | | | | | | | | | | | | | | | | | | | | | | The listener state wasn't used anyways, so don't bother storing it. Also, flush the state during set_state, which actually causes the state to be written out. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Correct stats for flights without a real landingKeith Packard2016-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The landing time was miscomputed when the flight ended without entering the landed state, as when the recording terminates at apogee. This led to an uncomputed average boost accel, so that is now checked separately from max accel (which is done over the whole flight, not just boost). Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosdroid: max height is a height, not a speedKeith Packard2016-04-30
| | | | | | | | | | | | | | | | | | Was using the wrong units in the flight tab Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Revert "altos/stm: Run scheduler code on interrupt stack"Keith Packard2016-04-30
| | | | | | | | | | | | | | | | | | This reverts commit 6a9546413d6a236c010e806b50506d870961d074. This causes the device to stop reliably handling interrupts.
| | * doc: Add idle mode info to 1.6.3 release noteKeith Packard2016-04-29
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altoslib: Make AltosPreferencesBackend abstract. Add set/put SerializableKeith Packard2016-04-28
| | | | | | | | | | | | | | | | | | | | | This lets us add functionality to this directly, such as the new serializable APIs. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosdroid: Add configurable frequency setKeith Packard2016-04-27
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Fix key in AndroidManifest.xml.inKeith Packard2016-04-27
| | | | | | | | | | | | Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosdroid: Split setup functions to separate dialogKeith Packard2016-04-26
| | | | | | | | | | | | | | | | | | | | | Remove them from the options menu, handle all preferences through listeners. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altosdroid: Add idle mode monitoring, reboot. Start ignitersKeith Packard2016-04-25
| | | | | | | | | | | | | | | | | | | | | This adds three idle mode operations -- monitor idle, reboot flight computer and test igniters. The igniter test isn't quite wired up. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altos: Clear packet queue when starting packet masterKeith Packard2016-04-25
| | | | | | | | | | | | | | | | | | | | | | | | This avoids overfilling the packet buffer when disconnected. Applications using packet mode shouldn't expect that output be saved across master sessions. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altos/telebt-v3.0: Flip CTS/RTS pins for BT moduleKeith Packard2016-04-25
| | | | | | | | | | | | | | | | | | | | | These are wired backwards, so ask that the right pins be used, which requires switching to software control of the pins. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altos/stm32l: Add support for software-driven HW flow controlKeith Packard2016-04-25
| | | | | | | | | | | | | | | | | | | | | | | | This allows applications to request that the flow control bits be driven from software rather than hardware, permitting more flexible pin configuration. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * altos: Use TXE instead of TC for serial on STM32lKeith Packard2016-04-25
| | | | | | | | | | | | | | | | | | | | | Using TXE allows for full-speed communication, rather than waiting for each byte to be transmitted before inserting the next into the queue. Signed-off-by: Keith Packard <keithp@keithp.com>
| | * Debug bits for telebtKeith Packard2016-04-25
| | |
| | * altoslib: Don't try to drag lines around until map is loadedKeith Packard2016-04-22
| | | | | | | | | | | | | | | | | | When the transform is null, it's hard to draw lines. Signed-off-by: Keith Packard <keithp@keithp.com>