1 commit d794ef9e0fbe4d13259db1bbd69f01717c14400b
2 Author: Keith Packard <keithp@keithp.com>
3 Date: Wed Jan 12 12:41:26 2011 -0800
5 altos: check for valid flight number in ao_log_delete
7 Zero is not a valid flight number, and ao_log_flight uses that to
8 indicate 'no flight in this slot'. Check the user-provided input for
9 zero before looking through the slots.
11 Signed-off-by: Keith Packard <keithp@keithp.com>
13 commit 8801b8c1947bd39f7c985b91a2ba8dbc81bcc91a
14 Author: Keith Packard <keithp@keithp.com>
15 Date: Wed Jan 12 12:40:45 2011 -0800
17 altosui: Add eeprom 'manage' ui to download and delete multiple flights
19 This shows the list of available flights and provides options to
20 download and/or delete each one.
22 Signed-off-by: Keith Packard <keithp@keithp.com>
24 commit 440d52e34364fdeeddc76a2d744cc6d1c934364f
25 Author: Keith Packard <keithp@keithp.com>
26 Date: Tue Jan 11 21:28:07 2011 -0800
28 altosui: Add support for parsing list of flights from the 'l' command
30 This adds parsing support to enumerate the available flights, but does
31 not yet provide any UI to use it.
33 Signed-off-by: Keith Packard <keithp@keithp.com>
35 commit 7ad419d81c90ef6a16656970466313767fef830f
36 Author: Keith Packard <keithp@keithp.com>
37 Date: Tue Jan 11 21:26:41 2011 -0800
39 altos: oops -- 'e' command was only showing 7 of the 8 bytes per line
41 Just a silly off-by-one error when printing out the data received from flash.
43 Signed-off-by: Keith Packard <keithp@keithp.com>
45 commit bd2480fd757b67557d9c7de42e402034002c3e37
46 Author: Keith Packard <keithp@keithp.com>
47 Date: Tue Jan 11 15:39:24 2011 -0800
49 altosui: Split eeprom download code apart
51 Create separate 'download config data', 'read single record' and 'read
52 block' functions. This code will be shared with future multi-log
53 reading code for new firmware.
55 Signed-off-by: Keith Packard <keithp@keithp.com>
57 commit c437b14b7fc7afdfc7b809a04d7fa29d5e742307
58 Author: Anthony Towns <aj@erisian.com.au>
59 Date: Fri Jan 7 21:00:10 2011 -0800
61 altos: Remove redundant initialization of ao_interval variables
63 These are all initialized in the ao_flight_drogue state transition.
65 Signed-off-by: Keith Packard <keithp@keithp.com>
67 commit 57de960b8148bf485607898c3d66af6994d76481
68 Author: Anthony Towns <aj@erisian.com.au>
69 Date: Fri Jan 7 20:52:33 2011 -0800
71 altos: Remove unused accel_vel_mach and accel_vel_boost variables
73 Presumably left-over debugging code.
75 Signed-off-by: Keith Packard <keithp@keithp.com>
77 commit ca66f86a899c191b6362a334417fc84a79349677
78 Author: Keith Packard <keithp@keithp.com>
79 Date: Fri Jan 7 20:46:29 2011 -0800
81 altosui: Add configuration of flight log size
83 This adds to the TeleMetrum configuration UI the ability to set the
84 maximum flight log size.
86 Signed-off-by: Keith Packard <keithp@keithp.com>
88 commit 52ac83fedbfd380d14d4df2e79992bbdfba3552a
89 Author: Keith Packard <keithp@keithp.com>
90 Date: Fri Jan 7 20:26:39 2011 -0800
92 altos: Check for full log and complain
94 Reports special tone along with the continuity checks.
95 Reports flight 0 in telemetry.
97 Signed-off-by: Keith Packard <keithp@keithp.com>
99 commit 00891b40754962ef6530b237ef52017bb58112d5
100 Author: Keith Packard <keithp@keithp.com>
101 Date: Fri Jan 7 20:25:09 2011 -0800
103 altos: Check requested log max size against available space
105 Make sure the amount of memory requested for a single log isn't more
106 than is available on the device.
108 Signed-off-by: Keith Packard <keithp@keithp.com>
110 commit bbddcae2a15b6d430e84956ddf26955aa9173cc0
111 Author: Anthony Towns <aj@erisian.com.au>
112 Date: Fri Jan 7 20:18:25 2011 -0800
114 altos: Optimize Morse code generation
116 This reduces the size of data and code needed to report the
119 Signed-off-by: Keith Packard <keithp@keithp.com>
121 commit 73620c41017c1774d6190dfd4be5b742eb64f8d3
122 Author: Keith Packard <keithp@keithp.com>
123 Date: Fri Jan 7 20:13:28 2011 -0800
125 altos: ensure erase mark is written when erasing flights
127 It was getting called only when *failing* to erase a flight (oops),
128 secondly, it wasn't getting written because ao_storage_flush wasn't
131 Signed-off-by: Keith Packard <keithp@keithp.com>
133 commit edd22ee49adf60c35f2fe6ba97c111b7ad4131c2
134 Author: Keith Packard <keithp@keithp.com>
135 Date: Fri Jan 7 17:56:06 2011 -0800
137 altos: report flight log offsets in hex block numbers instead of bytes
139 makes them compatible with the 'e' command.
141 Signed-off-by: Keith Packard <keithp@keithp.com>
143 commit 1cc08af4f4a1ff61fc0deca3bdd95e8a5ca8ec5c
144 Author: Keith Packard <keithp@keithp.com>
145 Date: Fri Jan 7 17:55:54 2011 -0800
147 altos: white space fix
149 Signed-off-by: Keith Packard <keithp@keithp.com>
151 commit d8c9684239b67a69a4a3d24202a6df0d73c4f7f5
152 Author: Keith Packard <keithp@keithp.com>
153 Date: Fri Jan 7 17:54:54 2011 -0800
155 altos: Speed up at45 and 25lc erase speeds
157 No need to read the block to be erased before erasing it.
159 Signed-off-by: Keith Packard <keithp@keithp.com>
161 commit 2722703bd848b07a02d3ce0c83a502eca52a9f1d
162 Author: Keith Packard <keithp@keithp.com>
163 Date: Fri Jan 7 14:58:39 2011 -0800
165 altos: support storage of multiple flights.
167 This adds the logging support for dealing with multiple flights
169 Signed-off-by: Keith Packard <keithp@keithp.com>
171 commit a9b210bc33cd95e7108ab51925fdf0d5e8deaf7e
172 Author: Keith Packard <keithp@keithp.com>
173 Date: Fri Jan 7 10:05:11 2011 -0800
175 altos: Add configuration parameter for maximum flight log size
177 This parameter will permit available storage to be split into multiple
178 separate flight logs.
180 Signed-off-by: Keith Packard <keithp@keithp.com>
182 commit 3bcf14f12f6681888c3162d0f33ef2d454eb75dd
183 Author: Bdale Garbee <bdale@gag.com>
184 Date: Fri Jan 7 00:52:50 2011 -0700
186 update changelogs for Debian build
188 commit 408a3e04362d626778640dd0ce7d356d3863de53
189 Author: Keith Packard <keithp@keithp.com>
190 Date: Thu Jan 6 23:38:13 2011 -0800
192 altos: Mark end of available flight list with 'done' to make the UI
195 Signed-off-by: Keith Packard <keithp@keithp.com>
197 commit e991f52276248fa08d96fbecc458bc478e98d299
198 Author: Keith Packard <keithp@keithp.com>
199 Date: Thu Jan 6 23:35:31 2011 -0800
201 altos: Rip out 'optimization' in ao_log_scan
203 Remove premature optimization to avoid re-scanning the flight logs for
204 the best empty entry.
206 Signed-off-by: Keith Packard <keithp@keithp.com>
208 commit 569a1dac55b70c30f01afa7bcb74442ecdd85d85
209 Author: Keith Packard <keithp@keithp.com>
210 Date: Thu Jan 6 22:37:38 2011 -0800
212 altos: Move common storage code to ao_storage.c. Add M25P80 driver
214 This reworks the storage API so that you erase blocks and then store
215 data to them so that the M25P80 driver will work.
217 Signed-off-by: Keith Packard <keithp@keithp.com>
219 commit e4ba9bf4291bf17c777c8c3ef7c71e4a30b9947a
220 Author: Keith Packard <keithp@keithp.com>
221 Date: Thu Jan 6 17:34:58 2011 -0800
223 altos: Require manual flight erasing.
225 This supports flash chips that require larger erase blocks.
227 Signed-off-by: Keith Packard <keithp@keithp.com>
229 commit ddcc94da4326f9ce954bd31a46b36165c58e6c18
230 Author: Keith Packard <keithp@keithp.com>
231 Date: Thu Jan 6 12:51:39 2011 -0800
233 altos: Simplify storage API
235 This removes the config-specific APIs and exposes global variables for
236 the available storage space, block size and config storage location.
238 Signed-off-by: Keith Packard <keithp@keithp.com>
240 commit f3f1b1488bdc92fa9277dc549ba9f3210a8d4c8c
241 Author: Keith Packard <keithp@keithp.com>
242 Date: Thu Jan 6 11:28:35 2011 -0800
244 altos: packet and usb i/o routines use 'char', not 'uint8_t'
246 Just fixing the type of a local variable holding a character
247 passed from the packet link to usb.
249 Signed-off-by: Keith Packard <keithp@keithp.com>
251 commit 5688af4e4d7ca8e559d758257e79b7979f1cc924
252 Author: Keith Packard <keithp@keithp.com>
253 Date: Wed Dec 22 21:13:56 2010 -0800
255 altos: Add telemetrum-v1.1 directory
257 This just clones the v1.0 build; changes will be added on top of this.
259 Signed-off-by: Keith Packard <keithp@keithp.com>
261 commit 9f7296b3feab872bf51fc369ade69cc1e7cf7a3f
262 Author: Keith Packard <keithp@keithp.com>
263 Date: Wed Dec 22 21:06:22 2010 -0800
265 altos: Split out SPI driver.
267 For TM with the companion connector, the SPI bus will be shared among
268 multiple devices. Split out the existing SPI code into a common
269 driver, with the SPI bus protected by a mutex.
271 Signed-off-by: Keith Packard <keithp@keithp.com>
273 commit 51c410c1c952e0e9bcf1b2c438813de63753be5f
274 Author: Keith Packard <keithp@keithp.com>
275 Date: Sun Nov 28 00:24:54 2010 -0800
277 windows: Update NSIS installer file to use compatibility IDs
279 This allows the file to contain a single InitDriverSetup function,
280 making things shorter and (I hope) clearer.
282 commit 4a42f9d5c20dcaf5fd7591ccf9e32c6130d9d538
283 Author: Keith Packard <keithp@keithp.com>
284 Date: Sun Nov 28 00:22:14 2010 -0800
286 windows: Add compatibility IDs to telemetrum.inf
288 This will allow the .nsi file to reference just the compatibility ID
289 instead of needing to have all of the USB IDs listed.
291 Signed-off-by: Keith Packard <keithp@keithp.com>
293 commit 484b44e81b655f1ecb48256095382a56d2839bae
294 Author: Keith Packard <keithp@keithp.com>
295 Date: Fri Nov 26 17:39:40 2010 -0800
297 altos: eliminate ao_wake_task
299 Waking up a task waiting on some random object is a bad idea. Fix
300 the waiters to look for suitable signalling.
302 Signed-off-by: Keith Packard <keithp@keithp.com>
304 commit 07213dc34fa20470a4b36a327a83d75b0f010ebb
305 Author: Keith Packard <keithp@keithp.com>
306 Date: Fri Nov 26 16:14:15 2010 -0800
308 altos: clean up radio abort paths. Share radio code.
310 Instead of aborting the DMA and radio operation and expecting that to
311 be handled reasonably by the radio receiving task, rewrite things so
312 that the abort function just wakes the receiving task while that
313 terminates the DMA and cleans up the radio.
315 This eliminates all kinds of nasty bugs dealing with radio abort
316 smashing the radio registers at the wrong time, or interrupting a
319 Signed-off-by: Keith Packard <keithp@keithp.com>
321 commit b62580855c5144f5bc7e0172289bce08814d9472
322 Author: Anthony Towns <aj@erisian.com.au>
323 Date: Tue Dec 14 03:40:18 2010 +1000
325 altosui: move maps to subdir, fix E/W mismatch
327 commit b8d2eb5509096fd5bd04598b1312077659109620
328 Author: Bdale Garbee <bdale@gag.com>
329 Date: Wed Dec 1 00:15:17 2010 -0700
331 update changelogs for Debian build
333 commit ea95c060f8bd959cefc60dd6d411151f3c91384e
334 Author: Bdale Garbee <bdale@gag.com>
335 Date: Wed Dec 1 00:12:05 2010 -0700
337 fix symlink paths in rules file
339 commit f95220b6f0cc74928e0e7d7c7e1f443eafc32a02
340 Author: Bdale Garbee <bdale@gag.com>
341 Date: Wed Dec 1 00:03:23 2010 -0700
343 update changelogs for Debian build
345 commit ea7130e953622884afc348265f5a4c58f9876823
346 Author: Bdale Garbee <bdale@gag.com>
347 Date: Wed Dec 1 00:00:58 2010 -0700
349 modify Debian package build to deliver one copy of background.png for
350 the themes and symlink it into place for gdm and slim
352 commit 3696b30a8d1eb351353d84b5f7af8eeff55c468b
353 Author: Bdale Garbee <bdale@gag.com>
354 Date: Mon Nov 29 21:47:13 2010 -0700
356 update changelogs for Debian build
358 commit 11b3f9ff715017a2dec02003275885334f22c009
359 Author: Bdale Garbee <bdale@gag.com>
360 Date: Mon Nov 29 21:46:02 2010 -0700
364 commit 5f3f11e11dff9b9f4d1dde279c0d474de0de12a5
365 Author: Keith Packard <keithp@keithp.com>
366 Date: Mon Nov 29 20:41:49 2010 -0800
368 Add minimal release testing plan to Releasing
370 Signed-off-by: Keith Packard <keithp@keithp.com>
372 commit f0a4deee23984a8f779917bbeaf74a66a0abf592
373 Author: Keith Packard <keithp@keithp.com>
374 Date: Mon Nov 29 20:34:27 2010 -0800
376 Move "Releasing" to top level
378 This file documents the AltOS release process for all systems.
380 Signed-off-by: Keith Packard <keithp@keithp.com>
382 commit b727156ef0a7fb6e442ca28be27eb344a213ecf8
383 Author: Keith Packard <keithp@keithp.com>
384 Date: Mon Nov 29 20:17:35 2010 -0800
386 windows: Add jfreechart.jar and jcommon.jar to windows install image
388 These are necessary for the Graph Data button to do anything useful.
390 Signed-off-by: Keith Packard <keithp@keithp.com>
392 commit 3e2220a180f95971d222a597d2057ca328c27356
393 Author: Bdale Garbee <bdale@gag.com>
394 Date: Mon Nov 29 21:29:14 2010 -0700
396 adding Bdale's release process document to the source tree
398 commit 61a924099800494b589cbbb87c65b552ccbd8394
399 Author: Bdale Garbee <bdale@gag.com>
400 Date: Mon Nov 29 14:40:27 2010 -0700
402 fix an Altos vs Altus typo in the docs
404 commit e840b6594b8a939f148fa7231e1b06a280d94074
405 Author: Bdale Garbee <bdale@gag.com>
406 Date: Sun Nov 28 22:42:43 2010 -0700
410 commit f39698bbc12afdfadfac56c90030e16db93cf4fc
411 Author: Bdale Garbee <bdale@gag.com>
412 Date: Sun Nov 28 19:46:03 2010 -0700
414 fix publish target in doc/Makefile
416 commit 13cea7a96821165a10a8b2433af1da7508882b0a
417 Author: Bdale Garbee <bdale@gag.com>
418 Date: Sun Nov 28 18:48:31 2010 -0700
420 moved doc dir in web content to AltOS tree
422 commit 6f3c72462af86a7d9dec20f4c813a524a5be9fbb
423 Author: Bdale Garbee <bdale@gag.com>
424 Date: Sun Nov 28 18:32:17 2010 -0700
426 update changelogs for Debian build
428 commit a375942979dbcd8239d8c0addb10616e6048f6ea
429 Author: Bdale Garbee <bdale@gag.com>
430 Date: Sun Nov 28 18:31:26 2010 -0700
432 rewind changelog to recover from stupid build failure
434 commit 263cf6c4fc5c1a240d719bb0ceb33393864fb3d6
435 Author: Bdale Garbee <bdale@gag.com>
436 Date: Sun Nov 28 18:24:00 2010 -0700
438 update changelogs for Debian build
440 commit 2615289265b6f8fa08827be794b4eee569fc6333
441 Author: Bdale Garbee <bdale@gag.com>
442 Date: Sun Nov 28 18:23:17 2010 -0700
444 update changelogs for Debian build
446 commit 5e23bcc2d2ad33a839fedd2158213098a05cd9ae
447 Author: Bdale Garbee <bdale@gag.com>
448 Date: Sun Nov 28 18:21:31 2010 -0700
450 declaring 0.8 released
452 commit b09d3e11c32abd07f8e11b483ac4b57148f4f2d8
453 Author: Keith Packard <keithp@keithp.com>
454 Date: Sat Nov 27 23:08:41 2010 -0800
456 windows: Bump .inf file version
458 commit 42c2394ccc1a1ee6dc134ed963a4f79acf031d0b
459 Author: Keith Packard <keithp@keithp.com>
460 Date: Sat Nov 27 23:04:50 2010 -0800
462 windows: more .inf file hacking
464 Add a LayoutFile reference
465 Add the FakeModemCopyFileSection
467 Copy AltosMetrum.Install section to AltusMetrum.Install.NT section. I
468 don't know what this might do; existing files seem inconsistent.
470 Signed-off-by: Keith Packard <keithp@keithp.com>
472 commit 26369a92398f4ebe3fcd54ce34cebffae0cfdf07
473 Author: Keith Packard <keithp@keithp.com>
474 Date: Sat Nov 27 22:39:31 2010 -0800
476 windows: remove some non-existent .inf file section references
478 The mfglt and VerboseResultCodes sections are not present in the .inf
479 file, so remove refernces to them.
481 Signed-off-by: Keith Packard <keithp@keithp.com>
483 commit 641c5373724d34c3adfcf42420a528d6bba736b9
484 Author: Keith Packard <keithp@keithp.com>
485 Date: Sat Nov 27 22:35:18 2010 -0800
487 windows: try harder to get windows install to work
489 Add devIDs to .nsi file. Fix install section name mapping from the
492 Signed-off-by: Keith Packard <keithp@keithp.com>
494 commit cd414e2c04ce5ecbc75f19325a6d6f82cd489fb3
495 Author: Keith Packard <keithp@keithp.com>
496 Date: Sat Nov 27 16:30:29 2010 -0800
498 altosui: Correct windows hardware IDs for nsis installer file
500 Need real hardware IDs (encoded USB ids) to get windows to
501 auto-install the driver?
503 Signed-off-by: Keith Packard <keithp@keithp.com>
505 commit f834b22905db87557f729f942607dc363b013694
506 Author: Bdale Garbee <bdale@gag.com>
507 Date: Thu Nov 25 22:31:33 2010 -0700
509 update changelogs for Debian build
511 commit da3b39d6b1b5ba48686c2a4add4b5448fd5711af
512 Author: Bdale Garbee <bdale@gag.com>
513 Date: Thu Nov 25 22:29:01 2010 -0700
515 changed main document name from telemetrum-doc to altusmetrum
517 commit ab6c9c983a2830bc8807e1b75d2576141b73632d
518 Author: Bdale Garbee <bdale@gag.com>
519 Date: Thu Nov 25 19:30:02 2010 -0700
521 update fat target in Makefiles to reflect move of altosui and libaltos
523 commit b8f05cdc0e9b4a96852eed9d38ff6d5950e2d2ed
524 Author: Keith Packard <keithp@keithp.com>
525 Date: Thu Nov 25 17:29:28 2010 -0800
527 altosui: Clean up flash code to ensure swing gets called from right thread
529 This moves all of the flash code to a separate thread and passes
530 messages back to the swing thread to keep the UI up to date.
532 Signed-off-by: Keith Packard <keithp@keithp.com>
534 commit adbb14c63d85b7a54223f88ac623571456f4a462
535 Author: Keith Packard <keithp@keithp.com>
536 Date: Thu Nov 25 16:28:04 2010 -0800
538 altosui: Remove gratuitous threading from device flashing UI
540 There's no need for a thread here, and swing doesn't want us to use
543 Signed-off-by: Keith Packard <keithp@keithp.com>
545 commit 7f88520089660845009148b69bfcea6c9dff9672
546 Author: Keith Packard <keithp@keithp.com>
547 Date: Thu Nov 25 16:23:18 2010 -0800
549 altosui: Flight data download GUI operations called only from main thread
551 Swing doesn't like UI functions being called from non-dispatch thread,
552 so fix up the eeprom download code to use SwingUtilities.invokeLater
553 to make sure this works right.
555 Signed-off-by: Keith Packard <keithp@keithp.com>
557 commit 6d3612e267cd4c1e7fdd74fc33952b3f26f870f5
558 Author: Keith Packard <keithp@keithp.com>
559 Date: Thu Nov 25 16:09:37 2010 -0800
561 altosui: Eliminate unnecessary thread from config UI
563 There's no reason to use a thread to run a dialog box, and
564 swing doesn't like threads anyways.
566 Signed-off-by: Keith Packard <keithp@keithp.com>
568 commit 12fb7f0e70cd244475d84469f93283112478d1e1
569 Author: Keith Packard <keithp@keithp.com>
570 Date: Thu Nov 25 15:56:42 2010 -0800
572 altosui: Only call swing display functions from main thread.
574 Swing insists that all display functions be called from a single
575 thread, and the flight window wasn't following this for display
576 updates. Use SwingUtilities.invokeLater to make sure the flight UI
577 updates happen in the right context.
579 Fixes a UI freeze on Mac OS.
581 Signed-off-by: Keith Packard <keithp@keithp.com>
583 commit b74cec6cd0bc043f53e9e28472765aa343136813
584 Author: Bob Finch <w9ya@qrparci.net>
585 Date: Thu Nov 25 13:30:48 2010 -0700
587 Updated AltOS PKGBUILD to track makefile changes
589 commit f88bde21d76a4ff91099a5051153ebace1619978
590 Author: Keith Packard <keithp@keithp.com>
591 Date: Thu Nov 25 11:16:55 2010 -0800
593 altosui: Hack up standalone makefile to maybe build altosui again
595 This isn't tested, but at least the paths are more likely to be correct
597 Signed-off-by: Keith Packard <keithp@keithp.com>
599 commit 3d98440d53378aaa6da87ed65e9abb2f96f7ee49
600 Author: Keith Packard <keithp@keithp.com>
601 Date: Thu Nov 25 11:16:28 2010 -0800
603 altosui: Make windows bits build after moving altosui directory
605 Signed-off-by: Keith Packard <keithp@keithp.com>
607 commit 4893ed50bc14772986ac02f9b39928f1882da923
608 Author: Keith Packard <keithp@keithp.com>
609 Date: Wed Nov 24 23:54:08 2010 -0800
611 Revert "altos: Don't abort radio transmissions with ao_radio_abort"
613 This reverts commit 54468e5dc567aaac5c5c20e921859b7cec28bb88.
615 With this patch in place, TD could not be placed in 'packet' mode.
617 commit cb08bc264c71ca972027392b42f347a03df76a43
618 Author: Keith Packard <keithp@keithp.com>
619 Date: Wed Nov 24 22:55:08 2010 -0800
621 doc: Rename telemetrum-doc as altusmetrum
623 Signed-off-by: Keith Packard <keithp@keithp.com>
625 commit 554bdd25e132dbaec322bc11f94093d2c2e78751
626 Author: Keith Packard <keithp@keithp.com>
627 Date: Wed Nov 24 22:49:33 2010 -0800
629 doc: Add more authors, fix URL formatting, note that AltosUI actually exists
631 Add aj and bfinch as authors. Insert an acknowledgements section. Fill
632 in the Fire Igniter section in the AltosUI chapter. Then change the
633 section talking about the future plans for Java to mention that they
636 Signed-off-by: Keith Packard <keithp@keithp.com>
638 commit bcf78b67717374b5971820021b83061e2e9734cf
639 Author: Keith Packard <keithp@keithp.com>
640 Date: Wed Nov 24 21:39:18 2010 -0800
642 doc: Reformat altos to use sections for each function
644 This places them in the TOC, making them easier to find.
646 Signed-off-by: Keith Packard <keithp@keithp.com>
648 commit 51c7741040d95c5deece939dae5e4136cc04afc4
649 Merge: d1dbe3b 4e47c44
650 Author: Keith Packard <keithp@keithp.com>
651 Date: Wed Nov 24 21:00:52 2010 -0800
653 Merge branch 'buttonbox'
656 doc/telemetrum-doc.xsl
658 Pull the buttbox version of the docs in as it had been updated.
660 Signed-off-by: Keith Packard <keithp@keithp.com>
662 commit 4e47c44d335276cf0dc5ed3a0756e50c98c1b9b9
663 Author: Bdale Garbee <bdale@gag.com>
664 Date: Wed Nov 24 21:44:53 2010 -0700
666 manually fold in documentation work from the master branch
668 commit 8a68c1da253c0b29a7cb9c7540c20585ad6e3dec
669 Author: Bdale Garbee <bdale@gag.com>
670 Date: Wed Nov 24 21:21:53 2010 -0700
674 commit 7cd1c7765d137df711caeeb69abaaba1b36e0a65
675 Author: Bdale Garbee <bdale@gag.com>
676 Date: Wed Nov 24 20:53:36 2010 -0700
678 fix missing section close in Site Map content
680 commit db2b19b8f0d452d682d53c7ed0ff6e359b46efa0
681 Merge: b372f3c 915f881
682 Author: Keith Packard <keithp@keithp.com>
683 Date: Wed Nov 24 18:57:35 2010 -0800
685 Merge remote branch 'aj/buttonbox' into buttonbox
687 commit b372f3c0ee4ec49aabe61c169cb1eb9bb4fb2cfc
688 Author: Keith Packard <keithp@keithp.com>
689 Date: Wed Nov 24 18:50:46 2010 -0800
691 Missing change to top level Makefile to build altosui
693 Signed-off-by: Keith Packard <keithp@keithp.com>
695 commit 915f881d61294dc6f5a6a3e8d75567e18492a631
696 Author: Anthony Towns <aj@erisian.com.au>
697 Date: Thu Nov 25 09:52:30 2010 +1000
699 doc: Document altosui "Site Map" tab
701 commit f01096c4b42f9a4720ed0414826c2a283a992545
702 Merge: 357826a 3fbefb3
703 Author: Anthony Towns <aj@erisian.com.au>
704 Date: Thu Nov 25 09:10:50 2010 +1000
706 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
708 commit 3fbefb3eea981d34a09496cf8abf0119de2e35bf
709 Author: Keith Packard <keithp@keithp.com>
710 Date: Wed Nov 24 14:57:57 2010 -0800
712 Move altosui to the top level, placing libaltos inside it.
714 Signed-off-by: Keith Packard <keithp@keithp.com>
716 commit 357826aa9c7b42c59f5d52b8eb016d73b6da0c7f
717 Author: Anthony Towns <aj@erisian.com.au>
718 Date: Thu Nov 25 09:07:34 2010 +1000
720 docs: Document altosui "Graph Data" button
722 commit 7811e6dfa6caf10251da7df7c24b98cdc3787892
723 Merge: 71b1949 7a50837
724 Author: Anthony Towns <aj@erisian.com.au>
725 Date: Thu Nov 25 08:47:36 2010 +1000
727 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
729 commit 7a50837ea0d92db3f469f197ec8210aee22aa143
730 Author: Keith Packard <keithp@keithp.com>
731 Date: Wed Nov 24 10:55:18 2010 -0800
733 altosui: Make sure packet mode is turned off when the connection fails
735 When the packet connection times out, turn packet mode off when
736 closing the serial port.
738 Signed-off-by: Keith Packard <keithp@keithp.com>
740 commit 7d90e2f6009e060fb59c519f7e564483a7ca6872
741 Author: Keith Packard <keithp@keithp.com>
742 Date: Tue Nov 23 20:17:44 2010 -0800
744 altosui: Let people fire igniters that don't read as 'ready'
746 This provides for igniter testing with LEDs or other materials that
747 don't look like regular igniters.
749 Signed-off-by: Keith Packard <keithp@keithp.com>
751 commit f3233985a132e1d660e6df12d0056b6729f16faf
752 Author: Keith Packard <keithp@keithp.com>
753 Date: Tue Nov 23 19:09:31 2010 -0800
755 altosui: Disable radio configation over packet link.
757 Attempting to configure the radio over the packet link will only end
758 up confusing the user, so disable it. This also works around a bug in
759 older TM code which would lock up when trying to do this.
761 Signed-off-by: Keith Packard <keithp@keithp.com>
763 commit 6cd9be22f06f21d12ee2f668989d83d3c61d14c0
764 Author: Keith Packard <keithp@keithp.com>
765 Date: Tue Nov 23 19:08:07 2010 -0800
767 altosui: New AltosSerial.set_radio function sets channel/call
769 Use this anytime you need to set the device radio channel and call
770 sign, either for telemetry reception or packet mode origination. This
771 uses the saved callsign and per-device radio channel number. Do not
772 use this when opening a telemetrum as there won't be a saved channel number.
774 Signed-off-by: Keith Packard <keithp@keithp.com>
776 commit ed7cf7d262fcf7c0c677c2fb981582b571de9e5e
777 Author: Keith Packard <keithp@keithp.com>
778 Date: Tue Nov 23 19:04:55 2010 -0800
780 altosui: Make AltosSerial.flush_input keep reading while non-empty
782 Flushing the input buffer can take a while, especially over the packet
783 link. Keep reading while stuff is appearing on the reply queue.
785 Signed-off-by: Keith Packard <keithp@keithp.com>
787 commit 3b9db8c82d26a6a2e43d4ca40742fc1bdc502380
788 Author: Keith Packard <keithp@keithp.com>
789 Date: Tue Nov 23 19:02:54 2010 -0800
791 altos: Make radio test command careful with the radio mutex.
793 Remember whether the radio test mode is on or off and don't try to do
794 either of them twice to prevent the mutex from being acquired or
797 Signed-off-by: Keith Packard <keithp@keithp.com>
799 commit 54468e5dc567aaac5c5c20e921859b7cec28bb88
800 Author: Keith Packard <keithp@keithp.com>
801 Date: Tue Nov 23 18:57:49 2010 -0800
803 altos: Don't abort radio transmissions with ao_radio_abort
805 We only want to abort pending radio reception to release the radio for
806 other use, or to change the radio channel. Let radio transmission
807 proceed. This fixes a problem with using packet mode to configure the
808 radio channel; if the packet transmission is aborted, the TM ends up
811 Signed-off-by: Keith Packard <keithp@keithp.com>
813 commit d873dc28f0752aeb58a6263e42bdd5b9095bd392
814 Author: Keith Packard <keithp@keithp.com>
815 Date: Tue Nov 23 18:56:46 2010 -0800
817 altos: remove unused variable from ao_igniter
819 The 'status' variable used to hold a reported status value from the
820 igniter after firing, but we ignore that now.
822 Signed-off-by: Keith Packard <keithp@keithp.com>
824 commit 71b1949e50f4533bcf44537da65b19bc67863c8e
825 Merge: a79225c f1892b1
826 Author: Anthony Towns <aj@erisian.com.au>
827 Date: Wed Nov 24 12:14:11 2010 +1000
829 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
831 commit f1892b137b1de3d6caf0293bd40ed5c3e4948066
832 Author: Bdale Garbee <bdale@gag.com>
833 Date: Tue Nov 23 18:58:11 2010 -0700
835 lose the placeholder on how GPS works, as it's going to be a
836 while before I tackle that, if ever.
838 commit a79225c215f17fa5218ddd9db4fc3f5c563a9f74
839 Merge: 84cd5d4 853b711
840 Author: Anthony Towns <aj@erisian.com.au>
841 Date: Wed Nov 24 11:55:14 2010 +1000
843 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
845 commit 853b7112e34212040c4cb7289f9cfdb2f3ea9f90
846 Author: Bdale Garbee <bdale@gag.com>
847 Date: Tue Nov 23 18:53:18 2010 -0700
849 merge Keith's AltosUI documention into "the big book"
851 commit 84cd5d42d8b5659463544fe2a400758b56478609
852 Author: Anthony Towns <aj@erisian.com.au>
853 Date: Wed Nov 24 02:13:32 2010 +1000
855 altosui: sitemap uses rocket gps if no pad gps
857 commit c7119c21baa9d4ca681975b8613ade6593f65577
858 Author: Anthony Towns <aj@erisian.com.au>
859 Date: Wed Nov 24 02:11:36 2010 +1000
861 altosui: don't switch away from user selected tab
863 commit ae55a107f12546dc65f04618c7abc17beb920d73
864 Merge: d1005f6 737f2fd
865 Author: Anthony Towns <aj@erisian.com.au>
866 Date: Wed Nov 24 01:53:46 2010 +1000
868 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
870 commit 737f2fdd012202f453120ece117ae5e859b32082
871 Author: Keith Packard <keithp@keithp.com>
872 Date: Mon Nov 22 22:26:19 2010 -0800
874 doc: Add internal documentation for AltOS
876 Signed-off-by: Keith Packard <keithp@keithp.com>
878 commit 5523e7d55ecc8d310e495fa4f5115f7483c42d65
879 Author: Bdale Garbee <bdale@gag.com>
880 Date: Mon Nov 22 21:07:10 2010 -0700
882 add a rudimentary --help for command line use
884 commit d1005f68376d695039c314b8d7a68bbf9acbca4f
885 Merge: 9a83e0d 22c0978
886 Author: Anthony Towns <aj@erisian.com.au>
887 Date: Tue Nov 23 10:14:55 2010 +1000
889 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
891 commit 22c09781af1df4b38562b577e9926c23e4a397f2
892 Merge: b27327a a79606a
893 Author: Keith Packard <keithp@keithp.com>
894 Date: Mon Nov 22 16:02:22 2010 -0800
896 Merge remote branch 'origin/buttonbox' into buttonbox
898 commit b27327a05d249eaf969b67d2a8d12fc6a93841f0
899 Author: Keith Packard <keithp@keithp.com>
900 Date: Mon Nov 22 15:56:04 2010 -0800
902 altos: assume igniter worked.
904 Many igniters don't go open when fired, so there's no way
905 to know if they worked. Assume they did as a failed igniter is
906 unlikely to do anything when fired again anyways.
908 Signed-off-by: Keith Packard <keithp@keithp.com>
910 commit 68323cbb222f1f33198a42abaa0550af22f75a93
911 Author: Keith Packard <keithp@keithp.com>
912 Date: Mon Nov 22 15:53:27 2010 -0800
914 altosui: Close serial port when debug link fails
916 If the debug connection isn't working, close down the serial port when
917 reporting the failure.
919 Signed-off-by: Keith Packard <keithp@keithp.com>
921 commit 9a83e0dc79f7a7467c7814d58daa2a2b89e50972
922 Merge: 902735f a79606a
923 Author: Anthony Towns <aj@erisian.com.au>
924 Date: Tue Nov 23 08:07:04 2010 +1000
926 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
928 commit a79606a6507fc01a74910f7959e84c4e9a730714
929 Author: Bob Finch <w9ya@qrparci.net>
930 Date: Mon Nov 22 12:24:42 2010 -0700
932 Added PKGBUILDs for deps into contribs
934 commit 377ee7e90ecd028f984cd1abce96b2efc3b5b977
935 Author: Keith Packard <keithp@keithp.com>
936 Date: Sun Nov 21 14:03:17 2010 -0800
938 altos: Add on/off modes to 'C' command
940 This lets the user turn the radio on/off and then invoke other commands.
942 Signed-off-by: Keith Packard <keithp@keithp.com>
944 commit 902735ffbfdd97672d52b09f17cdcd619193fd05
945 Author: Anthony Towns <aj@erisian.com.au>
946 Date: Mon Nov 22 05:29:26 2010 +1000
948 altosui: keep sitemap more centred on rocket
950 commit b85df38b5611e45cb9296df07b720badf74ac26e
951 Author: Anthony Towns <aj@erisian.com.au>
952 Date: Mon Nov 22 05:22:17 2010 +1000
954 altosui: improve sitemap scrolling behaviour
956 commit 4a9ded5b39ed08e13abc2cddba8b712f62b983f2
957 Author: Anthony Towns <aj@erisian.com.au>
958 Date: Sun Nov 21 17:39:50 2010 +1000
960 AltosSiteMap: ensure buffer around active tile
962 commit ec47bc93a487614714a752cb30ec9fe3d8f72929
963 Merge: 0393830 e7954c8
964 Author: Anthony Towns <aj@erisian.com.au>
965 Date: Sun Nov 21 16:08:37 2010 +1000
967 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
969 commit e7954c820763f80e993f9f822e837725cf36af84
970 Author: Keith Packard <keithp@keithp.com>
971 Date: Sat Nov 20 22:03:26 2010 -0800
973 altosui: When fixing eeprom gps time information, make GPS data valid
975 Eeprom files may be missing the GPS time (due to a firmware bug). Working
976 around this involves finding the next valid GPS time and using that to
977 create a fake GPS time entry. However, that next GPS time may not
978 be locked or may have few sats as it is from the boost stage of the
979 flight. Fix this by simply forcing the fake time packet to have
980 4 sats and be locked.
982 Signed-off-by: Keith Packard <keithp@keithp.com>
984 commit 0393830f85da5efc96bbdf0d9769b66019c34b33
985 Author: Anthony Towns <aj@erisian.com.au>
986 Date: Sun Nov 21 15:13:35 2010 +1000
988 AltosSiteMap: limit nr of tiles to 200x200
990 commit a08b2a6363c194195db92029743f6612676373ce
991 Author: Anthony Towns <aj@erisian.com.au>
992 Date: Sun Nov 21 15:03:21 2010 +1000
994 AltosSiteMap: never accept 0,0 as lat/long
996 commit 84e570d8a8a52e0d358582135ec1b3a12be94c26
997 Author: Anthony Towns <aj@erisian.com.au>
998 Date: Sun Nov 21 14:45:10 2010 +1000
1000 AltosSiteMap: refactor tile collection
1002 commit 71e487344395a8efc9cd279aad92f601ff4c6d3d
1003 Author: Anthony Towns <aj@erisian.com.au>
1004 Date: Sun Nov 21 14:05:00 2010 +1000
1006 AltosSiteMap: thread safe tile addition
1008 commit c040bcd06679484175542208fb564d0271a7fc1b
1009 Author: Anthony Towns <aj@erisian.com.au>
1010 Date: Sun Nov 21 13:19:36 2010 +1000
1012 AltosSiteMap: try to get new tile construction right
1014 commit c3994dd82d489289ebc99ff9c5fa88f560c023ac
1015 Author: Anthony Towns <aj@erisian.com.au>
1016 Date: Sun Nov 21 13:07:11 2010 +1000
1018 AltosSiteMap: extend map if rocket goes far away
1020 commit 835b903727a2eabda8d9659cc46e53301f92897c
1021 Merge: 440a0f3 8789135
1022 Author: Anthony Towns <aj@erisian.com.au>
1023 Date: Sun Nov 21 11:15:02 2010 +1000
1025 Merge branch 'sitemap' into buttonbox
1028 ao-tools/altosui/AltosSiteMap.java
1030 commit 878913551a1e4e3c8f2b39fa4aeb234880735a1c
1031 Author: Anthony Towns <aj@erisian.com.au>
1032 Date: Sun Nov 21 10:55:22 2010 +1000
1034 AltosSiteMap: explain tile size better
1036 commit 440a0f3f5130eb0c8e614691892be8c94e7fd3c3
1037 Author: Keith Packard <keithp@keithp.com>
1038 Date: Sat Nov 20 16:55:12 2010 -0800
1040 altosui: Set site map flight path lines to 6 pixels anti-aliased.
1042 Much more visible over the map.
1044 Signed-off-by: Keith Packard <keithp@keithp.com>
1046 commit 2a7dc3ba36bac81640a9498e0d0caf1470b57c19
1047 Merge: e5b1ada ece2c86
1048 Author: Anthony Towns <aj@erisian.com.au>
1049 Date: Sun Nov 21 10:45:15 2010 +1000
1051 Merge branch 'buttonbox' into sitemap
1054 ao-tools/altosui/AltosFlightUI.java
1056 commit 8df185cd95cfecbed8272dd1275d077c5b45535b
1057 Merge: ece2c86 1e71264
1058 Author: Keith Packard <keithp@keithp.com>
1059 Date: Sat Nov 20 16:35:48 2010 -0800
1061 Merge remote branch 'aj/sitemap' into buttonbox
1064 ao-tools/altosui/AltosFlightUI.java
1066 Signed-off-by: Keith Packard <keithp@keithp.com>
1068 commit e5b1adae9b23b98a6321986f5cd67c9d3166b87f
1069 Author: Anthony Towns <aj@erisian.com.au>
1070 Date: Sun Nov 21 10:34:39 2010 +1000
1072 AltosSiteMap: better gps check, lower zoom
1074 commit ece2c86e2641b2cd613791293526c492b1606aa1
1075 Author: Keith Packard <keithp@keithp.com>
1076 Date: Sat Nov 20 16:19:42 2010 -0800
1078 altosui: Rewrite info table to mix with scroll pane well. Fix startup size
1080 Using a single table for the info table means that the scroll pane
1081 automatically picks up the table headers and shows them above the
1084 This patch also fixes the application size at startup so that no
1085 scrollbar is required in the info table, and the window is < 800x600.
1087 Signed-off-by: Keith Packard <keithp@keithp.com>
1089 commit 1e712647dd6df1e77650db705f3ac32a3c8f6907
1090 Author: Anthony Towns <aj@erisian.com.au>
1091 Date: Sun Nov 21 08:58:44 2010 +1000
1095 commit a59a204e188e40ec8848a0dc63d6de710cee3039
1096 Merge: 8263630 37f0201
1097 Author: Anthony Towns <aj@erisian.com.au>
1098 Date: Sun Nov 21 08:56:13 2010 +1000
1100 Merge branch 'buttonbox' into sitemap
1102 commit 82636305021c41d676f5f0f11378724fe0de0079
1103 Author: Anthony Towns <aj@erisian.com.au>
1104 Date: Sun Nov 21 08:44:13 2010 +1000
1106 AltosSiteMap: be more polite about preferred size
1108 commit 37f0201d724693528f37ac7d275f68f90cf94da0
1109 Author: Keith Packard <keithp@keithp.com>
1110 Date: Sat Nov 20 14:31:23 2010 -0800
1112 altosui: change descent tab formatting to four columns
1114 This places labels to the left of each field. For igniter voltages,
1115 it uses three columns for the labels.
1117 Signed-off-by: Keith Packard <keithp@keithp.com>
1119 commit 66ebd954d9c9a44a8db0ee713c682e39306fabd8
1120 Author: Anthony Towns <aj@erisian.com.au>
1121 Date: Sun Nov 21 08:28:24 2010 +1000
1125 commit 72f5e05f9f0055f2cef8b840812f090556c94338
1126 Author: Anthony Towns <aj@erisian.com.au>
1127 Date: Sun Nov 21 08:18:39 2010 +1000
1129 AltosSiteMap: major refactoring
1131 commit b47517d4c2e49f6f7b9954d2c85f96397fe1103e
1132 Author: Keith Packard <keithp@keithp.com>
1133 Date: Sat Nov 20 14:06:37 2010 -0800
1137 commit 6f8bc2ad20b715343e0510563ab0f14787ef3e07
1138 Author: Anthony Towns <aj@erisian.com.au>
1139 Date: Sun Nov 21 01:34:52 2010 +1000
1141 AltosDescent: switch elev from height to range
1143 commit 89f44c5587ea4f927d5e398b6af919df0d6561c3
1144 Author: Anthony Towns <aj@erisian.com.au>
1145 Date: Sun Nov 21 01:27:01 2010 +1000
1147 AltosAscent/Descent: tidy up layout
1149 commit 51e403145d28ac913e36d205077a613845596be2
1150 Author: Anthony Towns <aj@erisian.com.au>
1151 Date: Sun Nov 21 00:17:51 2010 +1000
1153 AltosSiteMapTile: draw boost circle as well as landed
1155 commit 25ffe1cc7823895886b4777f310b4bda1c80133b
1156 Author: Anthony Towns <aj@erisian.com.au>
1157 Date: Sun Nov 21 00:07:16 2010 +1000
1159 AltosSiteMap: automatic fetching of map data
1161 commit 20f714bbe3137de8fb7491b39985021fd1774930
1162 Author: Anthony Towns <aj@erisian.com.au>
1163 Date: Sat Nov 20 22:49:51 2010 +1000
1165 AltosSiteMapTile: seperate map and drawing layers
1167 commit 58f8d069ce9488e2987b8e92caa69fe68cda7569
1168 Author: Anthony Towns <aj@erisian.com.au>
1169 Date: Sat Nov 20 21:06:37 2010 +1000
1171 AltosSiteMap: add autoscroll and grabndrag scroll
1173 commit 74cab8503b51ba6fb05a4d12a031c749e870b0ef
1174 Merge: 0ecf033 9a99cab
1175 Author: Anthony Towns <aj@erisian.com.au>
1176 Date: Sat Nov 20 18:20:45 2010 +1000
1178 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
1180 commit 0ecf033110084f1a8be98282d7029dc14f70dab5
1181 Merge: 081fbd5 71c41ea
1182 Author: Anthony Towns <aj@erisian.com.au>
1183 Date: Sat Nov 20 18:14:30 2010 +1000
1185 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
1187 commit 9a99cabc1c34c657fc95246192ba6d330f5f22d3
1188 Author: Keith Packard <keithp@keithp.com>
1189 Date: Sat Nov 20 00:13:58 2010 -0800
1191 altosui: Fix channel changing in flight UI to actually work
1193 Replacing the menu with a combo box required reworking the way events
1194 are delivered from that widget back to the channel changing
1195 function. Just delete the old magic and use the JComboBox action
1198 Signed-off-by: Keith Packard <keithp@keithp.com>
1200 commit 71c41eadd12c3ece5fffce7669e4991778046d4e
1201 Author: Keith Packard <keithp@keithp.com>
1202 Date: Sat Nov 20 00:09:03 2010 -0800
1204 altosui: Initialize display thread state in constructor instead of run
1206 Some state will get set before run is called, initializing it there
1209 Signed-off-by: Keith Packard <keithp@keithp.com>
1211 commit 081fbd5715f9d3d81d98e149fb95d40447c07a79
1212 Merge: 90b9bc4 7920ed5
1213 Author: Anthony Towns <aj@erisian.com.au>
1214 Date: Sat Nov 20 17:40:49 2010 +1000
1216 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
1219 ao-tools/altosui/AltosFlightUI.java
1221 commit 7920ed5c34b088f45ce4213b061ddd1ffe22cee8
1222 Author: Keith Packard <keithp@keithp.com>
1223 Date: Fri Nov 19 23:18:51 2010 -0800
1225 altosui: calling thread.interrupt with null thread doesn't work well
1227 This was a left-over from debugging the previous patch.
1229 Signed-off-by: Keith Packard <keithp@keithp.com>
1231 commit 8c8dc3794c7b5fa5a5b43b1c461d6c8bb3ab425d
1232 Author: Keith Packard <keithp@keithp.com>
1233 Date: Fri Nov 19 23:09:15 2010 -0800
1235 altosui: When switching log files, don't terminate log thread
1237 The log thread automatically switches output files when the incoming
1238 telemetry changes. Don't use 'close' for that as 'close' terminates
1239 the log thread as well as closing the file. Create a new
1240 'close_log_file' function which just closes the file.
1242 Signed-off-by: Keith Packard <keithp@keithp.com>
1244 commit 594e80572821f1848db062d0cff18ca8bf0d90ce
1245 Author: Keith Packard <keithp@keithp.com>
1246 Date: Fri Nov 19 22:44:48 2010 -0800
1248 altosui: switch channel selector to combo box. Shorten displayed device names
1250 A combo box displays the current value, which is quite nice to
1251 have. Add a 'toShortString' for AltosDevice so that the window frames
1252 and error messages don't have extra spaces generated by the
1253 altos_device toString method.
1255 Signed-off-by: Keith Packard <keithp@keithp.com>
1257 commit fa07afc73bc5eccff8464a2def05ad600da33c97
1258 Author: Bdale Garbee <bdale@gag.com>
1259 Date: Fri Nov 19 23:33:42 2010 -0700
1261 update turnon scripts to use stashed copies of stable release firmware
1263 commit 9ffc2eb53a47e435f39b02896b0e43ae5f47f450
1264 Author: Keith Packard <keithp@keithp.com>
1265 Date: Fri Nov 19 18:25:48 2010 -0800
1267 altosui: Use timeouts to recover from broken packet links.
1269 This puts timeouts every place the system reads from the packet link
1270 and aborts the in-progress operation if it takes more than a second to
1273 Also mixed in here are persistent igniter status displays for the
1274 ejection testing UI.
1276 Signed-off-by: Keith Packard <keithp@keithp.com>
1278 commit 68078eab3c07d8dc83302747cf6f3dcb1797c6ce
1279 Author: Keith Packard <keithp@keithp.com>
1280 Date: Fri Nov 19 20:44:29 2010 +0800
1282 doc: Document the 'Flash Image' operation.
1284 Signed-off-by: Keith Packard <keithp@keithp.com>
1286 commit b4bdda65488e8ef27d2889cb6cc8eda3c5d50e0a
1287 Author: Keith Packard <keithp@keithp.com>
1288 Date: Fri Nov 19 20:29:14 2010 +0800
1290 doc: git ignore generated doc files
1292 Signed-off-by: Keith Packard <keithp@keithp.com>
1294 commit f0542085de2139ef562af068ec05fa73f47c73b1
1295 Author: Keith Packard <keithp@keithp.com>
1296 Date: Fri Nov 19 20:26:49 2010 +0800
1298 doc: Add preliminary altosui documentation
1300 Also, update the Makefile to allow for further documents to be added
1301 without a lot of custom rules.
1303 Signed-off-by: Keith Packard <keithp@keithp.com>
1305 commit 0e7a10f71803d60f8b34c5a91efd220449442769
1306 Author: Keith Packard <keithp@keithp.com>
1307 Date: Fri Nov 19 17:16:03 2010 +0800
1309 altosui: Clean up global AltosUI configuration settings dialog
1311 This dialog had a mish-mash of styles and was confusing.
1312 Now it's got a label for each line, and suitable setters for
1315 Signed-off-by: Keith Packard <keithp@keithp.com>
1317 commit 8f72f08839346fb225238420324f0edcd070e531
1318 Author: Keith Packard <keithp@keithp.com>
1319 Date: Fri Nov 19 17:14:17 2010 +0800
1321 altosui: Unify datafile selection to AltosDataChooser
1323 Instead of having several separate intefaces, use a single dialog for
1324 selecting data files for graph/export/replay.
1326 Signed-off-by: Keith Packard <keithp@keithp.com>
1328 commit 24ffcf86c43290ce0f70fb4ee0984b3debdb8a5f
1329 Author: Keith Packard <keithp@keithp.com>
1330 Date: Fri Nov 19 15:41:30 2010 +0800
1332 altosui: Add igniter ground testing code
1334 Not yet hooked up, but the UI is finished.
1336 Signed-off-by: Keith Packard <keithp@keithp.com>
1338 commit 90b9bc4475011bead7117ed72fa5efa0f77b2813
1339 Author: Anthony Towns <aj@erisian.com.au>
1340 Date: Fri Nov 19 13:30:00 2010 +1000
1342 AltosSiteMapTile: adjust scale to 1 nmi per tile
1344 commit fa45336062523838ba8abb08427cdc4d9c7de7a8
1345 Author: Anthony Towns <aj@erisian.com.au>
1346 Date: Fri Nov 19 13:17:29 2010 +1000
1348 AltosSiteMapTile: adjust centering calculation
1350 commit fda93afcd8aa4133b0e5f008b824d072e338d0ed
1351 Author: Anthony Towns <aj@erisian.com.au>
1352 Date: Fri Nov 19 13:02:05 2010 +1000
1354 AltosSiteMapTile: autoscale to about 2 nmi per tile
1356 commit 483346a03c94b200692f5e6d59f3feee4dcf2ace
1357 Author: Anthony Towns <aj@erisian.com.au>
1358 Date: Fri Nov 19 12:09:46 2010 +1000
1360 altosui: tile site maps
1362 commit 939be6793238a275b7682ecc376fed14379cf044
1363 Merge: e68fe94 1a4b6e9
1364 Author: Anthony Towns <aj@erisian.com.au>
1365 Date: Thu Nov 18 05:54:06 2010 +1000
1367 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
1370 ao-tools/altosui/AltosFlightUI.java
1372 commit 1a4b6e96f823035b113f01d1bdfd61afc1f33e25
1373 Author: Keith Packard <keithp@keithp.com>
1374 Date: Tue Nov 16 22:46:29 2010 +0800
1376 altosui: Add igniter status to ascent and descent tabs
1378 Monitor igniters during all phases of the flight.
1380 Signed-off-by: Keith Packard <keithp@keithp.com>
1382 commit d0eb41619544ead6d9dab3a8d024a12936c9cdd0
1383 Author: Keith Packard <keithp@keithp.com>
1384 Date: Tue Nov 16 22:20:00 2010 +0800
1386 altosui: Cleanup flight UI layout
1388 Use common constants for fonts and insets
1389 Shrink fonts so that the window is < 600 pixels tall.
1391 Signed-off-by: Keith Packard <keithp@keithp.com>
1393 commit fcca333cda64be35f0c9fb0109eef1be3709dddd
1394 Author: Keith Packard <keithp@keithp.com>
1395 Date: Tue Nov 16 21:49:59 2010 +0800
1397 altosui: Add callsign configuration in AltosUI configuration dialog
1399 This callsign is used during packet communication.
1401 Signed-off-by: Keith Packard <keithp@keithp.com>
1403 commit d1dbe3b69e6f95ef8ecd4cf959863b922ab47c66
1404 Author: Bdale Garbee <bdale@gag.com>
1405 Date: Mon Nov 15 11:08:00 2010 -0700
1407 add a paragraph about forcing TM back to idle mode if an accel cal goes badly
1409 commit 39e371561469d8e5059638ffa4e7075f391de268
1410 Author: Keith Packard <keithp@keithp.com>
1411 Date: Mon Nov 15 23:14:51 2010 +0800
1413 altosui: add reboot button to telemetrum configuration UI
1415 This lets you reconfigure and reboot telemetrum, including over the
1418 Signed-off-by: Keith Packard <keithp@keithp.com>
1420 commit 257e97137325f5dbbd6aa034f20fd6937b67df90
1421 Author: Keith Packard <keithp@keithp.com>
1422 Date: Mon Nov 15 22:38:35 2010 +0800
1424 altosui: eliminate menu bar, moving elements to buttons.
1426 This adds a new 'configure AltosUI' dialog to set the log directory
1427 and voice preferences.
1429 Signed-off-by: Keith Packard <keithp@keithp.com>
1431 commit 524644d8d8ce3f8a5a914ecfc7e2a8d474d89095
1432 Author: Keith Packard <keithp@keithp.com>
1433 Date: Mon Nov 15 22:04:44 2010 +0800
1435 altosui: oops, missed a file in the previous commit
1437 AltosSerialInUseException.java just defines a new exception, thanks to
1438 java for making this live in a separate file.
1440 Signed-off-by: Keith Packard <keithp@keithp.com>
1442 commit 511903704f7e1b22e88dd3e3cc35fd3c0583820e
1443 Author: Keith Packard <keithp@keithp.com>
1444 Date: Sun Nov 14 03:26:57 2010 -0800
1446 altosui: With --replay option, exit when replay window is closed
1448 Otherwise, the application hangs around forever.
1450 Signed-off-by: Keith Packard <keithp@keithp.com>
1452 commit 11c95f687b1f68d35fa1a0af2c4e7982b8bb226a
1453 Author: Keith Packard <keithp@keithp.com>
1454 Date: Sat Nov 13 17:09:51 2010 -0800
1456 altosui: Replace flight status table with labels, fix resize.
1458 There's no reason to use a table for the flight status data,
1459 replace that with a selection of widgets instead.
1461 Also, set all of the grid bag constraints for the various flight
1462 status displays so that resize does something sensible.
1464 Adds a scrollbar to the table display so that it can shrink.
1466 Signed-off-by: Keith Packard <keithp@keithp.com>
1468 commit dcfa56498d1b65a213b8aba9cbd6c4806532383c
1469 Author: Keith Packard <keithp@keithp.com>
1470 Date: Sat Nov 13 16:07:04 2010 -0800
1472 altosui: Open serial device at 'new' time. Prohibit duplicate opens.
1474 With the per-serial UI, there's never a reason to create a serial
1475 device without opening it right away. This eliminates the bug caused
1476 by not opening the serial device for telemetry reception.
1478 Serial devices can now be opened only once; this eliminates errors
1479 when trying to reflash or configure devices while receiving telemetry.
1481 Signed-off-by: Keith Packard <keithp@keithp.com>
1483 commit 8463ffcaca6bcd31e645aba71c171f548dce96d8
1484 Author: Keith Packard <keithp@keithp.com>
1485 Date: Sat Nov 13 15:19:14 2010 -0800
1487 altosui: Eliminate unncessary import altosui lines
1489 Java appears to automatically import every module from the current
1492 Signed-off-by: Keith Packard <keithp@keithp.com>
1494 commit 566c6486c8815ae241e0b116a93b1a0ff4783831
1495 Author: Bdale Garbee <bdale@gag.com>
1496 Date: Sat Nov 13 12:19:12 2010 -0700
1498 continuing to work on the docs
1500 commit e68fe9454352087889c560d95797922493117acb
1501 Author: Anthony Towns <aj@erisian.com.au>
1502 Date: Sun Nov 14 00:59:01 2010 +1000
1504 AltosSiteMap: add targeting circles around landing site
1506 commit 1e7e02987276847274493312202d22222c953149
1507 Author: Anthony Towns <aj@erisian.com.au>
1508 Date: Sun Nov 14 00:57:45 2010 +1000
1510 AltosTelemetryReader: actually open serial port
1512 commit 9c32b93ef5fb43558fb0179ea1b047e35b7ed6e8
1513 Merge: 991541f a6f30fa
1514 Author: Anthony Towns <aj@erisian.com.au>
1515 Date: Sun Nov 14 00:29:11 2010 +1000
1517 Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
1519 commit a6f30fae906bd87dff192c5fd4d10df283f99930
1520 Author: Keith Packard <keithp@keithp.com>
1521 Date: Fri Nov 12 17:02:22 2010 -0800
1523 altosui: Add RF calibration to TeleMetrum config dialog
1525 I think that's the last user-settable value.
1527 Signed-off-by: Keith Packard <keithp@keithp.com>
1529 commit 1bdc6166f3bc5ce3f8e55acb1484923781412e21
1530 Merge: f111871 5c6a533
1531 Author: Bdale Garbee <bdale@gag.com>
1532 Date: Fri Nov 12 17:32:43 2010 -0700
1534 Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
1536 commit f1118717780a81f9257d2eed7828b66538deb8a8
1537 Author: Bdale Garbee <bdale@gag.com>
1538 Date: Fri Nov 12 17:32:21 2010 -0700
1540 fold in content from Keith's email on the re-flashing subject
1542 commit 7def9dd0d0a4ce9cf7c65de573100e664f278717
1543 Author: Bdale Garbee <bdale@gag.com>
1544 Date: Fri Nov 12 10:58:54 2010 -0700
1546 first cut at instructions on how to re-flash TM and TD devices based on email
1547 reply to a user who asked
1549 commit 991541f57f065f429c6ec425efd6ac731280b2c1
1550 Author: Anthony Towns <aj@erisian.com.au>
1551 Date: Fri Nov 12 23:42:42 2010 +1000
1553 better error behaviour if no map
1555 commit 1bcfa22de7821984149db10cb79913efed36b41e
1556 Author: Anthony Towns <aj@erisian.com.au>
1557 Date: Fri Nov 12 23:29:40 2010 +1000
1559 pull up maps for arbitrary locations
1561 commit beb6c881ec006241c7d2820c64e5381131d41180
1562 Author: Anthony Towns <aj@erisian.com.au>
1563 Date: Fri Nov 12 03:24:26 2010 +1000
1565 make infotable scrollable, revert its fontsize to 14
1567 commit 0327c1da01a3f6ede01f05c1d775651a57fd0c68
1568 Author: Anthony Towns <aj@erisian.com.au>
1569 Date: Fri Nov 12 02:08:58 2010 +1000
1573 commit 81e7b43ecad666e2e2310c7c94184f888bc86585
1574 Author: Anthony Towns <aj@erisian.com.au>
1575 Date: Fri Nov 12 02:07:41 2010 +1000
1577 add site map tab, at least for QRS launches
1579 commit 5394548fa5c7bdbfcc01e8aa19e93e1cf6345e2a
1580 Merge: 891e629 75f7698
1581 Author: Keith Packard <keithp@keithp.com>
1582 Date: Wed Nov 10 22:11:21 2010 -0800
1584 Merge remote branch 'aj/buttonbox' into buttonbox
1586 commit 75f7698b99a661ed17a91748a99699fa6761772a
1587 Author: Anthony Towns <aj@erisian.com.au>
1588 Date: Thu Nov 11 16:06:32 2010 +1000
1590 add compass bearing during descent
1592 commit cc0a730de093c49be2a921101d27622b6f592e92
1593 Author: Anthony Towns <aj@erisian.com.au>
1594 Date: Thu Nov 11 15:57:52 2010 +1000
1596 add compass bearing to voice output
1598 commit 317ec72a34906faad88c6924e634617b074e71db
1599 Author: Anthony Towns <aj@erisian.com.au>
1600 Date: Thu Nov 11 15:52:01 2010 +1000
1602 use grayled.png for off
1604 commit 8503943e3613f8670b128012b12ff14fb54321d7
1605 Author: Anthony Towns <aj@erisian.com.au>
1606 Date: Thu Nov 11 15:45:43 2010 +1000
1608 reduce font size for FlightInfoTable
1610 commit 3ffaa5d1c00b28be20fd4a26deb7bd41d953e92a
1611 Author: Anthony Towns <aj@erisian.com.au>
1612 Date: Thu Nov 11 15:43:05 2010 +1000
1614 read preferences for --replay
1616 commit 1f3e091efdfb2fe6f06a066cac60f5d267b94856
1617 Author: Anthony Towns <aj@erisian.com.au>
1618 Date: Thu Nov 11 15:40:37 2010 +1000
1620 add --replay command line argument
1622 commit b16b873723ee3e5097e6725c59ce191119439ad7
1623 Author: Anthony Towns <aj@erisian.com.au>
1624 Date: Thu Nov 11 15:38:27 2010 +1000
1626 use value_font for values
1628 commit 891e629f6ba20654b614f3ca7211a0f1c92670cb
1629 Author: Keith Packard <keithp@keithp.com>
1630 Date: Wed Nov 10 16:28:19 2010 -0800
1632 altos: Use grey leds when unlit - easier to see
1634 commit 5c6a5335a057be0219450b4b9889c647d8d4a012
1635 Author: Bob Finch <w9ya@qrparci.net>
1636 Date: Mon Nov 1 14:36:41 2010 -0600
1638 Updated PKGBUILD-git.altos
1640 Signed-off-by: Keith Packard <keithp@keithp.com>
1642 commit b0d31910da592e2f67c47c8fc3e15ce8135d5094
1643 Author: Keith Packard <keithp@keithp.com>
1644 Date: Tue Nov 9 23:34:32 2010 -0800
1646 altosui: Add ascent, descent and landed tabs
1648 This completes the set of tabs for in-flight status information.
1650 Signed-off-by: Keith Packard <keithp@keithp.com>
1652 commit 22d00785188a880700cd372528189a7a15278da9
1653 Author: Keith Packard <keithp@keithp.com>
1654 Date: Tue Nov 9 14:40:58 2010 -0800
1656 altosui: Add tab UI with 'pad' mode.
1658 This creates a multi-tab interface for flight monitoring
1659 and includes a special tab for 'pad' mode.
1661 Signed-off-by: Keith Packard <keithp@keithp.com>
1663 commit eb77e806ded99532dc7eaa39c1893f075b028af6
1664 Author: Keith Packard <keithp@keithp.com>
1665 Date: Tue Nov 9 10:21:34 2010 -0800
1667 altosui: Create abstract interface for flight data display
1669 This allows the implementation of the flight data display to occur in
1670 the flight UI instead of the display thread.
1672 Signed-off-by: Keith Packard <keithp@keithp.com>
1674 commit a0a92c605e238277c9881545a7226e53b5dbc295
1675 Author: Keith Packard <keithp@keithp.com>
1676 Date: Mon Nov 8 22:17:26 2010 -0800
1678 altosui: Fix more calls to AltosPreferences.channel()
1682 Signed-off-by: Keith Packard <keithp@keithp.com>
1684 commit 94f4a50d6430cc8280cbdaa9f39d3cb858d0e077
1685 Author: Keith Packard <keithp@keithp.com>
1686 Date: Mon Nov 8 22:10:46 2010 -0800
1688 altosui: Fix channel setting at serial open time
1690 Was using the previous non-device-specific preferences API.
1692 Signed-off-by: Keith Packard <keithp@keithp.com>
1694 commit 6b17d276271faa8a420a1c8f6be17faaa0c7043c
1695 Author: Keith Packard <keithp@keithp.com>
1696 Date: Mon Nov 8 22:07:04 2010 -0800
1698 altosui: Create buttons for main actions
1700 Signed-off-by: Keith Packard <keithp@keithp.com>
1702 commit 16916be51d746b1e1057b3219e5bec8f8814259e
1703 Author: Keith Packard <keithp@keithp.com>
1704 Date: Fri Nov 5 23:44:47 2010 -0700
1706 altosui: Split out flight monitoring to separate window
1708 This creates a per-TD (or replay) window to contain the flight
1709 monitoring information, allowing multiple monitors.
1711 This also adds per-TD preferences for monitoring channel.
1713 Signed-off-by: Keith Packard <keithp@keithp.com>
1715 commit ca931b1c484bd6b64617370e81b16e169fdae1c2
1716 Author: Bdale Garbee <bdale@gag.com>
1717 Date: Wed Oct 6 17:47:44 2010 -0600
1719 update changelogs for Debian build
1721 commit 811ced628d586134224c1b501b40ce9eb435fc7c
1722 Author: Keith Packard <keithp@keithp.com>
1723 Date: Wed Oct 6 16:42:27 2010 -0700
1725 altosui: Separate out jfreechart and jcommon directories
1727 This allows these packages to be referenced separately
1729 Signed-off-by: Keith Packard <keithp@keithp.com>
1731 commit c2c4d515ef9cc2cae8a8f2803e9498bb0794c4ed
1732 Author: Keith Packard <keithp@keithp.com>
1733 Date: Wed Oct 6 16:25:49 2010 -0700
1735 altosui: Remove ability to graph data in .csv files
1737 There's no reason to support these files when the raw .eeprom or
1738 .telem files which generate them should be used instead.
1740 Signed-off-by: Keith Packard <keithp@keithp.com>
1742 commit d5caf6f2f4d9257e26aa4305b26c02d1b263fa24
1743 Author: Bdale Garbee <bdale@gag.com>
1744 Date: Wed Oct 6 17:14:35 2010 -0600
1746 remove the csv build dep, as that code will be abandoned
1748 commit 43e23a60780191e3c6f61df44c5dd08cc8604c51
1749 Author: Bdale Garbee <bdale@gag.com>
1750 Date: Wed Oct 6 16:27:57 2010 -0600
1752 update changelogs for Debian build
1754 commit 8103432bf7adfe6ee5bf3ee42e1672475e6edd5a
1755 Author: Bdale Garbee <bdale@gag.com>
1756 Date: Wed Oct 6 16:26:33 2010 -0600
1758 update changelogs for Debian build
1760 commit 635066cd35fb24cacf8400a477ea4b4e3dd2c39c
1761 Author: Bdale Garbee <bdale@gag.com>
1762 Date: Wed Oct 6 16:26:19 2010 -0600
1764 update changelogs for Debian build
1766 commit 4396aaaf34cda3751dcca0eceb05b4ffeb411cde
1767 Author: Bdale Garbee <bdale@gag.com>
1768 Date: Wed Oct 6 16:25:22 2010 -0600
1770 add build-dep on libcsv-java
1772 commit 7475ab5804bf3fb12b1b755e850af90d5a15d3eb
1773 Author: Bdale Garbee <bdale@gag.com>
1774 Date: Wed Oct 6 16:19:35 2010 -0600
1776 update changelogs for Debian build
1778 commit d8a2f4ceb1c70a6be976a78e2264c961de2f2277
1779 Author: Bdale Garbee <bdale@gag.com>
1780 Date: Wed Oct 6 16:18:45 2010 -0600
1782 add build dep on jfreechart lib
1784 commit f0d1468ceae065f0cdae6f6ae3323dec5636f073
1785 Author: Keith Packard <keithp@keithp.com>
1786 Date: Tue Sep 28 17:56:49 2010 -0700
1788 altosui: Add KML file export.
1790 Command line has switches now, --kml and --csv
1791 Export save dialog has combo box to select kml or csv result.
1793 Signed-off-by: Keith Packard <keithp@keithp.com>
1795 commit 5a119fd92532d53e552efe1f7c61e87181fcace0
1796 Merge: 28da340 82744c3
1797 Author: Keith Packard <keithp@keithp.com>
1798 Date: Mon Sep 27 22:28:07 2010 -0700
1800 Merge remote branch 'aj/master'
1802 commit 82744c3497d37650b88dee80be7956c4bd1cffb2
1803 Author: Anthony Towns <aj@erisian.com.au>
1804 Date: Tue Sep 28 15:27:07 2010 +1000
1806 Add callsign/serial/flight to graph title
1808 commit 28da3406426437604125d332e4cda90d459df487
1809 Author: Keith Packard <keithp@keithp.com>
1810 Date: Mon Sep 27 22:26:56 2010 -0700
1812 altosui: use Altos constants in graphing code
1814 The Altos class nicely defines constants for all of the flight states.
1816 Signed-off-by: Keith Packard <keithp@keithp.com>
1818 commit ce7f59fbfb5a94a67a4ceced3cc371b4c6b6e5d1
1819 Author: Anthony Towns <aj@erisian.com.au>
1820 Date: Tue Sep 28 14:45:01 2010 +1000
1822 Hax0r graphing to support telem/eeprom files
1824 commit e2b9f47a205348d38756c70e928a2a9183de6884
1825 Merge: 7ef3ad0 8032031
1826 Author: Anthony Towns <aj@erisian.com.au>
1827 Date: Tue Sep 28 12:55:47 2010 +1000
1829 Merge branch 'master' of git://git.gag.com/fw/altos
1831 commit 803203197e51e71e9c77b3610047fd5bf9a56c56
1832 Author: Keith Packard <keithp@keithp.com>
1833 Date: Mon Sep 27 18:52:30 2010 -0700
1835 altosui: Deal with eeprom dates going backwards across wrap
1837 eeprom timestamps can go backwards as the GPS time stamps are
1838 recorded when the first GPS character is received, but not placed into
1839 the eeprom log until the last GPS packet is complete. If this happens
1840 at the same time the tick count is wrapping, then the tick count will
1841 wrap backwards across the 0 boundary causing time to jump forwards.
1843 Fix this by letting time go backwards across the tick boundary, which
1844 requires that we know when the first 'real' tick is read from the
1847 Signed-off-by: Keith Packard <keithp@keithp.com>
1849 commit fe7eba2e4af36cf29d8dc2378ac6985be04f68c6
1850 Author: Keith Packard <keithp@keithp.com>
1851 Date: Mon Sep 27 18:51:05 2010 -0700
1853 altosui: .CSV output: add link quality, gps hdop and sat C/N0 numbers
1855 This makes the CSV files contain all of the available information.
1857 Signed-off-by: Keith Packard <keithp@keithp.com>
1859 commit c89a34d1eb25155405b0036baeadc7bbfeade1c2
1860 Author: Keith Packard <keithp@keithp.com>
1861 Date: Mon Sep 27 17:11:48 2010 -0700
1863 altosui: Create iterables for log file scanning. Split out display threads
1865 Convert from log file reading paradigm to using iterators which is
1866 more idiomatic for java. Split more code out of AltosUI.java,
1867 including the display update threads for telemetry monitoring and
1870 Signed-off-by: Keith Packard <keithp@keithp.com>
1872 commit 7ef3ad0c9354c0484c25badc69334b59c7f355e2
1873 Merge: eb74866 e66919a
1874 Author: Anthony Towns <aj@erisian.com.au>
1875 Date: Fri Sep 24 10:28:06 2010 +1000
1877 Merge branch 'master' of git://git.gag.com/fw/altos
1879 commit e66919aa46193bd8c7a1e86fb32a3367dae121f5
1880 Author: Keith Packard <keithp@keithp.com>
1881 Date: Thu Sep 23 16:52:51 2010 -0700
1883 altosui: Require 4 sats for 'good' GPS data
1885 Wait for 10 consecutive GPS reports with at least 4 sats before
1886 reporting "GPS ready" state.
1888 Signed-off-by: Keith Packard <keithp@keithp.com>
1890 commit 34ca8c00f4be72c314baff4c96f1e2f010948454
1891 Author: Keith Packard <keithp@keithp.com>
1892 Date: Mon Sep 20 06:30:49 2010 -0700
1894 altosui: remove unused ReplayThread wrapper classes
1896 These aren't used now that the replay opener dialog knows how to build
1897 a reader from a filename.
1899 Signed-off-by: Keith Packard <keithp@keithp.com>
1901 commit fd010661ced6075f82a961625826665a3d8d1efe
1902 Author: Keith Packard <keithp@keithp.com>
1903 Date: Mon Aug 30 14:00:04 2010 -0700
1905 altosui: Factor some UI elements into separate classes
1907 Clean up AltosUI by moving the two main tables to separate class files.
1909 Signed-off-by: Keith Packard <keithp@keithp.com>
1911 commit eb74866e919e8c661153847871f5a79e66d37296
1912 Merge: af404b4 1260589
1913 Author: Anthony Towns <aj@erisian.com.au>
1914 Date: Mon Sep 20 22:05:26 2010 +1000
1916 Merge branch 'master' of git://git.gag.com/fw/altos
1918 commit 1260589976c1a95848b298497fd251c4ee7d3f93
1919 Author: Keith Packard <keithp@keithp.com>
1920 Date: Sun Sep 19 02:52:29 2010 -0700
1922 altosui: Write raw sensor data to .csv files
1924 For data export, provide the raw sensor samples instead of the
1927 Signed-off-by: Keith Packard <keithp@keithp.com>
1929 commit 7a4d7110debb88f4e906fee7c46f2badd561809d
1930 Author: Keith Packard <keithp@keithp.com>
1931 Date: Sun Sep 19 02:50:43 2010 -0700
1933 altosui: Use recorded ground acceleration when reading eeprom files
1935 The flight software records 1000 accelerometer samples and records
1936 that in the flight log. Use that value instead of using the very few
1937 samples recorded in the eeprom before boost is detected. This
1938 generates far more accurate accerometer data in the .csv files.
1940 Signed-off-by: Keith Packard <keithp@keithp.com>
1942 commit af404b428bd742039afc25ff3850f76bc92c7c29
1943 Author: Anthony Towns <aj@erisian.com.au>
1944 Date: Wed Sep 15 07:24:04 2010 +1000
1946 Add JFreeChart to Makefile.am
1948 commit 61590b8729831cb138b2ba6b88802c208d114753
1949 Author: Anthony Towns <aj@erisian.com.au>
1950 Date: Wed Sep 15 06:51:05 2010 +1000
1954 commit 3d64f5a6511529ca53699190f4d54de1ba62a9bd
1955 Merge: ec6da08 b9623f8
1956 Author: Anthony Towns <aj@erisian.com.au>
1957 Date: Sat Sep 11 15:15:14 2010 +1000
1959 Merge branch 'master' of git://git.gag.com/fw/altos
1961 commit b9623f8ef26491e9fa14e2478295fe6f5cbbd87f
1962 Author: Keith Packard <keithp@keithp.com>
1963 Date: Fri Sep 10 21:07:14 2010 -0700
1965 altosui: Remember directory containing firmware files
1967 Instead of forcing the user to navigate to the firmware directory each
1968 time, this remembers the previous directory and starts there.
1970 Signed-off-by: Keith Packard <keithp@keithp.com>
1972 commit 7f2204e0832b14b1edca4266a2cbc272141ecc2b
1973 Author: Keith Packard <keithp@keithp.com>
1974 Date: Fri Sep 10 20:55:05 2010 -0700
1976 altosui: set default .csv file name in file save dialog
1978 This uses setSelectedFile to specify which output filename to make the
1979 default in the save dialog.
1981 Signed-off-by: Keith Packard <keithp@keithp.com>
1983 commit 7e053ae1f2d09347123ac9fa79e46645378b4c70
1984 Author: Bdale Garbee <bdale@gag.com>
1985 Date: Fri Sep 10 10:42:35 2010 -0600
1987 make the column headers comma separated, too, so they align with the data
1989 commit ec6da0824474e46de842845d7b53fe1a1dde33ed
1990 Merge: 7c2e411 1031067
1991 Author: Anthony Towns <aj@erisian.com.au>
1992 Date: Fri Sep 10 16:11:34 2010 +1000
1994 Merge branch 'master' of git://git.gag.com/fw/altos
1996 commit 10310672a83a66dc630718b151d653fc066f8e59
1997 Author: Bdale Garbee <bdale@gag.com>
1998 Date: Fri Sep 10 00:09:25 2010 -0600
2000 update changelogs for Debian build
2002 commit 9d0e89e8ad8926dc8371fa809835a580ae49711d
2003 Author: Keith Packard <keithp@keithp.com>
2004 Date: Thu Sep 9 23:04:59 2010 -0700
2006 altosui: Stop parsing eeprom file after hitting 'landed' state
2008 Sometimes there are additional records found in the eeprom file; the
2009 reader is mostly worried about not losing anything, so it reads as
2010 much as it can. However, the last record written for any flight is the
2011 'landed' record, so we can stop looking at the file after hitting that.
2013 Signed-off-by: Keith Packard <keithp@keithp.com>
2015 commit 67b6952f7126704478ede5575e5e938d18fcc329
2016 Author: Keith Packard <keithp@keithp.com>
2017 Date: Thu Sep 9 23:04:14 2010 -0700
2019 altosui: Fill in time value of last Eeprom record read from file
2021 The last record is handled separately, and was missing the code to
2022 compute the time. Sigh.
2024 Signed-off-by: Keith Packard <keithp@keithp.com>
2026 commit 8b0b584cd0ca7542e65aac0c7897ad7ab4115122
2027 Author: Keith Packard <keithp@keithp.com>
2028 Date: Thu Sep 9 22:55:47 2010 -0700
2030 altosui: Remove debug printfs from AltosTelemetryReader
2032 Signed-off-by: Keith Packard <keithp@keithp.com>
2034 commit a80bfae15f1499c49f7ef47978bf0337d8120892
2035 Author: Bdale Garbee <bdale@gag.com>
2036 Date: Thu Sep 9 23:57:34 2010 -0600
2038 rewind packaging changelog, again
2040 commit 78ce3120e5a53858ca0d43c734aa5d28b4948ce3
2041 Author: Bdale Garbee <bdale@gag.com>
2042 Date: Thu Sep 9 23:52:20 2010 -0600
2044 update changelogs for Debian build
2046 commit 71c85613a28c24c3aad7b4aa3299d8677ef1268e
2047 Author: Bdale Garbee <bdale@gag.com>
2048 Date: Thu Sep 9 23:51:23 2010 -0600
2050 rewind packaging changelog
2052 commit 7c2e4114a3a43f919a7a6c967d3f16e5d630f90f
2053 Merge: ddc83b4 af200f5
2054 Author: Anthony Towns <aj@erisian.com.au>
2055 Date: Fri Sep 10 15:50:01 2010 +1000
2057 Merge branch 'master' of git://git.gag.com/fw/altos
2059 commit af200f5b84555de0556b52146379f3934774a3f3
2060 Author: Keith Packard <keithp@keithp.com>
2061 Date: Thu Sep 9 22:30:48 2010 -0700
2063 altosui: Fix telemetry file reader to handle tick count wrapping
2065 The telemetry reader was ignoring tick count wrapping, so you'd see
2066 time go backwards in jumps. Not useful.
2068 Signed-off-by: Keith Packard <keithp@keithp.com>
2070 commit 96ca7051f60ea299e3e05bafbe5717fc83c3afd2
2071 Author: Bdale Garbee <bdale@gag.com>
2072 Date: Thu Sep 9 22:50:03 2010 -0600
2074 update changelogs for Debian build
2076 commit 2d5e48c5dc0e822fdf430f43804c1e5e79fdbf84
2077 Author: Keith Packard <keithp@keithp.com>
2078 Date: Thu Sep 9 21:28:10 2010 -0700
2080 Add --with-fat-dir configure option to publish finished stand-alone bits
2082 --with-fat-dir specifies a directory to copy the finished
2083 linux/macosx/windows stand-alone ("fat") packages to. A sub-directory
2084 will be created under the specified directory based on the product
2085 version number and the files copied there.
2087 Signed-off-by: Keith Packard <keithp@keithp.com>
2089 commit dd2b77b2a516a055f29191dcdfeb727e637aae86
2090 Author: Keith Packard <keithp@keithp.com>
2091 Date: Thu Sep 9 20:59:29 2010 -0700
2093 altosui: libaltos.so is built with libtool -- it's in ../libaltos/.libs
2095 It used to be in ../libaltos
2097 Signed-off-by: Keith Packard <keithp@keithp.com>
2099 commit 72a5c1258db92d0ddd660bfa875e8e55cab47af7
2100 Author: Keith Packard <keithp@keithp.com>
2101 Date: Thu Sep 9 20:39:41 2010 -0700
2103 altosui: Remove some debug printfs.
2105 Signed-off-by: Keith Packard <keithp@keithp.com>
2107 commit 031fd9a954f2e3447d0150eb4ecc81af7b620dca
2108 Author: Keith Packard <keithp@keithp.com>
2109 Date: Thu Sep 9 20:36:12 2010 -0700
2111 Add firmware and libaltos to 'fat' target at top-level
2113 This ensures that all of the necessary bits are available to construct
2114 the distribution images.
2116 Signed-off-by: Keith Packard <keithp@keithp.com>
2118 commit fcaa480b1dfeb2fd4044f9c4e1b6d50c46fc9984
2119 Author: Bdale Garbee <bdale@gag.com>
2120 Date: Thu Sep 9 21:29:20 2010 -0600
2122 update changelogs for Debian build
2124 commit 48f57997452e17564e28fe3e37403f6f63d32dea
2125 Author: Keith Packard <keithp@keithp.com>
2126 Date: Thu Sep 9 20:24:42 2010 -0700
2128 altosui: conflating USB product and vendor IDs is a bad idea
2130 We've now got a USB vendor ID called 'altusmetrum' for generic
2131 altusmetrum devices (old USB ID 0x000A) while the general vendor name
2132 for all devices is 'altusmetrum' as well.
2134 This patch splits vendors and products into separate name spaces,
2135 products are prefixed with product_ and vendor with (oddly) vendor_.
2137 Signed-off-by: Keith Packard <keithp@keithp.com>
2139 commit 632d276118ab04de67561104be650f8fb69a0450
2140 Author: Bdale Garbee <bdale@gag.com>
2141 Date: Thu Sep 9 20:34:43 2010 -0600
2143 update changelogs for Debian build
2145 commit 1ac3d7e3ba52d1b0dc834eaa5d7886c730eaf307
2146 Author: Bdale Garbee <bdale@gag.com>
2147 Date: Thu Sep 9 20:34:22 2010 -0600
2149 initial cut at an altosui man page
2151 commit 5c4e437975054d33604402591e1ea2f314932593
2152 Author: Bdale Garbee <bdale@gag.com>
2153 Date: Thu Sep 9 20:06:09 2010 -0600
2155 update changelogs for Debian build
2157 commit 0ea75761416bff299233991e961ba25b6c7dcf89
2158 Merge: 35d70c9 8ee3464
2159 Author: Bdale Garbee <bdale@gag.com>
2160 Date: Thu Sep 9 20:05:27 2010 -0600
2162 Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
2164 commit 8ee3464d8064ebe1694c7b20177878c0d9961451
2165 Author: Keith Packard <keithp@keithp.com>
2166 Date: Thu Sep 9 17:54:41 2010 -0700
2168 altosui: Display error dialog when AltOS JNI library can't be loaded
2170 Having an error dialog appear at application startup seems better than
2171 simply failing to present the device dialog later on.
2173 Signed-off-by: Keith Packard <keithp@keithp.com>
2175 commit 4224a7526e51eb8fbf1f0a31bae7ee68c6385095
2176 Author: Keith Packard <keithp@keithp.com>
2177 Date: Thu Sep 9 17:52:46 2010 -0700
2179 altosui: Store libaltos.so in $(libdir)/altos
2181 It's not a public library, so hide it away in a subdirectory.
2183 Signed-off-by: Keith Packard <keithp@keithp.com>
2185 commit 1e4c18777d982061f5e507a4d4f4f1cd4d685268
2186 Author: Keith Packard <keithp@keithp.com>
2187 Date: Thu Sep 9 17:49:37 2010 -0700
2189 altosui: Need to have JVM include path substituted into libaltos Makefile
2191 The libaltos Makefile needs to find the relevant jni.h file, which is
2192 found in the JVM_INCLUDE path, all nicely located by the configure.ac script.
2194 Signed-off-by: Keith Packard <keithp@keithp.com>
2196 commit 35d70c92307dd478bc619b2f6c5a88e155cdad28
2197 Author: Bdale Garbee <bdale@gag.com>
2198 Date: Thu Sep 9 17:27:07 2010 -0600
2200 handle versioning of ihx files (poorly) by just wildcarding the file name,
2201 which assumes there's only one matching .. probably ok on Debian?
2203 commit c286ada6457579d64e9d8ca44b927258b4a561da
2204 Author: Bdale Garbee <bdale@gag.com>
2205 Date: Thu Sep 9 16:27:40 2010 -0600
2207 update changelogs for Debian build
2209 commit 6c0ae7e966a81ece35bccbe89d626a58afe899a2
2210 Author: Keith Packard <keithp@keithp.com>
2211 Date: Thu Sep 9 15:25:18 2010 -0700
2213 altosui: remove FATJAR from all-local to avoid building fat .jar file
2215 the fat .jar file is used in non-native builds to run from a directory
2216 containing all of the freetts jar files along with the altosui jar
2217 file. We don't want this on a real install where freetts is installed separately.
2219 Signed-off-by: Keith Packard <keithp@keithp.com>
2221 commit 737a64c57a8f979f51c3fa6b3f214520c736cf8a
2222 Author: Keith Packard <keithp@keithp.com>
2223 Date: Thu Sep 9 15:22:14 2010 -0700
2225 altosui: hack to make JAVAROOT directory get created before javac runs
2227 This ensures that the JAVAROOT directory gets created by adding it to
2228 the variable used to set the CLASSPATH environment value.
2230 Signed-off-by: Keith Packard <keithp@keithp.com>
2232 commit b456bd9d7bcd9d968e43c38eeb6fa6ad8c58f895
2233 Author: Keith Packard <keithp@keithp.com>
2234 Date: Thu Sep 9 15:11:41 2010 -0700
2236 altosui: fix telemetrum.inf FFFE:000A product names on AMD64 and ia64
2238 This appears to matter to Vista. Dunno why.
2240 Signed-off-by: Keith Packard <keithp@keithp.com>
2242 commit 16980b848651a6b20a0b458446f0a19fb517539d
2243 Author: Keith Packard <keithp@keithp.com>
2244 Date: Thu Sep 9 15:10:25 2010 -0700
2246 altosui: Add explicit requirement to create classes directory
2248 The implicit ordering doesn't appear reliable.
2250 Signed-off-by: Keith Packard <keithp@keithp.com>
2252 commit 15da683c2f747baef49c8b8d321a86faede0de30
2253 Author: Bdale Garbee <bdale@gag.com>
2254 Date: Thu Sep 9 15:51:50 2010 -0600
2256 update changelogs for Debian build
2258 commit 012e7176954a6b74b3b667317be0f6dc41d7ab70
2259 Author: Bdale Garbee <bdale@gag.com>
2260 Date: Thu Sep 9 15:51:02 2010 -0600
2262 add libtool to build deps
2264 commit 3e5824b9a71971ce99bfe38a1e860b421e265f02
2265 Author: Bdale Garbee <bdale@gag.com>
2266 Date: Thu Sep 9 15:43:47 2010 -0600
2268 update changelogs for Debian build
2270 commit ddc83b4c401be965a9947782becf20cc8c54e6a2
2271 Merge: afea6c2 3d49d5f
2272 Author: Anthony Towns <aj@erisian.com.au>
2273 Date: Sun Sep 5 20:49:34 2010 +1000
2275 Merge branch 'master' of git://git.gag.com/fw/altos
2277 commit 3d49d5f69b41c27003dbc5ccf1899014bd13bd99
2278 Author: Keith Packard <keithp@keithp.com>
2279 Date: Sun Sep 5 02:05:06 2010 -0700
2281 altosui: ensure that 'altosui' script is installed. Pass arguments along.
2283 Signed-off-by: Keith Packard <keithp@keithp.com>
2285 commit b61fec225ada6a9e252e4c7920101ee18c77cbdc
2286 Author: Keith Packard <keithp@keithp.com>
2287 Date: Sun Sep 5 01:55:56 2010 -0700
2289 altosui: eeprom files place 'boost' time in the flight number record.
2291 Instead of looking for the first state change record, use the Flight
2292 record to get the boost tick.
2294 Signed-off-by: Keith Packard <keithp@keithp.com>
2296 commit 6c653a4cba5fef8d49261cf1c024f3e86e9058c6
2297 Author: Keith Packard <keithp@keithp.com>
2298 Date: Sun Sep 5 01:52:36 2010 -0700
2300 altosui: Record flight number when scanning file, not when running
2302 The very first record in the eeprom is the flight number, but it is
2303 time-stamped with the 'boost' time, and so it gets sorted until much
2304 later, delaying the return of data until the rocket enters boost
2305 mode. This drops all of the nice pad GPS and state date on the floor.
2307 Signed-off-by: Keith Packard <keithp@keithp.com>
2309 commit 38e1d87c8d449866faac026577fefa9a118428cb
2310 Author: Keith Packard <keithp@keithp.com>
2311 Date: Sun Sep 5 01:23:53 2010 -0700
2313 altosui: Use local .class files in the classpath
2315 This ensures that compiling only a few changed files will
2316 locate the old .class files instead of using a stale .jar file.
2318 commit 9941b05a1d03dafd6cd899b5fe999ed769efb1d6
2319 Author: Keith Packard <keithp@keithp.com>
2320 Date: Sun Sep 5 01:21:14 2010 -0700
2322 altosui: Prevent voice altitude data from queueing up
2324 When flight status changes rapidly, the queue of voice data can get
2325 quite long. This change does two things -- first, it remembers when
2326 the altitude reporting happens due to flight events and delays the
2327 periodic reporting until a suitable time after that, second it ensures
2328 that the voice data has all been delivered before generating a new
2331 Signed-off-by: Keith Packard <keithp@keithp.com>
2333 commit 4dec5c36702d76dc95beada7c1d3222a638a2cbb
2334 Author: Keith Packard <keithp@keithp.com>
2335 Date: Sun Sep 5 01:19:11 2010 -0700
2337 altosui: Add AltosVoice.drain() to wait for queued speech to finish
2339 drain() blocks until all pending phrases have been processed, allowing
2340 the UI code to avoid pending data that will end up stale by the time
2343 Signed-off-by: Keith Packard <keithp@keithp.com>
2345 commit 410ba89eef9c9817eef81b702966cb88820ff7c4
2346 Author: Keith Packard <keithp@keithp.com>
2347 Date: Sun Sep 5 01:13:01 2010 -0700
2349 altosui: Start idle thread after the rocket leaves the pad
2351 This makes the first altitude report time consistently 10 seconds
2352 after launch, instead of some random time depending on when the rocket
2353 launched relative to the time the device connection was made.
2355 Signed-off-by: Keith Packard <keithp@keithp.com>
2357 commit 6205547ec7191aab0259a8449520e966a96129e6
2358 Author: Keith Packard <keithp@keithp.com>
2359 Date: Sun Sep 5 01:08:50 2010 -0700
2361 altosui: When replay thread is interrupted, don't make final report
2363 Normally, the replay process makes one final report after the file has
2364 been parsed. However, if the reading process is interrupted to display
2365 something else, this report is just annoying, so don't make it.
2367 Signed-off-by: Keith Packard <keithp@keithp.com>
2369 commit 3d99584fcfe43b22e8581874e0ac77ce3d635d48
2370 Author: Keith Packard <keithp@keithp.com>
2371 Date: Sun Sep 5 01:03:18 2010 -0700
2373 altosui: Add elevation and range data to main display
2375 Reported by voice, it's useful to see these on the display as well.
2377 Signed-off-by: Keith Packard <keithp@keithp.com>
2379 commit 2d58f319a7c1a6a8ccc6a539722009996ba886ab
2380 Author: Keith Packard <keithp@keithp.com>
2381 Date: Sun Sep 5 01:01:10 2010 -0700
2383 altosui: Eeprom files contain only one date; save it.
2385 While reading eeprom files, the GPS record is reconstructed each time
2386 the system sees the first GPS log item (the time field), but as the
2387 date isn't repeated, we need to copy it from the old GPS data record.
2389 Signed-off-by: Keith Packard <keithp@keithp.com>
2391 commit b2aa689bf3d61e4a3ebe7c828162d1be20aad0f6
2392 Author: Keith Packard <keithp@keithp.com>
2393 Date: Sun Sep 5 00:59:54 2010 -0700
2395 altosui: Remove debugging printf from AltosEepromReader
2397 These were in place while validing the GPS data reconstruction code
2398 that handles eeprom files missing the first GPS date line due to the
2399 record overwriting bug in old firmware versions.
2401 Signed-off-by: Keith Packard <keithp@keithp.com>
2403 commit eb0e7a59f0806734a4c959a3ce7c57f71cbe3986
2404 Author: Keith Packard <keithp@keithp.com>
2405 Date: Sun Sep 5 00:57:38 2010 -0700
2407 altosui: Return AO_LOG_INVALID instead of exception for eeprom files
2409 When an eeprom file contains an invalid line, just return
2410 AO_LOG_INVALID instead of throwing an exception. This allows us to
2411 replay and parse files with extraneous serial communication.
2413 Signed-off-by: Keith Packard <keithp@keithp.com>
2415 commit c3a17c71a45207dd715d537704f161de9219f0d7
2416 Author: Keith Packard <keithp@keithp.com>
2417 Date: Sat Sep 4 18:49:22 2010 -0700
2419 altosui: Fix linux fat distribution
2421 Again, use 'cp -p' instead of 'cp -a' to get files into the archive
2422 instead of links. Also, make the shell script 'altosui' instead of
2425 Signed-off-by: Keith Packard <keithp@keithp.com>
2427 commit 828e9e4c68e3ac90b6ba2e9fd5f131a9975f7e4a
2428 Author: Keith Packard <keithp@keithp.com>
2429 Date: Sat Sep 4 18:39:58 2010 -0700
2431 altosui: Fix up Mac OSX .zip file
2433 Must contain 'altosui.jar' instead of altosui-fat.jar.
2434 Also, was using 'cp -a' instead of 'cp -p' which made files
2435 represented by symlinks not end up in the archive.
2437 Signed-off-by: Keith Packard <keithp@keithp.com>
2439 commit 044fd27449c70474f51b99dec25fd23d3c03a559
2440 Author: Keith Packard <keithp@keithp.com>
2441 Date: Sat Sep 4 18:20:45 2010 -0700
2443 altosui: Fix windows installer to ship correct files
2445 Was shipping altosui.jar instead of altosui-fat.jar
2447 Signed-off-by: Keith Packard <keithp@keithp.com>
2449 commit 148b927c3b8bc7b7b5c5356392032faf2b1203d3
2450 Author: Keith Packard <keithp@keithp.com>
2451 Date: Sat Sep 4 18:04:04 2010 -0700
2453 Add top-level 'fat' target to aid building distribution files
2455 Signed-off-by: Keith Packard <keithp@keithp.com>
2457 commit aed59e1c057c13e28fd368dc2592aa4628211097
2458 Author: Keith Packard <keithp@keithp.com>
2459 Date: Sat Sep 4 17:59:11 2010 -0700
2461 Add version numbers to released files. Set version to 0.7.1
2463 Instead of using git revision counts for version numbers, use explicit
2464 versions numbers configured in the configure.ac file. Expose published
2465 files with version numbers.
2467 Signed-off-by: Keith Packard <keithp@keithp.com>
2469 commit 2808bba3efa1cff133cc060dabff06fab8b75388
2470 Author: Keith Packard <keithp@keithp.com>
2471 Date: Sat Sep 4 17:58:52 2010 -0700
2473 Ignore libtool files.
2475 commit bc183400ab93d5902c52851319999cc77f27bc81
2476 Author: Keith Packard <keithp@keithp.com>
2477 Date: Sat Sep 4 17:35:17 2010 -0700
2479 altos: add some SDCDB config files
2481 commit 887b11f6b9c81b9f15348d54017e700ca7dc5e55
2482 Author: Keith Packard <keithp@keithp.com>
2483 Date: Sat Sep 4 17:27:17 2010 -0700
2485 Use autotools for altosui and libaltos
2487 This switches from hand-written Makefiles to automake with libtool
2488 for these parts of the system.
2490 Signed-off-by: Keith Packard <keithp@keithp.com>
2492 commit e844e8a0695e27af6f8e3e37a5e3bcc865b862e3
2493 Author: Keith Packard <keithp@keithp.com>
2494 Date: Sat Sep 4 01:13:42 2010 -0700
2496 altosui: Add icons to application and Windows menus.
2498 Use the altus-metrum icon for an application icon and a windows start
2501 Signed-off-by: Keith Packard <keithp@keithp.com>
2503 commit e9ea28504c646fc25791aab09b9e5faf73e0ac0c
2504 Author: Keith Packard <keithp@keithp.com>
2505 Date: Sat Sep 4 01:08:34 2010 -0700
2507 icon: add some icons for application programs
2509 altus-metrum.ico: Windows ICO file
2510 altus-metrum-16x16.jpg: 16x16 jpg image for java
2512 Signed-off-by: Keith Packard <keithp@keithp.com>
2514 commit f550677df016070430ed38bfa2b2be33f1b8c40a
2515 Author: Keith Packard <keithp@keithp.com>
2516 Date: Sat Sep 4 00:16:41 2010 -0700
2518 altosui: oops. renamed the nsis file to altos-windows.nsi
2520 And forgot to change the dependency in the Makefile
2522 Signed-off-by: Keith Packard <keithp@keithp.com>
2524 commit c0988ddbf104ea729090c2e7e2a28cc6dc9e90f6
2525 Author: Keith Packard <keithp@keithp.com>
2526 Date: Sat Sep 4 00:14:15 2010 -0700
2528 altosui: ignore built files
2530 commit ecb4a09535b6a8da0765010489a96e605dbdeb46
2531 Author: Keith Packard <keithp@keithp.com>
2532 Date: Sat Sep 4 00:13:11 2010 -0700
2534 altosui: Add windows installer build using 'nsis'
2536 nsis happens to be packaged in debian, and it appears to build usable
2537 installers, which is all very cool.
2539 Signed-off-by: Keith Packard <keithp@keithp.com>
2541 commit bf22923cd8b4f6f954718358b411b5b10d8e7b4d
2542 Author: Bdale Garbee <bdale@gag.com>
2543 Date: Sat Sep 4 00:46:29 2010 -0400
2545 update changelogs for Debian build
2547 commit 59798c6fd11502a9c8b66090c23ba50eb250692e
2548 Author: Keith Packard <keithp@keithp.com>
2549 Date: Fri Sep 3 12:43:45 2010 -0700
2551 altosui: Catch I/O errors on telemetry device, report to user
2553 This catches the USB device being unplugged and makes sure the
2554 user sees an error dialog in this case.
2556 Signed-off-by: Keith Packard <keithp@keithp.com>
2558 commit 16d8d6a8853d09f683b13f9cda3c3174a0aab130
2559 Author: Keith Packard <keithp@keithp.com>
2560 Date: Fri Sep 3 12:31:05 2010 -0700
2562 altosui: Must flush serial line after configuring for telemetry
2564 Without flushing the configuration commands to the serial device, it
2565 never sees them as the telemetry input thread doesn't flush.
2567 Signed-off-by: Keith Packard <keithp@keithp.com>
2569 commit d4f64e95e31e2335470efc15df2ab357b7d197f3
2570 Author: Keith Packard <keithp@keithp.com>
2571 Date: Fri Sep 3 11:48:55 2010 -0700
2573 Revert "altosui: Deal with altos bug setting radio channel while monitoring"
2575 This reverts commit ba65e4aeb952a1cf49a77f1e24e235508fcea71f.
2577 Testing the old code
2579 commit 71191ecef3ba0e00d0f8a7cd1a24982bfa44ec72
2580 Author: Keith Packard <keithp@keithp.com>
2581 Date: Fri Sep 3 01:30:33 2010 -0700
2583 altosui: Allow 'connect to device' when already connected
2585 Opening another serial device involves shutting down the display
2586 thread (to reset its state) and spawning another one. Shutting down
2587 the display thread normally closes the serial device as a part of the
2588 process, and if this isn't done before the new serial device is
2589 opened, then the new serial device ends up getting closed too.
2591 Interrupting the display thread and waiting for it to stop before
2592 opening the new serial device solves the problem.
2594 Signed-off-by: Keith Packard <keithp@keithp.com>
2596 commit ba65e4aeb952a1cf49a77f1e24e235508fcea71f
2597 Author: Keith Packard <keithp@keithp.com>
2598 Date: Fri Sep 3 01:21:57 2010 -0700
2600 altosui: Deal with altos bug setting radio channel while monitoring
2602 If the monitoring thread is active, then setting the radio channel can
2603 sometimes cause the monitoring thread to get stuck. I'm not entirely
2604 sure why though. For now, work around the issue by making sure
2605 monitoring is off, and the monitoring thread has stopped, before
2606 changing the radio channel.
2608 Signed-off-by: Keith Packard <keithp@keithp.com>
2610 commit e5ef42c2b22c6639d90631dbbb588f9fd2494385
2611 Author: Keith Packard <keithp@keithp.com>
2612 Date: Fri Sep 3 01:12:24 2010 -0700
2614 altosui: Report telemetry CRC errors in UI
2616 Telemetry CRC errors can signal problems with TeleMetrum or TeleDongle
2617 units, so report them in the UI.
2619 Signed-off-by: Keith Packard <keithp@keithp.com>
2621 commit 3b3aa448f3a0f44137f7530b04b58967ba5f22f5
2622 Author: Keith Packard <keithp@keithp.com>
2623 Date: Thu Sep 2 21:11:29 2010 -0700
2625 altosui: build Mac OS .zip file to include paths
2627 Without the paths, the OS X zip file doesn't create a usable
2628 application structure.
2630 Signed-off-by: Keith Packard <keithp@keithp.com>
2632 commit cff0d1ef6b338b3d5ad9450d4d5f95df934cb5e4
2633 Author: Keith Packard <keithp@keithp.com>
2634 Date: Wed Sep 1 22:56:34 2010 -0700
2636 altosui: Post error dialog on invalid ROM config values.
2638 Signed-off-by: Keith Packard <keithp@keithp.com>
2640 commit 8d8980f56a4f2c7d6f2ce667130706e0f04f8ded
2641 Author: Keith Packard <keithp@keithp.com>
2642 Date: Wed Sep 1 22:56:12 2010 -0700
2644 altosui: Remove some debug printfs from AltosRomconfig class
2646 Signed-off-by: Keith Packard <keithp@keithp.com>
2648 commit 5ee6cd41ed189c3166f76558ecada80917f40652
2649 Author: Keith Packard <keithp@keithp.com>
2650 Date: Wed Sep 1 22:47:15 2010 -0700
2652 altosui: Hide internal rom config UI helper function
2654 This was getting mis-used by the flash UI causing the rom dialog
2655 'cancel' button to work just like 'ok'.
2657 Signed-off-by: Keith Packard <keithp@keithp.com>
2659 commit 9a690c9795e8257d2a3225f905117681668a472f
2660 Author: Keith Packard <keithp@keithp.com>
2661 Date: Wed Sep 1 22:46:04 2010 -0700
2663 altosui: allow flashing to be canceled from the rom config dialog
2665 Was using the rom config class wrong, causing cancel actions to work
2666 just like 'ok' actions. Oops.
2668 Signed-off-by: Keith Packard <keithp@keithp.com>
2670 commit 2f07ad14a16dbf1b75c71784ceae303825c90ade
2671 Author: Keith Packard <keithp@keithp.com>
2672 Date: Wed Sep 1 22:43:22 2010 -0700
2674 altosui: Abort flashing if debug port isn't working
2676 Check each command going over the debug port and make sure it works as
2677 expected. This commit adds checks for initializing the clock,
2678 selecting the desired program counter and running the flash
2681 Signed-off-by: Keith Packard <keithp@keithp.com>
2683 commit cf30343aadd5039627a85319872685f743e64b16
2684 Author: Bdale Garbee <bdale@gag.com>
2685 Date: Thu Sep 2 00:55:41 2010 -0400
2687 update changelogs for Debian build
2689 commit 59a40f6d5a2159b9009a3fa0737bb679efd5b32c
2690 Author: Bdale Garbee <bdale@gag.com>
2691 Date: Thu Sep 2 00:55:01 2010 -0400
2693 another distclean fix
2695 commit 59ff9180f11063c257746b895a167179b3a4ff7c
2696 Author: Bdale Garbee <bdale@gag.com>
2697 Date: Thu Sep 2 00:53:16 2010 -0400
2699 and a few more distclean fixes
2701 commit 3aafd70257b70b7c11ba9c55749157979bc61ea2
2702 Author: Bdale Garbee <bdale@gag.com>
2703 Date: Thu Sep 2 00:52:04 2010 -0400
2705 more makefile distclean target work
2707 commit d5a6ad87c7a9ac03b2e694bed0a54b6cc4322a6f
2708 Author: Bdale Garbee <bdale@gag.com>
2709 Date: Thu Sep 2 00:50:16 2010 -0400
2711 update changelogs for Debian build
2713 commit 14fa24ed93b3b1cec08a170004c6fb7f4d74f7e5
2714 Author: Bdale Garbee <bdale@gag.com>
2715 Date: Thu Sep 2 00:48:31 2010 -0400
2717 update changelogs for Debian build
2719 commit 83552dfa0d38db9cdf3efc89e64e6c7896467856
2720 Author: Bdale Garbee <bdale@gag.com>
2721 Date: Thu Sep 2 00:47:54 2010 -0400
2723 add distclean targets to libaltos and altosui to all Debian package to build
2725 commit 6f24d2a476759104a10b26b54faff2b18b0e208b
2726 Author: Bdale Garbee <bdale@gag.com>
2727 Date: Thu Sep 2 00:46:21 2010 -0400
2729 update changelogs for Debian build
2731 commit d079bfe86ed40ff450ece445cf5f5e3970e44cec
2732 Author: Bdale Garbee <bdale@gag.com>
2733 Date: Thu Sep 2 00:44:30 2010 -0400
2735 update changelogs for Debian build
2737 commit a470315e5d822a69ef5304512cf73c604c88e481
2738 Author: Keith Packard <keithp@keithp.com>
2739 Date: Wed Sep 1 20:14:51 2010 -0700
2741 altosui: Remove Manifest.txt from git repo as it's built now
2743 This file is built with appropriate contents for each different .jar file.
2745 Signed-off-by: Keith Packard <keithp@keithp.com>
2747 commit 1177e0a684328422be5adc68093d0091a218a824
2748 Author: Keith Packard <keithp@keithp.com>
2749 Date: Wed Sep 1 19:53:24 2010 -0700
2751 altos: Bounds check Skytraq GPS tracking data array
2753 Missing GPS serial data could cause the tracking array reset to
2754 get skipped, causing the array to be overrun, smashing critical data
2757 This was detected using the 'altosui' flash command to program a
2758 device from TM. Hitting the USB that hard caused TM to crash with a
2759 mutex error (3 beeps) after the ao_gps_task structure was overwritten
2762 Signed-off-by: Keith Packard <keithp@keithp.com>
2764 commit 775acb89660cdee2f3c54c38297baefe39f2414c
2765 Author: Keith Packard <keithp@keithp.com>
2766 Date: Mon Aug 30 22:24:09 2010 -0700
2768 altosui: missed AltosReader.class in the Makefile
2770 This caused clean builds to fail to make this file
2772 Signed-off-by: Keith Packard <keithp@keithp.com>
2774 commit bd2b9d958c2b7f846031b076ed51c4fbaaf2d68f
2775 Author: Bdale Garbee <bdale@gag.com>
2776 Date: Tue Aug 31 00:20:06 2010 -0400
2778 update changelogs for Debian build
2780 commit d006c5e1255433181aca4c8e6a277b2d1bc0841b
2781 Author: Bdale Garbee <bdale@gag.com>
2782 Date: Tue Aug 31 00:19:37 2010 -0400
2784 add runtime dependencies for altos binary package
2786 commit c1c7d731e3774883fa0bb5538be225a59334d124
2787 Author: Bdale Garbee <bdale@gag.com>
2788 Date: Mon Aug 30 19:52:51 2010 -0600
2790 update changelogs for Debian build
2792 commit c35632efb1919764e4b8581ed6fcf2bedd4bd517
2793 Author: Bdale Garbee <bdale@gag.com>
2794 Date: Mon Aug 30 19:37:50 2010 -0600
2796 update changelogs for Debian build
2798 commit 2a004d17a13b4ff52d892bfdecff8ad3d0823f7c
2799 Author: Bdale Garbee <bdale@gag.com>
2800 Date: Mon Aug 30 19:37:17 2010 -0600
2802 don't build all the "fat" jar deliverables by default
2804 commit 507e429db6638f82c32449e9c5ca06b46da30134
2805 Author: Bdale Garbee <bdale@gag.com>
2806 Date: Mon Aug 30 19:09:00 2010 -0600
2808 update changelogs for Debian build
2810 commit 25764fcd1b65c3a5a817afdb5901ac30e8a5f0c0
2811 Author: Bdale Garbee <bdale@gag.com>
2812 Date: Mon Aug 30 19:08:29 2010 -0600
2814 update changelogs for Debian build
2816 commit 4790f78aead8a816e5b247c022b2998ce3a94053
2817 Author: Bdale Garbee <bdale@gag.com>
2818 Date: Mon Aug 30 18:48:50 2010 -0600
2820 add a .gitattributes file, configuring the Mac and Windows binary library
2821 files with the export-ignore attribute, in hopes that this will prevent
2822 them showing up in source packages
2824 commit 81318e5b7179b0311ab099043ecb04a25d763750
2825 Author: Bdale Garbee <bdale@gag.com>
2826 Date: Mon Aug 30 18:15:40 2010 -0600
2828 make invocation of 'install' pathless to work on more Unix variants
2830 commit cbc72399a0f4d7429df0189bcdae683dd491cb9e
2831 Author: Bdale Garbee <bdale@gag.com>
2832 Date: Mon Aug 30 17:56:56 2010 -0600
2834 continue even if rm's don't have anything to do
2836 commit a9a8d23c877e6f6c76857b7c85e3d43b4da1db27
2837 Author: Keith Packard <keithp@keithp.com>
2838 Date: Mon Aug 30 05:49:11 2010 -0700
2840 altosui: Devices with USB id 0x000a always get listed
2842 List 'unknown' AltusMetrum devices anytime the UI needs a device
2845 Signed-off-by: Keith Packard <keithp@keithp.com>
2847 commit a94900b8862b99b4e317ea0ee3edd2a560f270c7
2848 Author: Keith Packard <keithp@keithp.com>
2849 Date: Mon Aug 30 05:48:23 2010 -0700
2851 altosui: build debian-style altosui too
2853 This adds the dependencies to make sure altosui and altosui.jar get built.
2855 Signed-off-by: Keith Packard <keithp@keithp.com>
2857 commit 38ac388baf8125c0644b868a7aaf8eba1bdf990d
2858 Author: Keith Packard <keithp@keithp.com>
2859 Date: Mon Aug 30 05:28:37 2010 -0700
2861 altosui: Build linux, mac and windows archives on Linux
2863 This adds 'fat' archives for each target OS.
2865 Signed-off-by: Keith Packard <keithp@keithp.com>
2867 commit 35d9a8214252dbe79aeb69ae47d2e5c58a654702
2868 Author: Keith Packard <keithp@keithp.com>
2869 Date: Mon Aug 30 05:27:45 2010 -0700
2871 libaltos: Use overlapped I/O on windows
2873 Otherwise, reads block writes and vice-versa. Crazy stuff.
2875 Signed-off-by: Keith Packard <keithp@keithp.com>
2877 commit c7ba92317ac55272acbde12416448ebd17b983a6
2878 Author: Keith Packard <keithp@keithp.com>
2879 Date: Mon Aug 30 04:52:00 2010 -0700
2881 altos: Windows sends USB Out packets of 0 length. Ack them.
2883 This was an untested case as no other operating system sents 0-length
2884 out packets (they're not necessary). The correct response is to ACK
2885 them by clearing the OUTPKT_RDY bit so that another packet can be sent.
2887 Signed-off-by: Keith Packard <keithp@keithp.com>
2889 commit 20a472cfe3369200150ea4ff067ceb28968dbcac
2890 Author: Keith Packard <keithp@keithp.com>
2891 Date: Mon Aug 30 02:58:23 2010 -0700
2893 libaltos: Add pre-built Windows .dll
2895 This lets us create the windows distribution on Linux.
2897 Signed-off-by: Keith Packard <keithp@keithp.com>
2899 commit 0300fe581c949232bc52b05fe9c1f6032cad6b60
2900 Author: Keith Packard <keithp@keithp.com>
2901 Date: Mon Aug 30 02:56:25 2010 -0700
2903 libaltos: Add pre-built Mac OS X libaltos.dylib
2905 This allows the mac bits to be built on Linux.
2907 Signed-off-by: Keith Packard <keithp@keithp.com>
2909 commit 5d48c494325524bbeed10e0dc7300ed44e7e208e
2910 Author: Keith Packard <keithp@keithp.com>
2911 Date: Mon Aug 30 02:53:26 2010 -0700
2913 Update telemetrum.inf to include all current USB ids.
2915 Windows 7 has 'encouraged' us to split out each product into a
2916 separate USB ID. telemetrum.inf now has all of them listed.
2918 Signed-off-by: Keith Packard <keithp@keithp.com>
2920 commit df34bbe7d1c43b12ab6d610fe810b6e1683e4c21
2921 Author: Keith Packard <keithp@keithp.com>
2922 Date: Mon Aug 30 02:49:49 2010 -0700
2924 libaltos: Improve Makefile
2926 Builds Windows .dll correctly now and sample app.
2927 Moves linux install target to end so it is not default
2928 Adds .NOTPARALLEL to disable parallel gnumake.
2929 Removes -g debugging flags to shrink file size.
2931 Signed-off-by: Keith Packard <keithp@keithp.com>
2933 commit dd5374b8e660012ae4f8b058454fd101e0749ca7
2934 Author: Keith Packard <keithp@keithp.com>
2935 Date: Mon Aug 30 02:00:30 2010 -0700
2937 libaltos: Fix windows build.
2939 Need stdlib.h to get calloc/free defined, remove debug printfs, fix
2942 Signed-off-by: Keith Packard <keithp@keithp.com>
2944 commit 63c832394a829f41b8f77d075786530536360349
2945 Author: Keith Packard <keithp@keithp.com>
2946 Date: Sun Aug 29 23:22:27 2010 -0700
2948 altos: shut down packet mode cleanly
2950 Instead of constantly bashing the packet master thread, let it shut
2951 itself down in an orderly fashion. It will shut down fairly quickly as
2952 all of the activities in that thread are bounded. Otherwise, the
2953 master packet thread might leave mutexes locked and all sorts of other
2956 Tested on Linux and Mac OS X and shown to be reliable.
2958 Signed-off-by: Keith Packard <keithp@keithp.com>
2960 commit 43619c13f749b79c096d1e8fdab3d5cfb5fd85f1
2961 Author: Keith Packard <keithp@keithp.com>
2962 Date: Sun Aug 29 22:42:23 2010 -0700
2964 altos: Abort radio harder when terminating packet mode.
2966 Make sure the master radio tasks don't get stuck waiting for an
2967 incoming packet again by aborting the radio each time we poke the
2970 Signed-off-by: Keith Packard <keithp@keithp.com>
2972 commit c4a8569f61eddf690d00337543462235ecbfbe54
2973 Author: Keith Packard <keithp@keithp.com>
2974 Date: Sun Aug 29 22:41:18 2010 -0700
2976 altos: flush pending output when terminating packet mode
2978 Just in case the last command sent hasn't been transmitted, hang
2979 around for up to a second waiting for the data to get across the link.
2981 Signed-off-by: Keith Packard <keithp@keithp.com>
2983 commit 1acd3c7ec167b1b18e4ea493e5978c938a91cc89
2984 Author: Keith Packard <keithp@keithp.com>
2985 Date: Sun Aug 29 21:45:19 2010 -0700
2987 libaltos: cjnitest needs altos_flush now
2989 commit 6527357d1f0e94faf9e7dacac10a39875131be7c
2990 Author: Keith Packard <keithp@keithp.com>
2991 Date: Sun Aug 29 21:43:46 2010 -0700
2993 libaltos: Missing OS_LDFLAGS on cjnitest build
2995 commit b7fa1ea3338f63b8edcf8aacccb5e519ca0b213f
2996 Author: Keith Packard <keithp@keithp.com>
2997 Date: Sun Aug 29 21:41:40 2010 -0700
2999 libaltos: Mac OS X cannot use 'poll(2)' on serial lines.
3001 Who ships this stuff, anyway? Instead of blocking, we'll poll every 100ms now,
3002 otherwise, we won't be able to abort the read when the device is closed. Yay!
3004 Signed-off-by: Keith Packard <keithp@keithp.com>
3006 commit e60c59123232915e808cee23ef89eb1a38ced34b
3007 Author: Keith Packard <keithp@keithp.com>
3008 Date: Sun Aug 29 21:40:21 2010 -0700
3010 altosui: discard invalid lines while reading Eeprom flight data
3012 This shouldn't happen, but it's easy enough to get back in sync by just
3013 skipping lines with weird contents.
3015 Signed-off-by: Keith Packard <keithp@keithp.com>
3017 commit ae02b1590439d5c8dfb472cf1f83a14fdcfbaf11
3018 Author: Keith Packard <keithp@keithp.com>
3019 Date: Sun Aug 29 21:36:47 2010 -0700
3021 altosui: provide separate flush_input/flush_output for serial. deal with monitor automatically
3023 (yes, this should be two patches, but the diffs in AltosSerial were merged together).
3025 First, this replaces the existing flush/flush_reply mess with two simple functions,
3026 one to flush output to the serial device, making sure that all data written will be seen
3027 while we wait for input. The other sucks any pending input off of the serial line and
3030 Second, AltosSerial now tracks whether the serial line is being used for telemetry
3031 monitoring. If so, it enables monitoring, otherwise it disables it. Eliminates a
3032 bunch of manual state tracking elsewhere.
3034 Signed-off-by: Keith Packard <keithp@keithp.com>
3036 commit edcfb1bdf64772d3b83405ccf99385b8fea5d8e4
3037 Author: Keith Packard <keithp@keithp.com>
3038 Date: Sun Aug 29 17:33:59 2010 -0700
3040 libaltos: AltusMetrum devices use more than one USB ID.
3042 List all usb devices, picking those with AltusMetrum IDs.
3044 Signed-off-by: Keith Packard <keithp@keithp.com>
3046 commit 236685807b63860ad033aa0254ce8f6d8d36d4ef
3047 Author: Bdale Garbee <bdale@gag.com>
3048 Date: Fri Aug 27 22:26:09 2010 -0600
3050 update changelogs for Debian build
3052 commit 1cda15fdef2d9d3e54354bd5c43a0bcc7e3240cb
3053 Author: Bdale Garbee <bdale@gag.com>
3054 Date: Fri Aug 27 22:24:51 2010 -0600
3056 fix up for an 0.7 release
3058 commit 4c5c7c7f198775c398c1ad2edafb3488384cc297
3059 Author: Bdale Garbee <bdale@gag.com>
3060 Date: Fri Aug 27 22:13:38 2010 -0600
3062 update changelogs for Debian build
3064 commit 42055af5c6f17d14a2f1c6a2b5e1ce6d3b45a615
3065 Author: Bdale Garbee <bdale@gag.com>
3066 Date: Fri Aug 27 13:13:19 2010 -0600
3068 update changelogs for Debian build
3070 commit 0bd4cc03b3bf23aa32b5ce1921078021d1d8a9c6
3071 Author: Bdale Garbee <bdale@gag.com>
3072 Date: Fri Aug 27 13:12:46 2010 -0600
3074 fix path to installed shared library
3076 commit 99c1d9b4ef10ec4ebbee058ce0bb38c954a0a3a6
3077 Author: Bdale Garbee <bdale@gag.com>
3078 Date: Fri Aug 27 12:41:26 2010 -0600
3080 update changelogs for Debian build
3082 commit cf65c6b8056c4af7c26b52ec6f9fbd3400cef638
3083 Merge: 5f2f6a8 ae5eff7
3084 Author: Bdale Garbee <bdale@gag.com>
3085 Date: Fri Aug 27 12:38:25 2010 -0600
3087 Merge branch 'bdale'
3092 commit ae5eff7bc0b63047737223423009707bedcb00f5
3093 Author: Bdale Garbee <bdale@gag.com>
3094 Date: Fri Aug 27 12:37:36 2010 -0600
3096 Revert "lose the prebuild hook for now while I'm fumbling"
3098 This reverts commit a21b6bb60ac1c07ebd161534a4ea63bfde50dcdf.
3100 commit de2e71c4923a0282df74dbe37d087c34b4ddd279
3101 Author: Bdale Garbee <bdale@gag.com>
3102 Date: Fri Aug 27 12:25:20 2010 -0600
3104 fix man page delivery path
3106 commit a8dbe082960dc9bdd44c6e4b1198423c4e566029
3107 Author: Bdale Garbee <bdale@gag.com>
3108 Date: Fri Aug 27 12:18:28 2010 -0600
3110 install altosui man page
3112 commit 5cc933039e4763b8675611c63b6147b42878a2bb
3113 Author: Bdale Garbee <bdale@gag.com>
3114 Date: Fri Aug 27 12:16:19 2010 -0600
3116 fix permissions on installed jar file, switch from ao-view to altosui in
3119 commit 138009e9fad01f79df4c3820fbc206f78688bdce
3120 Author: Bdale Garbee <bdale@gag.com>
3121 Date: Fri Aug 27 12:06:01 2010 -0600
3123 update Debian standards version
3125 commit c280071b7db4e9a7af31dc5740eb8d27f137950e
3126 Author: Bdale Garbee <bdale@gag.com>
3127 Date: Fri Aug 27 12:04:13 2010 -0600
3129 fix up the wrapper's path to the jar file
3131 commit 5f2f6a8f9ba56be867888758848bc7f152ccbd47
3132 Merge: 63bd34c 9d1b27f
3133 Author: Keith Packard <keithp@keithp.com>
3134 Date: Fri Aug 27 11:00:31 2010 -0700
3136 Merge remote branch 'origin/master' into new-packet-format
3138 commit 63bd34cd1b5a411489e8c3ab377f0fe0eec11f67
3139 Author: Keith Packard <keithp@keithp.com>
3140 Date: Fri Aug 27 10:58:55 2010 -0700
3142 altosui: add elevation and range information
3144 Signed-off-by: Keith Packard <keithp@keithp.com>
3146 commit 72a18502e40f55cbba6418dc94315517881cd411
3147 Author: Bdale Garbee <bdale@gag.com>
3148 Date: Fri Aug 27 11:51:24 2010 -0600
3150 add an install target for altosui
3152 commit 72c33a72ee105ec692dad62d6d9c1ad40b89bfe8
3153 Author: Bdale Garbee <bdale@gag.com>
3154 Date: Fri Aug 27 11:45:19 2010 -0600
3156 add install target for libaltos
3158 commit a21b6bb60ac1c07ebd161534a4ea63bfde50dcdf
3159 Author: Bdale Garbee <bdale@gag.com>
3160 Date: Fri Aug 27 11:26:29 2010 -0600
3162 lose the prebuild hook for now while I'm fumbling
3164 commit 9ea94411c9730f7a271366d309ab4827beeeb839
3165 Author: Bdale Garbee <bdale@gag.com>
3166 Date: Fri Aug 27 11:17:54 2010 -0600
3168 add a dummy install target
3170 commit c443f43f8dee6e0fcbcecf9d09e948fd928b7af4
3171 Merge: 2950431 2923cf5
3172 Author: Bdale Garbee <bdale@gag.com>
3173 Date: Fri Aug 27 03:08:53 2010 -0600
3175 Merge branch 'new-packet-format' of ssh://git.gag.com/scm/git/fw/altos into new-package-format
3177 commit 2923cf5057f9cef110dd547d8677ea5b60e00796
3178 Author: Keith Packard <keithp@keithp.com>
3179 Date: Fri Aug 27 00:10:29 2010 -0700
3181 altos: prepare for sdcc 2.9.1
3183 A few minor language changes -- non-standard keywords are now prefixed
3184 with __, such as 'at', 'interrupt', 'naked'.
3186 Signed-off-by: Keith Packard <keithp@keithp.com>
3188 commit 68967157cee620ebedcc8c2ffd6fc7656532087b
3189 Author: Keith Packard <keithp@keithp.com>
3190 Date: Thu Aug 26 23:55:44 2010 -0700
3192 altosui: command line args are converted to csv format
3194 Signed-off-by: Keith Packard <keithp@keithp.com>
3196 commit 7e0506dc2014b7178f52b950e8c1cb820b35f9c6
3197 Author: Keith Packard <keithp@keithp.com>
3198 Date: Thu Aug 26 23:54:53 2010 -0700
3200 altosui: Remove debug printf from AltosState.java
3202 Signed-off-by: Keith Packard <keithp@keithp.com>
3204 commit 49364608b59de7421ab00d87d2685bc3b5f58411
3205 Author: Keith Packard <keithp@keithp.com>
3206 Date: Thu Aug 26 23:53:06 2010 -0700
3208 altosui: When parsing saved telem files, errors shouldn't abort file
3210 Make syntax errors in telem files just skip the current line and move
3211 on to the next one instead of abandoning the whole file.
3213 Signed-off-by: Keith Packard <keithp@keithp.com>
3215 commit a16db143fc7ca72dc91e7989420049192114642d
3216 Author: Keith Packard <keithp@keithp.com>
3217 Date: Thu Aug 26 23:50:51 2010 -0700
3219 altosui: Serial line is in UTF-8 encoding. Deal with it.
3221 We read bytes from the serial line and need to convert each line into
3222 a string. So, save the bytes and at EOL, pass the whole mess to the
3223 string constructor with the appropriate encoding info.
3225 Signed-off-by: Keith Packard <keithp@keithp.com>
3227 commit 0942912163255523d923140c01afbdb5da1c19b5
3228 Author: Keith Packard <keithp@keithp.com>
3229 Date: Thu Aug 26 23:49:37 2010 -0700
3231 altosui: Add support for old (version < 3) telemetry files
3233 This lets the code read telemetry files from pre-released versions of
3234 the software. Not strictly necessary for production, but useful for
3235 analysing old files.
3237 Signed-off-by: Keith Packard <keithp@keithp.com>
3239 commit e383595cd281687de903fb6176564bbef270cb83
3240 Author: Keith Packard <keithp@keithp.com>
3241 Date: Thu Aug 26 23:47:38 2010 -0700
3243 altosui: AltosEepromReader was mis-setting boost tick
3245 It was supposed to use record.tick instead of the (unset) state.tick
3248 Signed-off-by: Keith Packard <keithp@keithp.com>
3250 commit 651f6102ac79459fc8d5679d852c963dcb5bb3fc
3251 Author: Keith Packard <keithp@keithp.com>
3252 Date: Thu Aug 26 23:44:25 2010 -0700
3254 altosui: add rssi and distance/dir from pad to CSV files
3256 Just adds a couple more fields to the CSV files that might be interesting.
3258 Signed-off-by: Keith Packard <keithp@keithp.com>
3260 commit 3dc67c1401976d6e9e2e942d5a4707a4810a0404
3261 Author: Keith Packard <keithp@keithp.com>
3262 Date: Thu Aug 26 23:43:00 2010 -0700
3264 altosui: Add AltosGreatCircle constructors
3266 This adds constructurs from AltosGPS pairs and also one from empty
3267 args (which defines both distance and bearing as 0).
3269 Signed-off-by: Keith Packard <keithp@keithp.com>
3271 commit f0fd423d0bf83bc5c3f9d39e9c09397fbe8caed2
3272 Author: Keith Packard <keithp@keithp.com>
3273 Date: Thu Aug 26 23:41:26 2010 -0700
3275 altosui: Move number parsing code to Altos general class
3277 This moves these shared functions to the global shared class.
3279 Signed-off-by: Keith Packard <keithp@keithp.com>
3281 commit 68b2b66d7574dfd0bd5e3571b8ffad32ca5d2b73
3282 Author: Keith Packard <keithp@keithp.com>
3283 Date: Thu Aug 26 23:37:29 2010 -0700
3285 altos: mark gps date written only after it gets into eeprom
3287 Data logging doesn't start until boost detect occurs. As the GPS date
3288 is only logged once, if that happens before logging is written to the
3289 flash, then the GPS date will never get saved.
3291 Signed-off-by: Keith Packard <keithp@keithp.com>
3293 commit aa6c27df5db6bdae59d00affccb891854a6caa18
3294 Author: Keith Packard <keithp@keithp.com>
3295 Date: Thu Aug 26 15:59:09 2010 -0700
3297 altos: print GPS state flags in GPS 'g' command
3299 Having the GPS state information can help with GPS debugging.
3301 Signed-off-by: Keith Packard <keithp@keithp.com>
3303 commit 34055129b4008f6a9833887b12dee39ffa408002
3304 Author: Keith Packard <keithp@keithp.com>
3305 Date: Thu Aug 26 15:57:09 2010 -0700
3307 altos: always rebuild ao_product.c to track git version
3309 The git version is built into ao_product.c and saved in eeprom log
3310 files, providing useful diagnostics about the firmware revision used
3311 for each flight. However, if ao_product.c isn't recompiled, then the
3312 updated version won't be included. Force recompilation of this file
3313 each time make is run to ensure that the final output contains an
3314 updated version number.
3316 Signed-off-by: Keith Packard <keithp@keithp.com>
3318 commit 99400fdc0f19ef538fc362dde5c3ab5b7cdac409
3319 Author: Keith Packard <keithp@keithp.com>
3320 Date: Tue Aug 24 16:43:38 2010 -0700
3322 altosui: flush replies from serial link when entering debug mode
3324 We use replies in debug mode a lot and depend on them matching the
3325 expected parameters. The case which caused trouble was using
3326 TeleMetrum to reprogram TeleDongle -- sending the 'm 0' command (to
3327 disable telemetry monitoring on TeleDongle) to the TeleMetrum caused
3328 it to reply 'Syntax Error' which confused the subsequent flashing
3329 operation. Flushing that reply gets things back in sync.
3331 Signed-off-by: Keith Packard <keithp@keithp.com>
3333 commit ba086cc77273efe5397f60dcaccd1e3771441481
3334 Author: Keith Packard <keithp@keithp.com>
3335 Date: Tue Aug 24 04:02:27 2010 -0700
3337 altosui: write USB serial number string while flashing
3339 USB serial number is encoded in UCS2 as a part of the string
3340 descriptors. Place those right after the other rom config bits so that
3341 altosui can find it. altosui is changed to write the serial number there.
3343 Signed-off-by: Keith Packard <keithp@keithp.com>
3345 commit 220f3afdaa432c65f8ad45be7cdbe5c8a3616db3
3346 Author: Keith Packard <keithp@keithp.com>
3347 Date: Tue Aug 24 04:01:47 2010 -0700
3349 altosui: always display romconfig ui while flashing
3351 commit f62b2aa08ebfd912b3c732397d43ff9f6162ec88
3352 Author: Keith Packard <keithp@keithp.com>
3353 Date: Tue Aug 24 04:01:14 2010 -0700
3355 altosui: fetch existing romconfig for flashing
3357 commit d93787284c8e514a929edb9f944c98ae0206a33f
3358 Author: Keith Packard <keithp@keithp.com>
3359 Date: Tue Aug 24 03:59:09 2010 -0700
3361 altosui: Delay mapping Flash UI until flashing actually starts
3363 The flash operation may be abandoned before it even starts; this makes
3364 sure the UI doesn't flash up on the screen.
3366 Signed-off-by: Keith Packard <keithp@keithp.com>
3368 commit 7d44cbd621d2b113ac2b802ef17e3d8a660ce7f2
3369 Author: Keith Packard <keithp@keithp.com>
3370 Date: Tue Aug 24 03:58:00 2010 -0700
3372 altosui: disable radio monitoring while using serial line for debugging
3374 commit 7bd220dfd9b3fb0e42eb90c3b37eb7b4169eb21b
3375 Author: Keith Packard <keithp@keithp.com>
3376 Date: Tue Aug 24 00:29:11 2010 -0700
3378 altosui: Add ability to create CSV file from telem or eeprom files
3380 This creates a comma separated value file to export data for
3383 Signed-off-by: Keith Packard <keithp@keithp.com>
3385 commit 634a550149e7c344a22a637ba484f115592b1018
3386 Author: Keith Packard <keithp@keithp.com>
3387 Date: Mon Aug 23 23:15:05 2010 -0700
3389 altosui: refactor logfile chooser dialog to share more code
3391 Move file opening logic into logfile chooser as it can be shared that way.
3393 Signed-off-by: Keith Packard <keithp@keithp.com>
3395 commit afea6c264c5ebf12f1d629bd4bc724da86d11b7a
3396 Merge: 0e17853 9d1b27f
3397 Author: Anthony Towns <aj@erisian.com.au>
3398 Date: Tue Aug 24 00:02:31 2010 -0600
3400 Merge branch 'master' of git://git.gag.com/fw/altos
3402 commit a55b132668a819cc26478a609cb79bd9190deb9d
3403 Author: Keith Packard <keithp@keithp.com>
3404 Date: Mon Aug 23 23:01:36 2010 -0700
3406 altosui: Separate out log file choosing dialog to share with CSV generator
3408 This dialog will be shared with the CSV file generating code, so split
3409 it out instead of duplicating it.
3411 Signed-off-by: Keith Packard <keithp@keithp.com>
3413 commit 295043112ccde35092945c286596f9045ee6fa05
3414 Merge: 2007288 ef8376c
3415 Author: Bdale Garbee <bdale@gag.com>
3416 Date: Mon Aug 23 23:11:22 2010 -0600
3418 Merge branch 'new-packet-format' of ssh://git.gag.com/scm/git/fw/altos into new-package-format
3420 commit ef8376c4dd8262a34e02b6bb9e19e907ac2f4330
3421 Author: Keith Packard <keithp@keithp.com>
3422 Date: Mon Aug 23 22:08:30 2010 -0700
3424 altosui: make default Manifest look for built-in freetts
3426 commit 56b906f535ac2f86bcab71addbbcd376d74f6a73
3427 Author: Keith Packard <keithp@keithp.com>
3428 Date: Mon Aug 23 22:03:36 2010 -0700
3430 altos: Place rom config variables in fixed location
3432 The device serial number and radio calibration values are stored in
3433 flash, mostly so that TeleDongle gets them saved.
3435 Placing them in well-known locations (starting at 0xa0) makes it
3436 possible to find the previous configuration and to re-write it
3437 easily, without requiring the .map file.
3439 altosui doesn't have the .map file parsing code, so it relies upon
3440 this new technique. As a benefit, it reads the old values from the
3441 device before reprogramming it.
3443 Signed-off-by: Keith Packard <keithp@keithp.com>
3445 commit 4c0c099716197ef7539be0cf55bbb164f6804958
3446 Author: Keith Packard <keithp@keithp.com>
3447 Date: Mon Aug 23 22:02:21 2010 -0700
3449 altosui: Finish device programming code
3451 Altosui can now reprogram Altusmetrum devices.
3453 Signed-off-by: Keith Packard <keithp@keithp.com>
3455 commit bd2b44ddd61fadd8bf8ee6bf783ce019b1be7cc0
3456 Author: Keith Packard <keithp@keithp.com>
3457 Date: Mon Aug 23 22:01:38 2010 -0700
3459 altosui: Remove debug printf from AltosRomconfig
3461 commit c3f57ffdb6c74de90d982eacd604e658ce9b00a5
3462 Author: Keith Packard <keithp@keithp.com>
3463 Date: Mon Aug 23 22:01:11 2010 -0700
3465 altosui: flush serial output before waiting for reply
3467 commit 8857ac5e43eac6db8d5594b8864df497a712242b
3468 Author: Keith Packard <keithp@keithp.com>
3469 Date: Mon Aug 23 22:00:16 2010 -0700
3471 altosui: remove debug printf from AltosHexfile
3473 commit b1758be01397fd49c441f40852f3558fe9343a2d
3474 Author: Keith Packard <keithp@keithp.com>
3475 Date: Mon Aug 23 21:58:50 2010 -0700
3477 altosui: Add lots more cc1111 debug interface functions
3479 These are sufficient to program the flash.
3481 Signed-off-by: Keith Packard <keithp@keithp.com>
3483 commit f9e80f39bc39e5882bfe75f959b6501cb3277cd2
3484 Author: Keith Packard <keithp@keithp.com>
3485 Date: Mon Aug 23 21:55:49 2010 -0700
3487 libaltos: use pipe to wake up getchar on close. use mutexes
3489 commit 86f7b9314b042f2e512fdf35067817e68532867b
3490 Author: Keith Packard <keithp@keithp.com>
3491 Date: Mon Aug 23 21:54:47 2010 -0700
3493 altosui: pad TM config dialog values to avoid clipping descenders
3495 commit b8519b8669ff54741dd738ac343fbd2424451247
3496 Author: Keith Packard <keithp@keithp.com>
3497 Date: Mon Aug 23 21:53:37 2010 -0700
3499 ao-dumplog: Fix --remote and --channel options to actually work
3501 commit ebeb13688a9a5442c838641ede6ba0dc92c9a1a4
3502 Author: Keith Packard <keithp@keithp.com>
3503 Date: Mon Aug 23 14:32:58 2010 -0700
3505 altosui: Add debug dongle API, split flash UI out
3507 Create an API to talk through the debug port on another AltOS
3508 device. Split the flash UI out from the flash implementation so that a
3509 command line flash utility can be written.
3511 Signed-off-by: Keith Packard <keithp@keithp.com>
3513 commit 7f8d7978606abe544b1b9b6065c5480ed813b8ec
3514 Author: Keith Packard <keithp@keithp.com>
3515 Date: Mon Aug 23 11:53:19 2010 -0700
3517 altosui: Add .ihx file reading code and stub out flashing UI
3519 Signed-off-by: Keith Packard <keithp@keithp.com>
3521 commit 2007288da8a83e3aa925e11cc196f1c65aab2e5c
3522 Author: Bdale Garbee <bdale@gag.com>
3523 Date: Thu Aug 5 15:00:15 2010 -0400
3525 working on java packaging details
3527 commit 44b26dd550eef789e70082ccaa46d7d430c67bce
3528 Author: Bdale Garbee <bdale@gag.com>
3529 Date: Thu Aug 5 15:15:04 2010 -0400
3531 add freetts as a build dep
3533 commit 0e17853c08f77debef3e8cf82e9cdb6a5079fc9b
3534 Author: Keith Packard <keithp@keithp.com>
3535 Date: Sun Aug 22 23:06:15 2010 -0700
3537 altosui: Set callsign when fetching eeprom data over the air
3539 The updated firmware places the callsign in each packet to comply with
3540 regulations, this ensures that TeleDongle has the current callsign
3543 Signed-off-by: Keith Packard <keithp@keithp.com>
3545 commit 953bc3438b10b21f3d65d292356c4ab2de23cddd
3546 Author: Keith Packard <keithp@keithp.com>
3547 Date: Sun Aug 22 23:05:20 2010 -0700
3549 altosui: Add TeleMetrum configuration
3551 This presents a dialog with all of the user-settable options in the
3552 TeleMetrum set for editing. Combo boxes are used for everything except
3555 Signed-off-by: Keith Packard <keithp@keithp.com>
3557 commit e1463d8e265dfd42c824d90088cd2a51b4cf8131
3558 Author: Keith Packard <keithp@keithp.com>
3559 Date: Sat Aug 21 17:57:31 2010 -0700
3561 altosui: Make teledongle callsign configurable
3563 Teledongle uses the callsign in packet mode; this provides a way to
3566 Signed-off-by: Keith Packard <keithp@keithp.com>
3568 commit 09252ec22d58e946494e4ca2cf367bf3bbe1cc50
3569 Author: Keith Packard <keithp@keithp.com>
3570 Date: Sat Aug 21 17:09:41 2010 -0700
3572 altos: Define USB product ID in per-product Makefile.defs file
3574 This allows Win7 to tell which kind of device is connected purely by
3575 USB id as it doesn't expose the USB product ID string to user space.
3577 Signed-off-by: Keith Packard <keithp@keithp.com>
3579 commit 22800dc094797e1e0ad99124198809d0360f7556
3580 Author: Keith Packard <keithp@keithp.com>
3581 Date: Tue Aug 17 18:22:28 2010 -0700
3583 altosui: Select devices by USB vendor/product ID.
3585 Because Win7 doesn't expose the product name, we're swtiching to using
3586 the USB idProduct/idVendor values. This patch adds support for
3587 selecting devices by those new IDs.
3589 Signed-off-by: Keith Packard <keithp@keithp.com>
3591 commit d14c96663a1027164fa30ed89b53f5a9d3fdb82b
3592 Author: Keith Packard <keithp@keithp.com>
3593 Date: Tue Aug 17 18:19:43 2010 -0700
3595 libaltos: integrate Windows support.
3597 This adds Windows support for discovery and I/O.
3599 The API to the library is mostly unchanged, except that it now exports
3600 product and vendor USB IDs as Win7 doesn't expose the product name
3601 anywhere that we've been able to find, so we'll be updating the
3602 firmware to use unique idProduct values for each product.
3604 Signed-off-by: Keith Packard <keithp@keithp.com>
3606 commit 9d1b27fa147fc8b765d5be165ebef7ee0f85bd37
3607 Author: Bdale Garbee <bdale@gag.com>
3608 Date: Wed Aug 11 22:11:50 2010 -0400
3610 update changelogs for Debian build
3612 commit b6da90b4627dde1fe88240c38c51559d8f781dd0
3613 Author: Bdale Garbee <bdale@gag.com>
3614 Date: Wed Aug 11 17:15:39 2010 -0400
3616 update changelogs for Debian build
3618 commit 4918f73fd0a0f3f5d52907f95a0ec385e901d447
3619 Author: Bdale Garbee <bdale@gag.com>
3620 Date: Wed Aug 11 08:50:27 2010 -0400
3622 update changelogs for Debian build
3624 commit f63f16a70e4d0535667a6364cafcbff026ee6a8c
3625 Author: Bdale Garbee <bdale@gag.com>
3626 Date: Wed Aug 11 08:36:59 2010 -0400
3628 update changelogs for Debian build
3630 commit 294d9c7db21eaf1e71504dbcca5040371abcce55
3631 Author: Keith Packard <keithp@keithp.com>
3632 Date: Sat Aug 7 22:30:55 2010 -0400
3634 ao-dumplog: add --channel option (for use with -R option)
3636 Sets the channel when downloading data with the -R option.
3638 Signed-off-by: Keith Packard <keithp@keithp.com>
3640 commit f317f1324b69b4241f4bb192e164b33d712d5a43
3641 Author: Keith Packard <keithp@keithp.com>
3642 Date: Sat Aug 7 00:42:25 2010 -0400
3644 altosui: Start adding code to write csv files from eeprom/telem files
3646 This is a start to code which can write out a csv file full of flight
3647 data from either an eeprom or telem input file. It's not hooked up,
3648 but the restructuring necessary is finished and the output is started.
3650 Signed-off-by: Keith Packard <keithp@keithp.com>
3652 commit 4738cb2fc639adb1d9237e6c903479f0690dd81a
3653 Author: Keith Packard <keithp@keithp.com>
3654 Date: Sat Aug 7 00:40:59 2010 -0400
3656 altos: add callsign to packet mode, increase payload to 64 bytes
3658 Untested, but it 'should' work. Need to add callsign setting to packet
3661 Signed-off-by: Keith Packard <keithp@keithp.com>
3663 commit b7699a5907e64bc7547fcc27e73f4a35bbaabfff
3664 Author: Keith Packard <keithp@keithp.com>
3665 Date: Fri Aug 6 13:09:21 2010 -0400
3667 altosui: Add comments to Eeprom reader
3669 commit 0e917f3ff822616adb147517ac961422e5fedbfd
3670 Author: Keith Packard <keithp@keithp.com>
3671 Date: Thu Aug 5 22:49:53 2010 -0400
3673 altosui: Compute flight state from eeprom data
3675 This lets eeprom files be used to replay flights.
3677 Signed-off-by: Keith Packard <keithp@keithp.com>
3679 commit a0a9b445a4d379730b67720f8d7b682d5206a582
3680 Author: Bdale Garbee <bdale@gag.com>
3681 Date: Thu Aug 5 15:16:48 2010 -0400
3683 update changelogs for Debian build
3685 commit e075b8623533965b1b77b77d38c2df32f5f77fce
3686 Author: Bdale Garbee <bdale@gag.com>
3687 Date: Thu Aug 5 15:16:24 2010 -0400
3689 update changelogs for Debian build
3691 commit 410de62715a0830f03b0a65d6c7730dff51e6ef4
3692 Author: Bdale Garbee <bdale@gag.com>
3693 Date: Thu Aug 5 15:15:04 2010 -0400
3695 add freetts as a build dep
3697 commit 0b85160c44d934f3d1352c1c07c296d01ceffc32
3698 Author: Bdale Garbee <bdale@gag.com>
3699 Date: Thu Aug 5 15:02:17 2010 -0400
3701 update changelogs for Debian build
3703 commit d091099753d9cae01c4805812425ebea19ec09cf
3704 Author: Bdale Garbee <bdale@gag.com>
3705 Date: Thu Aug 5 15:00:46 2010 -0400
3707 update changelogs for Debian build
3709 commit aed55ef1ce45b0f6e6fefeebf50be97607b31d65
3710 Author: Bdale Garbee <bdale@gag.com>
3711 Date: Thu Aug 5 15:00:15 2010 -0400
3713 working on java packaging details
3715 commit d8bf05f7ad55964c9bce0551e58f4ef6c9f721ad
3716 Author: Keith Packard <keithp@keithp.com>
3717 Date: Thu Aug 5 13:50:18 2010 -0400
3719 altosui: Split flight record out of telemetry class
3721 This will permit either telemetry or eeprom data to be used to
3722 construct the sequence of flight events for reply or data generation.
3724 Signed-off-by: Keith Packard <keithp@keithp.com>
3726 commit 85a670b5a904d6750d0f179ae307baeb8fc7cbd2
3727 Author: Keith Packard <keithp@keithp.com>
3728 Date: Thu Aug 5 13:40:17 2010 -0400
3730 altosui: Explicitly initialize Altos class
3732 Because the Altos class is never instantiated, the static initializers
3733 are never called, leaving the string to state mapping empty. Hand-code
3734 the call to the initialer instead.
3736 Signed-off-by: Keith Packard <keithp@keithp.com>
3738 commit 02f17f2cd26189e2676a9dc0d86bd959ed0bc3f4
3739 Author: Bdale Garbee <bdale@gag.com>
3740 Date: Thu Aug 5 00:54:05 2010 -0400
3742 move to science menu
3744 commit 9e8f7f75442303f9bfa99a0435984f5d36863ae6
3745 Author: Keith Packard <keithp@keithp.com>
3746 Date: Sat Jul 31 10:34:21 2010 -0700
3748 altosui: Split status and info panels into separate files
3750 This moves some code out of AltosUI.java into separate files
3752 Signed-off-by: Keith Packard <keithp@keithp.com>
3754 commit 9c9b35254c693b3ade42b24d1e29eaf31e6ba2aa
3755 Author: Keith Packard <keithp@keithp.com>
3756 Date: Sat Jul 31 10:24:56 2010 -0700
3758 altosui: Clear displayed data rows as needed.
3760 Signed-off-by: Keith Packard <keithp@keithp.com>
3762 commit 88e0137a60d7a13ddb7781befa76650e13ad44ae
3763 Author: Keith Packard <keithp@keithp.com>
3764 Date: Sat Jul 31 10:07:38 2010 -0700
3766 altosui: Merge gps date and time classes into gps class
3768 No reason to split out the date and time information from the other gps info.
3770 Signed-off-by: Keith Packard <keithp@keithp.com>
3772 commit 1c3b2fe357d6acf28f48aeddd91693f10381be51
3773 Author: Keith Packard <keithp@keithp.com>
3774 Date: Sat Jul 31 10:05:15 2010 -0700
3776 altosui: Capture config and version info in .eeprom files
3778 Instead of only writing the serial number to the .eeprom file, write
3779 all of the config values and all of the version reply to the .eeprom
3780 file. The config values, in particular, contain the accelerometer
3781 calibration data which is needed to correctly compute acceleration
3782 from the captured accelerometer data.
3784 Signed-off-by: Keith Packard <keithp@keithp.com>
3786 commit e286eb61ad2a90746c1c31f95d26d5edb48738d3
3787 Author: Keith Packard <keithp@keithp.com>
3788 Date: Sat Jul 31 09:57:49 2010 -0700
3790 altosui: rename AltosEeprom -> AltosEepromDownload, split out Altos constants
3792 Renames the eeprom downloading code and adds a new file to share the
3793 flight data constants across the various UI modules.
3795 Signed-off-by: Keith Packard <keithp@keithp.com>
3797 commit e3a9e3815db3f290e28b40ae02aa654f515cfc37
3798 Author: Bdale Garbee <bdale@gag.com>
3799 Date: Sat Jul 31 10:55:27 2010 -0600
3801 update changelogs for Debian build
3803 commit 8fc261c2b77bb8aab201a0649a84b5ffa236ce26
3804 Author: Bdale Garbee <bdale@gag.com>
3805 Date: Sat Jul 31 10:55:07 2010 -0600
3807 see if my new freetts package works
3809 commit 2f114c7ff6b0deddb790d34139bb11ac37f8c0da
3810 Author: Bdale Garbee <bdale@gag.com>
3811 Date: Thu Jul 29 13:30:36 2010 -0600
3813 update changelogs for Debian build
3815 commit 7877496d47ce6d25210c0e1c6500666dbfc0876c
3816 Merge: c71061a 4cf39b1
3817 Author: Keith Packard <keithp@keithp.com>
3818 Date: Thu Jul 29 12:07:49 2010 -0700
3820 Merge remote branch 'origin/master'
3822 commit c71061a37d3d3be2855b61cde33d2371989d7681
3823 Author: Keith Packard <keithp@keithp.com>
3824 Date: Thu Jul 29 12:06:06 2010 -0700
3826 Make altosui test script executable
3828 commit 4cf39b13a574cb656999cf329f5b08e7f910604b
3829 Author: Bdale Garbee <bdale@gag.com>
3830 Date: Thu Jul 29 12:57:31 2010 -0600
3832 update changelogs for Debian build
3834 commit d1848193d8208388e4ccdfbed4e5663a9ba04dd3
3835 Author: Bdale Garbee <bdale@gag.com>
3836 Date: Thu Jul 29 12:56:59 2010 -0600
3838 add a jdk to the build deps
3840 commit 9ad4984124b6c05114feac4c4ac078dc248ce16a
3841 Author: Keith Packard <keithp@keithp.com>
3842 Date: Thu Jul 29 11:56:24 2010 -0700
3844 altosui: remove option to install to alternate volume
3846 commit 2e797b18f0724caf7aaf96f45997998c7416f34e
3847 Author: Bdale Garbee <bdale@gag.com>
3848 Date: Thu Jul 29 12:50:57 2010 -0600
3850 update changelogs for Debian build
3852 commit 89109f9dff3ce855d80da166e3362375282f745d
3853 Author: Bdale Garbee <bdale@gag.com>
3854 Date: Thu Jul 29 12:47:37 2010 -0600
3856 ugh, fixing failure due to aborted build
3858 commit 6fb8546575f6d99676dbb1dce190b0b7cf24b657
3859 Author: Keith Packard <keithp@keithp.com>
3860 Date: Thu Jul 29 11:45:56 2010 -0700
3862 Moved Mac OS packaging to altosui dir
3864 commit 865d5cdf8931ffc796f608e3e12d7c5a70832825
3865 Author: Bdale Garbee <bdale@gag.com>
3866 Date: Thu Jul 29 12:45:18 2010 -0600
3868 add swig as a build dep
3870 commit 91d75fb3919f606a1956bf8c6423a8012d99a56a
3871 Author: Keith Packard <keithp@keithp.com>
3872 Date: Thu Jul 29 11:45:12 2010 -0700
3874 altosui: Switch eeprom extension back to .eeprom
3876 commit 33ffd89d5a64c991d28bd7369b61e1faa18f605b
3877 Author: Bdale Garbee <bdale@gag.com>
3878 Date: Thu Jul 29 12:40:52 2010 -0600
3880 update changelogs for Debian build
3882 commit 62b4cc51a0f54ef363cbff46caef80a0afecdea2
3883 Author: Bdale Garbee <bdale@gag.com>
3884 Date: Thu Jul 29 12:40:25 2010 -0600
3886 update changelogs for Debian build
3888 commit 6f86db5e0360bef26b21336769b7635e3a11e160
3889 Author: Keith Packard <keithp@keithp.com>
3890 Date: Thu Jul 29 11:24:47 2010 -0700
3892 Add Mac OS X packaging bits
3894 Signed-off-by: Keith Packard <keithp@keithp.com>
3896 commit 950f0a8c54e5835ee5d8b0aea360bd8362c21bc5
3897 Author: Keith Packard <keithp@keithp.com>
3898 Date: Thu Jul 29 11:09:19 2010 -0700
3900 altosui: construct Darwin application directory
3902 This adds the necessary files and build steps to construct
3903 AltosUI.app on a Darwin system.
3905 Signed-off-by: Keith Packard <keithp@keithp.com>
3907 commit 669c5f52abb972a82ed6efbee7a8c7d20afb5cd0
3908 Author: Keith Packard <keithp@keithp.com>
3909 Date: Thu Jul 29 10:48:52 2010 -0700
3911 libaltos: build with java src encoding UTF8
3913 Signed-off-by: Keith Packard <keithp@keithp.com>
3915 commit efa0e034a161f4852947cbac06537d6ba4422a0e
3916 Author: Keith Packard <keithp@keithp.com>
3917 Date: Thu Jul 29 10:48:25 2010 -0700
3919 altosui: remove debug printf
3921 Signed-off-by: Keith Packard <keithp@keithp.com>
3923 commit 53c279b9e96da8b69837ae84038a78ca5707f2a5
3924 Author: Keith Packard <keithp@keithp.com>
3925 Date: Thu Jul 29 10:45:02 2010 -0700
3927 altosui: Close serial, join reader thread, free altos_file
3929 Separating out the close and free actions ensures that the reader thread will not
3930 access freed memory or dereference a null pointer while shutting down the
3931 connection to the serial device. Otherwise, a race condition exists between the
3932 serial close and the thread join.
3934 Signed-off-by: Keith Packard <keithp@keithp.com>
3936 commit b8bc9994d8bfde6116c8a509e70ddf45fc4decce
3937 Author: Keith Packard <keithp@keithp.com>
3938 Date: Thu Jul 29 10:24:59 2010 -0700
3940 altosui: Remove unnecessary freetts .jar files
3942 Signed-off-by: Keith Packard <keithp@keithp.com>
3944 commit e33dbbba94ce42295e9fed9f4ba7e46f9eff1517
3945 Author: Keith Packard <keithp@keithp.com>
3946 Date: Thu Jul 29 10:24:09 2010 -0700
3948 altosui: check for closed serial device before reading
3950 Signed-off-by: Keith Packard <keithp@keithp.com>
3952 commit 27a2d0c00acf78628428c20ab68e2bfba06340da
3953 Author: Bdale Garbee <bdale@gag.com>
3954 Date: Thu Jul 29 11:02:38 2010 -0600
3956 update changelogs for Debian build
3958 commit 537492dc961ee6a1945b1041ee3cc0d3f519a42c
3959 Author: Bdale Garbee <bdale@gag.com>
3960 Date: Thu Jul 29 11:01:21 2010 -0600
3962 update changelogs for Debian build
3964 commit adf6cbcba23e24a3824f7e242ec37baa2750ab94
3965 Author: Bdale Garbee <bdale@gag.com>
3966 Date: Thu Jul 29 10:59:18 2010 -0600
3968 update changelogs for Debian build
3970 commit d0fd53bdab2f480cd43b6d7010c2094f4fccda91
3971 Author: Keith Packard <keithp@keithp.com>
3972 Date: Wed Jul 28 21:49:23 2010 -0700
3974 Reset GPS ready status when GPS comes unlocked on the pad
3976 If GPS becomes unlocked, then report that in the UI and via
3979 Signed-off-by: Keith Packard <keithp@keithp.com>
3981 commit 5fd225c3a52445ecdc7c04fac5e3d9a0db177c66
3982 Author: Keith Packard <keithp@keithp.com>
3983 Date: Wed Jul 28 21:01:41 2010 -0700
3985 altosui: report rocket ground bearing at landing only if known
3987 if state.from_pad is null, then there isn't any data to report.
3989 Signed-off-by: Keith Packard <keithp@keithp.com>
3991 commit d2d772164af95a35ea0f5d2413a5be67de9a210f
3992 Author: Keith Packard <keithp@keithp.com>
3993 Date: Wed Jul 28 20:18:36 2010 -0700
3995 altosui: Replace device dialog. Center eeprom monitor.
3997 This adds a custom dialog for selecting device, which makes it look
3998 much nicer on the screen and allows the user to double-click on an
4001 Signed-off-by: Keith Packard <keithp@keithp.com>
4003 commit ea32290704a8ca468f01172166b561833b20c954
4004 Author: Keith Packard <keithp@keithp.com>
4005 Date: Wed Jul 28 19:37:02 2010 -0700
4007 altosui: Fix Save flight data monitor layout, add cancel
4009 Use GridBagLayout to improve the appearance of the flight data monitor
4010 widget, add a cancel button to stop loading data (useful if the
4011 connection is wedged).
4013 Signed-off-by: Keith Packard <keithp@keithp.com>
4015 commit ce90f3fe2aa6e23695ccccb36a8e6e614a08ba31
4016 Author: Keith Packard <keithp@keithp.com>
4017 Date: Wed Jul 28 17:08:42 2010 -0700
4019 altosui: Add progress bar for eeprom downloading status
4021 This has a progress bar tracking the state and block count while
4022 downloading stuff from telemetrum.
4024 Signed-off-by: Keith Packard <keithp@keithp.com>
4026 commit 6599e9576c3da9325a1731144c1b8bc4943184c0
4027 Author: Keith Packard <keithp@keithp.com>
4028 Date: Wed Jul 28 15:41:34 2010 -0700
4030 altosui: Add eeprom data capture function. No UI yet.
4032 Signed-off-by: Keith Packard <keithp@keithp.com>
4034 commit 8a6040e143ecc7830cc1c0114de85f3b72c067eb
4035 Merge: 024d077 554a97e
4036 Author: Keith Packard <keithp@keithp.com>
4037 Date: Wed Jul 28 13:29:51 2010 -0700
4039 Merge remote branch 'keithp/macos'
4041 commit 024d077302f91bdb17abe70d3211ab0949dab8b9
4042 Author: Keith Packard <keithp@keithp.com>
4043 Date: Wed Jul 28 13:29:21 2010 -0700
4047 Signed-off-by: Keith Packard <keithp@keithp.com>
4049 commit 826061eaca88c0dd75051a6006ef6703c91af595
4050 Author: Keith Packard <keithp@keithp.com>
4051 Date: Wed Jul 28 13:10:11 2010 -0700
4053 Add voice test command for help in adjusting volume.
4055 Signed-off-by: Keith Packard <keithp@keithp.com>
4057 commit 71da54a5ce255395376a44586782ab8b6f3b289f
4058 Author: Keith Packard <keithp@keithp.com>
4059 Date: Wed Jul 28 13:01:52 2010 -0700
4061 Make voice and channel menus work.
4063 Stores voice and channel data to preferences.
4065 Signed-off-by: Keith Packard <keithp@keithp.com>
4067 commit e76b9cc32bbcc5176d9bdd6f8d79778024627382
4068 Author: Keith Packard <keithp@keithp.com>
4069 Date: Wed Jul 28 12:24:53 2010 -0700
4071 altosui: Catch errors opening USB devices. Limit list to relevant devices
4073 Avoids a segfault when failing to open a device. Limit listed telemetry
4074 devices to just TeleDongle units.
4076 Signed-off-by: Keith Packard <keithp@keithp.com>
4078 commit 172a2817dde6718724f2b5fad5a7761801446fa0
4079 Merge: f2a006f 81bf204
4080 Author: Keith Packard <keithp@keithp.com>
4081 Date: Wed Jul 28 11:20:22 2010 -0700
4083 Merge branch 'macos'
4085 commit f2a006fd98045066bdf429cc142d033e9feb0a8f
4086 Author: Keith Packard <keithp@keithp.com>
4087 Date: Wed Jul 28 09:31:09 2010 -0700
4089 Make ao_log_data re-entrant as it is used for both sensor and GPS logs
4091 Because ao_log_data is called from two different threads, failing to
4092 make it re-entrant would cause the 'log' pointer parameter to get
4093 overwritten if another thread asked to log data while the eeprom was
4094 busy writing out a block.
4096 This would cause the second thread to re-writing data from the first
4097 thread's address, but without re-checksumming the data as the checksum
4098 is computed before the log mutex is taken.
4100 The bug can be seen by log blocks with invalid checksums.
4102 Here's what happens with the ao_gps_tracking_report and ao_log threads:
4104 ao_gps_tracking_report ao_log
4106 Writes a bunch of records
4107 *blocks* in the eeprom flush
4108 sets ao_log_data 'log' to global 'log'
4109 computes checksum for 'log' block
4110 *blocks* on ao_log_mutex
4112 sets ao_log_data 'log' to 'gps_log'
4113 writes remaining records
4114 'gps_log' is left with svid = 0
4115 *blocks* on ao_gps_tracking_data
4116 writes data, reading from
4117 the current ao_log_data 'log'
4118 pointer which points at 'gps_log'
4120 Making ao_log_data re-entrant fixes this by ensuring that the 'ao_log'
4121 thread has its own copy of the ao_log_data 'log' parameter.
4123 I made this function take an __xdata restricted pointer so that it
4124 could be passed in the dptr register instead of needing to go on the stack.
4126 Signed-off-by: Keith Packard <keithp@keithp.com>
4128 commit 554a97ef455c801dcab825815f44520f96f4c3f3
4129 Author: Keith Packard <keithp@keithp.com>
4130 Date: Tue Jul 27 19:29:38 2010 -0700
4132 Force java source encoding to UTF-8
4134 commit 81bf2042ca39eb106b789e5a08647c3114669358
4135 Author: Keith Packard <keithp@keithp.com>
4136 Date: Tue Jul 27 15:29:28 2010 -0700
4138 Java voice reporting cleanups.
4140 Make sure it says something at the end of a log file replay.
4141 Make sure it reports max speed after motor burn out, and max height
4144 Signed-off-by: Keith Packard <keithp@keithp.com>
4146 commit 8f2f38f2a9fb0c106e2c6b60cdc205292ce329ea