altos/telegps: Inherit LDFLAGS from lpc make specification
[fw/altos] / ChangeLog
1 commit c0ad087008856cfc2233b977abfc3f1dcbaccdcc
2 Merge: 148b013 4fdf8ca
3 Author: Bdale Garbee <bdale@gag.com>
4 Date:   Mon Sep 5 20:59:11 2016 -0600
5
6     Merge branch 'master' into branch-1.6
7
8 commit 4fdf8ca9ca1cd5a84b03bd7a03c5806af64b413d
9 Author: Keith Packard <keithp@keithp.com>
10 Date:   Mon Sep 5 20:55:17 2016 -0600
11
12     Remove pyro wizard file from master
13     
14     This isn't done yet.
15     
16     Signed-off-by: Keith Packard <keithp@keithp.com>
17
18 commit 89b8b2ee98e8d329559f54058c574ba9122ced8e
19 Author: Keith Packard <keithp@keithp.com>
20 Date:   Mon Sep 5 20:46:05 2016 -0600
21
22     Bump version to 1.6.8
23     
24     Signed-off-by: Keith Packard <keithp@keithp.com>
25
26 commit a37b687670dd1ccb0274e5fe6bf6145c4fc5acc8
27 Author: Keith Packard <keithp@keithp.com>
28 Date:   Mon Sep 5 20:45:12 2016 -0600
29
30     altosui: Don't ship TeleMetrum v3.0 firmware (yet)
31     
32     We haven't finished this yet, so don't deliver firmware for it.
33     
34     Signed-off-by: Keith Packard <keithp@keithp.com>
35
36 commit 45084fd04326b979f349870f09ff9af1b3155cbe
37 Author: Keith Packard <keithp@keithp.com>
38 Date:   Sat Sep 3 21:02:35 2016 -0500
39
40     Add 1.6.8 release notes
41     
42     Signed-off-by: Keith Packard <keithp@keithp.com>
43
44 commit 9279b0cd52333a846b57af890f708ebb364b62b7
45 Author: Keith Packard <keithp@keithp.com>
46 Date:   Sat Sep 3 01:21:34 2016 -0500
47
48     altos/stm: Set SPI slave DMA priority to HIGH/VERY_HIGH
49     
50     Set spi slave DMA priority MOSI to HIGH and MISO to VERY_HIGH. Slave
51     SPI doesn't have the luxury of slowing down when the system is busy,
52     so provide it maximum memory bandwidth to try and keep up with the
53     master.
54     
55     Signed-off-by: Keith Packard <keithp@keithp.com>
56
57 commit d80995c4535a3655ca1b9ca674d6839cfef84c4e
58 Author: Keith Packard <keithp@keithp.com>
59 Date:   Sat Sep 3 01:20:20 2016 -0500
60
61     altos/stm: Set i2c recv DMA to HIGH
62     
63     Make sure receive DMA is higher than any TX dma so that
64     it always runs in preference.
65     
66     Signed-off-by: Keith Packard <keithp@keithp.com>
67
68 commit af2eefbed43e56885a7321319d69b7be17354cdd
69 Author: Keith Packard <keithp@keithp.com>
70 Date:   Sat Sep 3 00:55:19 2016 -0500
71
72     altos/stm: Set MISO DMA priority to HIGH to avoid OVR
73     
74     When the MISO DMA priority is too low, and the processor gets busy,
75     it's possible for SPI input to overrun the processor, which causes the
76     MISO DMA to get out of sync and never finish. Set the MISO DMA
77     priority to HIGH to avoid this.
78     
79     Signed-off-by: Keith Packard <keithp@keithp.com>
80
81 commit 4fc5cfa2c63c43ab0a9ef7e0cc6832fb1c163bd6
82 Author: Keith Packard <keithp@keithp.com>
83 Date:   Sat Sep 3 00:53:44 2016 -0500
84
85     altos/stm: Create funcs to set SPI DMA parameters
86     
87     Instead of having nearly duplicate versions of the SPI DMA
88     configuration calls, create helper funcs that do most of the work so
89     that the SPI API funcs are shorter and clearer.
90     
91     Signed-off-by: Keith Packard <keithp@keithp.com>
92
93 commit 1710a4921d4f408300c7d5adf0e83d08cc86be20
94 Author: Keith Packard <keithp@keithp.com>
95 Date:   Sat Sep 3 00:52:12 2016 -0500
96
97     altos/stm: Make ao_spi_duplex out pointer const
98     
99     Provides a bit better typechecking opportunities for this function.
100     
101     Signed-off-by: Keith Packard <keithp@keithp.com>
102
103 commit 5d913dde1fa58cbcb5edbc88405180e37ba0dbcd
104 Author: Keith Packard <keithp@keithp.com>
105 Date:   Fri Sep 2 23:40:03 2016 -0500
106
107     Bump version to 1.6.7.1
108     
109     Signed-off-by: Keith Packard <keithp@keithp.com>
110
111 commit 30e8f003381c30434058905f53f5a219ac5feb4f
112 Author: Keith Packard <keithp@keithp.com>
113 Date:   Fri Sep 2 23:36:36 2016 -0500
114
115     ao-tools/ao-cal-freq: Re-open usb device each try
116     
117     Instead of trying to re-use the same file descriptor, close and
118     re-open the device each time around the loop to avoid getting stuck
119     when calibrating TeleMega boards.
120     
121     Signed-off-by: Keith Packard <keithp@keithp.com>
122
123 commit 3ea30c1909b3ae23918ea6d0a53d2c4065b08763
124 Author: Keith Packard <keithp@keithp.com>
125 Date:   Fri Sep 2 23:34:47 2016 -0500
126
127     ao-tools/ao-usbload: Fix -f flag, remove debug hacks
128     
129     The code to validate the usb id and product name had some debug hacks
130     left enabled, which caused it to fail. The short -f version of the
131     force flag was also not getting parsed correctly.
132     
133     Signed-off-by: Keith Packard <keithp@keithp.com>
134
135 commit dfaabc1ca3aaad0d249283308b06d3e0567f0c59
136 Author: Keith Packard <keithp@keithp.com>
137 Date:   Fri Sep 2 23:33:27 2016 -0500
138
139     ao-bringup/turnon_telemetrum: serial on cmd line. Loop on accel fail
140     
141     These make the script easier to use
142     
143     Signed-off-by: Keith Packard <keithp@keithp.com>
144
145 commit 8bbef0c7039f4a0c6ac368fd994c2e52d84d293c
146 Author: Keith Packard <keithp@keithp.com>
147 Date:   Fri Sep 2 16:13:25 2016 -0500
148
149     altosui: Deal with connect failure in AltosConfigTD
150     
151     When the USB connection times out, abort any pending operations and
152     clean up the thread correctly. Also, deal with the serial line being
153     closed by checking for null.
154     
155     Signed-off-by: Keith Packard <keithp@keithp.com>
156
157 commit b2d013aef5b76ff527e8174dff7f6ffe0dfaefae
158 Author: Keith Packard <keithp@keithp.com>
159 Date:   Wed Aug 31 21:27:10 2016 -0600
160
161     ao-tools/ao-cal-freq: --verbose option has no parameter
162     
163     Signed-off-by: Keith Packard <keithp@keithp.com>
164
165 commit 08923aa0cf31ae7bd73b66b4d1cd81fae4241ff0
166 Author: Keith Packard <keithp@keithp.com>
167 Date:   Wed Aug 31 21:25:59 2016 -0600
168
169     ao-bringup: telemega allow serial on command line, loop on accel fail
170     
171     Allow the serial number on the turnon_telemega command line, instead
172     of reading it.
173     
174     When accel cal fails, loop waiting for it to succeed instead of
175     continuing blindly.
176     
177     Signed-off-by: Keith Packard <keithp@keithp.com>
178
179 commit ab75ab10564c4d5d05719c382a3b71585cd70710
180 Author: Keith Packard <keithp@keithp.com>
181 Date:   Mon Aug 29 09:27:53 2016 -0700
182
183     altos/cc1120: remove unused status from ao_radio_fifo_write_stop
184     
185     Signed-off-by: Keith Packard <keithp@keithp.com>
186
187 commit 462039c769f2db9328b04759807c30691f2b96c2
188 Author: Keith Packard <keithp@keithp.com>
189 Date:   Sun Aug 14 15:57:39 2016 -0700
190
191     ao-usbload: Check target device name to avoid mis-flashing
192     
193     Instead of blindly loading firmware, go get the old device's name and
194     make sure it matches the new firmware.
195     
196     Add --force option to allow this to be overridden.
197     
198     Signed-off-by: Keith Packard <keithp@keithp.com>
199
200 commit c62816a00b9aa40879a2ea98da2d10667e09b704
201 Author: Keith Packard <keithp@keithp.com>
202 Date:   Sun Aug 14 15:55:13 2016 -0700
203
204     ao-chaosread: Parse -i and -b options
205     
206     Need to pass the single-byte verisons to getopt_long
207     
208     Signed-off-by: Keith Packard <keithp@keithp.com>
209
210 commit af1d41e32fc04d5897fd2dc736391d263af48727
211 Author: Keith Packard <keithp@keithp.com>
212 Date:   Mon Aug 8 22:40:41 2016 -0700
213
214     Bump verison to 1.6.7
215     
216     Signed-off-by: Keith Packard <keithp@keithp.com>
217
218 commit 46b1234140c04dbfac22be0fdf80be96506b6948
219 Author: Keith Packard <keithp@keithp.com>
220 Date:   Mon Aug 8 22:39:16 2016 -0700
221
222     altos/stmf0: Switch ADC fast to ADC clock
223     
224     Using this slower clock eliminates sampling problems with the ADC and
225     cleans up the chaoskey raw data.
226     
227     Signed-off-by: Keith Packard <keithp@keithp.com>
228
229 commit 48088d1d6a66c5d5271b52191367f07b09626b29
230 Author: Keith Packard <keithp@keithp.com>
231 Date:   Thu Aug 4 09:54:16 2016 -0700
232
233     altos: Flash all LEDS during power on
234     
235     This tests the LEDS to make sure they all work on the following devices:
236     
237     easymega-v1.0
238     telebt-v3.0
239     teledongle-v3.0
240     telemega-v1.0
241     telemega-v2.0
242     telemetrum-v2.0
243     
244     Signed-off-by: Keith Packard <keithp@keithp.com>
245
246 commit 71e3a59e42c284fde8ac2767abd029230ed86e07
247 Author: Keith Packard <keithp@keithp.com>
248 Date:   Thu Aug 4 09:52:05 2016 -0700
249
250     ao-bringup: Add colors to chaoskey test result reporting
251     
252     This makes them show up nice and bright in the terminal window.
253     
254     Signed-off-by: Keith Packard <keithp@keithp.com>
255
256 commit bc920c80ef447a5bcdf8165b69fb28b8f63609df
257 Author: Keith Packard <keithp@keithp.com>
258 Date:   Tue Aug 2 16:35:36 2016 -0700
259
260     Bump to version 1.6.6
261     
262     Signed-off-by: Keith Packard <keithp@keithp.com>
263
264 commit 165868999f45f4572ff2585fcb3986974a5bbd5c
265 Author: Keith Packard <keithp@keithp.com>
266 Date:   Tue Aug 2 16:52:39 2016 -0700
267
268     ao-bringup: Use released files for chaoskey turnon
269     
270     Signed-off-by: Keith Packard <keithp@keithp.com>
271
272 commit c4926a69d6e72a035197b3d617c62893a7ea1861
273 Author: Keith Packard <keithp@keithp.com>
274 Date:   Tue Aug 2 16:30:15 2016 -0700
275
276     ao-bringup: Test chaoskey using dieharder
277     
278     This uses a subset of the dieharder tests which run in reasonable time
279     and don't appear to emit false negatives on a regular basis.
280     
281     Signed-off-by: Keith Packard <keithp@keithp.com>
282
283 commit d52cb9dac725206ba7b2d26818c84f134d5bf183
284 Author: Keith Packard <keithp@keithp.com>
285 Date:   Tue Aug 2 16:53:17 2016 -0700
286
287     ao-chaosread: Eliminate double-free when serial match fails
288     
289     Signed-off-by: Keith Packard <keithp@keithp.com>
290
291 commit 3bdc9028502c766d1c8ddb4f0dedba4bbc22384e
292 Author: Keith Packard <keithp@keithp.com>
293 Date:   Tue Aug 2 16:28:17 2016 -0700
294
295     ao-chaosread: Add --infinite and --bytes options
296     
297     The --infinite option keeps writing data.
298     The --bytes options pulls out bits 1-8 which should provide 8 true
299     bits of entropy.
300     
301     This combination allows ao-chaosread to be fed directly into dieharder
302     to validate the hardware.
303     
304     Signed-off-by: Keith Packard <keithp@keithp.com>
305
306 commit 826ad792389150ea8d80e341cb8ea023db83c9a2
307 Author: Keith Packard <keithp@keithp.com>
308 Date:   Tue Aug 2 16:26:49 2016 -0700
309
310     altos: Use standard FIPS testing for chaoskey
311     
312     Check to make sure we aren't repeating a block coming from the
313     unwhitened source, which is the standard online FIPS test for RNGs.
314     
315     Signed-off-by: Keith Packard <keithp@keithp.com>
316
317 commit 1934468e96ea9d179abf6e3e728b6b14ce793f46
318 Author: Keith Packard <keithp@keithp.com>
319 Date:   Tue Aug 2 16:53:50 2016 -0700
320
321     altos/stmf0: Clean .bin files from flash-loader dirs
322     
323     The .bin files are what the DFU utility uses to flash the boot loader
324     using USB.
325     
326     Signed-off-by: Keith Packard <keithp@keithp.com>
327
328 commit 782013d0ff2c9f076952c0e172bfcb7016699d5f
329 Author: Keith Packard <keithp@keithp.com>
330 Date:   Tue Aug 2 16:32:43 2016 -0700
331
332     altos/stmf0: Hook up clock output support
333     
334     This was used to try and not have two xtals on telemini, but failed
335     because the provided clock has too much noise.
336     
337     Signed-off-by: Keith Packard <keithp@keithp.com>
338
339 commit 99753673a4a97423300427e276bf550ae5353842
340 Author: Keith Packard <keithp@keithp.com>
341 Date:   Tue Aug 2 16:31:41 2016 -0700
342
343     altos: Make telelcotwo control two boxes instead of two pads
344     
345     telefiretwo is now a single pad box, so telelcotwo needs to switch
346     between boxes instead of pads on the same box. Do this by re-purposing
347     the pad arming switches into a box selector and arming switch.
348     
349     Signed-off-by: Keith Packard <keithp@keithp.com>
350
351 commit be84201495fa3cabd699012e57e797355e2bd792
352 Author: Keith Packard <keithp@keithp.com>
353 Date:   Wed Jul 27 21:28:34 2016 -0700
354
355     altos: Add 'ao_button_get' to button driver
356     
357     This returns the current state of the button; useful to check what the
358     value is at startup.
359     
360     Signed-off-by: Keith Packard <keithp@keithp.com>
361
362 commit a6701283af7ed2b3016a910d6edbe4a5e8304581
363 Author: Keith Packard <keithp@keithp.com>
364 Date:   Tue Aug 2 16:33:52 2016 -0700
365
366     altoslib: Add a 'seconds' method to AltosGPS
367     
368     This computes the time in seconds since the epoch from GPS time
369     information.
370     
371     Signed-off-by: Keith Packard <keithp@keithp.com>
372
373 commit 647690dbe084d188ba3973da631871a65f2dc50d
374 Author: Keith Packard <keithp@keithp.com>
375 Date:   Wed Jul 27 13:29:20 2016 -0700
376
377     altos: Stop building cc1111-based telemini v2.0 firmware
378     
379     This product never worked, so stop insisting that it actually build.
380     
381     Signed-off-by: Keith Packard <keithp@keithp.com>
382
383 commit fe13426daff08f2beface2c1906f9a6184f6b987
384 Author: Keith Packard <keithp@keithp.com>
385 Date:   Wed Jul 27 13:26:22 2016 -0700
386
387     altos: Don't switch to flight 0 when log fills in flight
388     
389     If the log is full at startup, we want to transmit flight 0 to let the
390     ground station know. However, we don't want to switch to flight 0 in
391     flight, so save the initial telemetry flight number (0 or the real
392     flight number) at startup and use that throughout the flight.
393     
394     Signed-off-by: Keith Packard <keithp@keithp.com>
395
396 commit 71ddb973ff75680e78fbbef7978ab3893c367629
397 Author: Keith Packard <keithp@keithp.com>
398 Date:   Wed Jul 27 13:24:57 2016 -0700
399
400     altos: Expose cc1200 radio test functions for telemini bringup
401     
402     This exposes the cc1200 radio test function so we can load special
403     test firmware in telemini to do the radio cal as it has no USB to
404     perform that interactively.
405     
406     Signed-off-by: Keith Packard <keithp@keithp.com>
407
408 commit 59874a062543c61d164089e8b31f55a9b860c0b1
409 Author: Keith Packard <keithp@keithp.com>
410 Date:   Wed Jul 27 13:23:06 2016 -0700
411
412     fixup for interleave
413
414 commit 2507b9f29d25f77de249103805087a704069c625
415 Author: Keith Packard <keithp@keithp.com>
416 Date:   Wed Jul 27 13:17:51 2016 -0700
417
418     altos: Don't access cc1120 SPI bus during recv after abort has started
419     
420     When the receive timeout happens, the radio may still interrupt while
421     the SPI bus is getting shut down. If this happens, the interrupt
422     handler shouldn't touch the SPI bus at all as it may well be turned
423     off, which would cause the receive function to wedge waiting for a spi
424     byte transfer to happen.
425     
426     Signed-off-by: Keith Packard <keithp@keithp.com>
427
428 commit 17adfd7939ff697afa96f7207a3fe17b6af789bd
429 Author: Keith Packard <keithp@keithp.com>
430 Date:   Wed Jul 27 12:24:27 2016 -0700
431
432     altos: Keep telemetry and command output from interleaving
433     
434     When monitoring telemetry, the frame needs to be sent together on one
435     line, not split with the output of a command (like 'a') mixed in.
436     
437     Use a mutex for products with monitoring to keep command output and
438     telemetry output each on separate lines.
439     
440     Signed-off-by: Keith Packard <keithp@keithp.com>
441
442 commit 1667cb8e8b702b05fc3ec39ee49029885df64a4a
443 Author: Keith Packard <keithp@keithp.com>
444 Date:   Sat Jul 2 20:00:01 2016 +0200
445
446     altos: Add STM32F0 beep and SPI byte API.
447     
448     Signed-off-by: Keith Packard <keithp@keithp.com>
449
450 commit f39bee8875a0595b3d7ec7f5575d1e5eeb7544ec
451 Author: Keith Packard <keithp@keithp.com>
452 Date:   Tue Jul 12 21:06:23 2016 -0700
453
454     altosuilib: Show indicator when they switch from invalid back to valid
455     
456     The 'hide' value wasn't getting reset to 'false' each time the state
457     of the indicators was checked, so indicators would get hidden and then
458     never shown again.
459     
460     Signed-off-by: Keith Packard <keithp@keithp.com>
461
462 commit efd91febfa9bebd2f03508b2240916551450f831
463 Author: Keith Packard <keithp@keithp.com>
464 Date:   Tue Jul 12 21:06:05 2016 -0700
465
466     Bump version to 1.6.5.1 after 1.6.5 release
467     
468     Signed-off-by: Keith Packard <keithp@keithp.com>
469
470 commit 639d8b3c4353ee25a0536e01653f3a86feb90ad5
471 Author: Keith Packard <keithp@keithp.com>
472 Date:   Tue Jul 12 15:53:47 2016 -0700
473
474     altos: Add telemetrum v3.0
475     
476     Like Telemetrum v2.0, but with cc1200 instead of cc1120
477     
478     Signed-off-by: Keith Packard <keithp@keithp.com>
479
480 commit 1085ec5d57e0ed5d132f2bbdac1a0b6a32c0ab4a
481 Author: Keith Packard <keithp@keithp.com>
482 Date:   Tue Jul 5 18:03:49 2016 +0200
483
484     Switch from GPLv2 to GPLv2+
485     
486     Signed-off-by: Keith Packard <keithp@keithp.com>
487
488 commit 148b013dd29c26920ddfb53449ed4d8cc5a4b5ee
489 Merge: ea1ff22 cd97128
490 Author: Bdale Garbee <bdale@gag.com>
491 Date:   Tue Jul 5 10:23:18 2016 +0200
492
493     Merge branch 'master' into branch-1.6
494
495 commit cd97128e30c47edfcc71f7d872cbdad14867934c
496 Author: Bdale Garbee <bdale@gag.com>
497 Date:   Tue Jul 5 10:21:29 2016 +0200
498
499     remove debian/ from master branch, it should live only on the debian branch
500
501 commit a439ee4ac0398f70209292d015c5b82cd58d1d9f
502 Author: Bdale Garbee <bdale@gag.com>
503 Date:   Tue Jul 5 00:48:07 2016 +0200
504
505     updates made during 1.6.5 release process
506
507 commit ea1ff225f1f450ee3fc377807d1bb7b982bf792d
508 Author: Bdale Garbee <bdale@gag.com>
509 Date:   Mon Jul 4 23:47:56 2016 +0200
510
511     updating ChangeLog for 1.6.5 release
512
513 commit 2e26d1ab42163988dc26b06b016c3b05efe17659
514 Merge: 639e461 65ed2f5
515 Author: Bdale Garbee <bdale@gag.com>
516 Date:   Mon Jul 4 23:47:24 2016 +0200
517
518     Merge branch 'master' into branch-1.6
519
520 commit 65ed2f588ca596fe9aa559bebd590a2a11b9859b
521 Author: Keith Packard <keithp@keithp.com>
522 Date:   Sun Jul 3 12:00:10 2016 +0200
523
524     doc: Build 1.6.5 release notes
525     
526     Signed-off-by: Keith Packard <keithp@keithp.com>
527
528 commit d60133c65b4592f0f8c832135664a8e0c922b4f0
529 Author: Keith Packard <keithp@keithp.com>
530 Date:   Sat Jul 2 22:52:38 2016 +0200
531
532     Credit Chuck Haskin for helping fix the SPI bug.
533     
534     Signed-off-by: Keith Packard <keithp@keithp.com>
535
536 commit 14e73d89d7dbb44e9ffab2820aefb693b6e8ef24
537 Author: Keith Packard <keithp@keithp.com>
538 Date:   Sat Jul 2 22:08:58 2016 +0200
539
540     Bump to 1.6.5. Add preliminary release notes
541     
542     Signed-off-by: Keith Packard <keithp@keithp.com>
543
544 commit 8a6a95bb24517af00717fd377bad82ddb2289cf0
545 Author: Keith Packard <keithp@keithp.com>
546 Date:   Thu Jun 30 20:43:03 2016 -0700
547
548     altos/cc1111: Remove 'show tasks' command
549     
550     This saves space on cc1111 parts.
551     
552     Signed-off-by: Keith Packard <keithp@keithp.com>
553
554 commit d2e286f66d2b15df128ffe9b40a201242fc4a10a
555 Author: Keith Packard <keithp@keithp.com>
556 Date:   Wed Jun 29 14:22:32 2016 -0700
557
558     Bump to testing version 1.6.4.2
559     
560     Signed-off-by: Keith Packard <keithp@keithp.com>
561
562 commit a04830a636a71808ea8ef5ac5dfa59d6978d9f3b
563 Author: Keith Packard <keithp@keithp.com>
564 Date:   Wed Jun 29 18:41:24 2016 -0700
565
566     altos: Use FIFO_THR pin for cc1120 transmit buffering
567     
568     Instead of reading NUM_TXBYTES, set the FIFO_THR pin to indicate when
569     64 bytes are available in the buffer.
570     
571     Signed-off-by: Keith Packard <keithp@keithp.com>
572
573 commit caf3fc2628c13ff38ffbaabda8aa8d146cda748e
574 Author: Keith Packard <keithp@keithp.com>
575 Date:   Wed Jun 29 18:33:56 2016 -0700
576
577     altos: Leave USB enabled in flight with -DDEBUG=1
578     
579     This leaves the command line available for diagnostics when debugging.
580     
581     Signed-off-by: Keith Packard <keithp@keithp.com>
582
583 commit c6c250711355ae8060e956e786702be250ef4527
584 Author: Keith Packard <keithp@keithp.com>
585 Date:   Wed Jun 29 12:55:30 2016 -0700
586
587     altos/stm: clean up ao_exti_enable
588     
589     Was computing (1 << pin) twice for no good reason.
590     
591     Signed-off-by: Keith Packard <keithp@keithp.com>
592
593 commit a35424cd48205af89ba023db979959dc75b06706
594 Author: Keith Packard <keithp@keithp.com>
595 Date:   Wed Jun 29 12:54:31 2016 -0700
596
597     altos: Make task list output more useful
598     
599     Add the timeout value and task id
600     
601     Signed-off-by: Keith Packard <keithp@keithp.com>
602
603 commit 6c022e094f6f3c551355742a6f9c3deb6e554fe1
604 Author: Keith Packard <keithp@keithp.com>
605 Date:   Wed Jun 29 16:07:22 2016 -0700
606
607     altos/telemini-v2.0: Remove show tasks command
608     
609     There's not enough memory for this command, and it isn't necessary.
610     
611     Signed-off-by: Keith Packard <keithp@keithp.com>
612
613 commit 349a63aeed6cdeb89bf18c7b2e2c40782c79cc00
614 Author: Keith Packard <keithp@keithp.com>
615 Date:   Wed Jun 29 12:52:37 2016 -0700
616
617     altos: Make ao_delay(0) not wait forever
618     
619     ao_delay() is implemented on top of ao_sleep_for, and ao_sleep_for
620     uses the timeout value of 0 to indicate an infinite timeout. Calls to
621     ao_delay for 0 ticks would unintentionally hit this case and end up
622     waiting forever.x
623     
624     Signed-off-by: Keith Packard <keithp@keithp.com>
625
626 commit 3b3a24f5f39a1b72cc8947c33b609f454b46aff8
627 Author: Keith Packard <keithp@keithp.com>
628 Date:   Wed Jun 29 12:49:16 2016 -0700
629
630     altos: cc1200: use FIFO threshold pin output for APRS buffering
631     
632     Instead of polling the device for fifo space, just use the available
633     pin configuration to figure out if there is enough space for a single
634     APRS buffer. Then set the APRS buffer size to match the fifo threshold
635     setting in the chip so that we know we can write the whole APRS buffer
636     once the pin says there's space.
637     
638     Signed-off-by: Keith Packard <keithp@keithp.com>
639
640 commit 658d8be170f9aea683fe62b68368736a177411a5
641 Author: Keith Packard <keithp@keithp.com>
642 Date:   Tue Jun 28 17:03:34 2016 -0700
643
644     altos: Add debug check for irq block when editing task queues
645     
646     List manipulation operations are not atomic, so interrupts need to be
647     blocked while changing them.
648     
649     Signed-off-by: Keith Packard <keithp@keithp.com>
650
651 commit 30eb5d2fa77e036690170e7057fa9df669375ae5
652 Author: Keith Packard <keithp@keithp.com>
653 Date:   Tue Jun 28 18:40:46 2016 -0700
654
655     altos/drivers: Use more reliable byte interface for CC1120 reception
656     
657     This replaces direct register access with function calls to allow that
658     code to respect the hardware requirements.
659     
660     Signed-off-by: Keith Packard <keithp@keithp.com>
661
662 commit 61ad8e5bf428246ac89cad7cb9a1edf2ef735fd5
663 Author: Keith Packard <keithp@keithp.com>
664 Date:   Tue Jun 28 18:39:31 2016 -0700
665
666     altos/stm: Add better byte-level SPI api
667     
668     This provides inline functions for sending and receiving individual
669     bytes, and setup/finish functions to wrap them in. This make the byte
670     sending respect the SPI hardware interface requirements.
671     
672     Signed-off-by: Keith Packard <keithp@keithp.com>
673
674 commit 5866d191cee56949ccab4c154a14604e83163d42
675 Author: Keith Packard <keithp@keithp.com>
676 Date:   Tue Jun 28 18:37:49 2016 -0700
677
678     altos/stm: Clean up spi_enable/disable_index functions
679     
680     These had an extra level of switch nesting for no good reason.
681     
682     Signed-off-by: Keith Packard <keithp@keithp.com>
683
684 commit 5ab4a8b911e254dc829b61cb0abc9fd0b46b84b3
685 Author: Keith Packard <keithp@keithp.com>
686 Date:   Mon Jun 27 23:25:01 2016 -0700
687
688     altos/stm: move spi execution to common ao_spi_run
689     
690     This regularizes SPI hardware use and ensures that the device is
691     turned off after it has been used and that the status register is back
692     to 'normal' the next time through.
693     
694     Signed-off-by: Keith Packard <keithp@keithp.com>
695
696 commit 69791ef235161fef404f682fd6955e7eed8dc125
697 Author: Keith Packard <keithp@keithp.com>
698 Date:   Mon Jun 27 23:26:20 2016 -0700
699
700     altos: Add STM SPI debugging
701     
702     This dumps out the SPI hardware state and history of SPI operations
703     when compiled with -DDEBUG=1. Without that, this patch does nothing.
704     
705     Signed-off-by: Keith Packard <keithp@keithp.com>
706
707 commit f418584d4d225827e08f56de86055eb3f074f8d1
708 Author: Keith Packard <keithp@keithp.com>
709 Date:   Mon Jun 27 17:26:19 2016 -0700
710
711     altos: Add STM DMA debugging
712     
713     This provides a command that shows current DMA operations when
714     compiled with -DDEBUG=1. Without that, this patch has no effect.
715     
716     Signed-off-by: Keith Packard <keithp@keithp.com>
717
718 commit 2e60cd22f6789c94343e6432822cedab028dc1ba
719 Author: Keith Packard <keithp@keithp.com>
720 Date:   Tue Jun 28 18:25:44 2016 -0700
721
722     altos/stm: Change ao_spi_send_sync definition to take const source
723     
724     Provides for a bit better error checking.
725     
726     Signed-off-by: Keith Packard <keithp@keithp.com>
727
728 commit 21a29c7452398e0cca0fb90f99fa42a2a0684668
729 Author: Keith Packard <keithp@keithp.com>
730 Date:   Tue Jun 28 17:15:27 2016 -0700
731
732     altos/stm: Add more SPI status register bits
733     
734     These weren't the original version of the docs that we had.
735     
736     Signed-off-by: Keith Packard <keithp@keithp.com>
737
738 commit 785d2697376ebd20531d22441a60c41bd927b42a
739 Author: Keith Packard <keithp@keithp.com>
740 Date:   Tue Jun 28 17:12:48 2016 -0700
741
742     altos/stm: use 0xff for dma mutex value for allocated mutexes
743     
744     DMA channels which are 'allocated' can't be shared. Instead of using
745     the value '1' in the related 'mutex', use 0xff which won't match any task.
746     
747     Signed-off-by: Keith Packard <keithp@keithp.com>
748
749 commit 0dec7d0885970a7d73468dd77220bae78e161b40
750 Author: Keith Packard <keithp@keithp.com>
751 Date:   Tue Jun 28 17:11:38 2016 -0700
752
753     altos/stm: remove ao_dma_abort
754     
755     This function isn't used anywhere.
756     
757     Signed-off-by: Keith Packard <keithp@keithp.com>
758
759 commit 974aaf73cbb720f1b1183cc239001528b6c7a5b9
760 Author: Keith Packard <keithp@keithp.com>
761 Date:   Tue Jun 28 17:09:00 2016 -0700
762
763     altos: Move comment in ao_sleep_for next to related code
764     
765     The comment got moved to the wrong place
766     
767     Signed-off-by: Keith Packard <keithp@keithp.com>
768
769 commit a7e0bb5eb661cfde31c383d605cb9cb8ca568bc7
770 Author: Keith Packard <keithp@keithp.com>
771 Date:   Tue Jun 28 17:04:59 2016 -0700
772
773     altos: Block interrupts while waking tasks sleeping on timers.
774     
775     Interrupts may not be blocked in the timer ISR, but they need to be
776     while walking the pending timer list and moving tasks back to the run
777     queue.
778     
779     Signed-off-by: Keith Packard <keithp@keithp.com>
780
781 commit 40abb0d1e2f43a60ffa34b055ebb913ee3e20faf
782 Author: Keith Packard <keithp@keithp.com>
783 Date:   Tue Jun 28 00:07:23 2016 -0700
784
785     altosui: Deliver firmware for Tmega 2.0 and TBT 3.0 for Windows too
786     
787     1.6.4 added Tmega 2.0 and TBT 3.0 firmware to linux and mac, but
788     neglected windows.
789     
790     Signed-off-by: Keith Packard <keithp@keithp.com>
791
792 commit 5b7e81628437389014fdd39e323a6f0176e02ba6
793 Author: Keith Packard <keithp@keithp.com>
794 Date:   Mon Jun 27 23:28:28 2016 -0700
795
796     Mark testing version 1.6.4.1
797     
798     Signed-off-by: Keith Packard <keithp@keithp.com>
799
800 commit 6d15cf1580563aea90e9c47f5b268c9c7bb9ba26
801 Author: Keith Packard <keithp@keithp.com>
802 Date:   Fri Jun 24 12:07:36 2016 -0700
803
804     altosdroid: Deal with multiple installed android SDKs
805     
806     Use the latest SDK's zipalign
807     
808     Signed-off-by: Keith Packard <keithp@keithp.com>
809
810 commit 3374a9069618658a33af54472d8670e3086af1e0
811 Author: Keith Packard <keithp@keithp.com>
812 Date:   Fri Jun 24 12:06:32 2016 -0700
813
814     ao-tools/ao-chaosread: Document length (-l) option
815     
816     Signed-off-by: Keith Packard <keithp@keithp.com>
817
818 commit ca59786b5022f592f6516a3ac54708789db14c94
819 Author: Keith Packard <keithp@keithp.com>
820 Date:   Mon Jun 20 10:19:32 2016 -0700
821
822     Bump android version to 13
823     
824     Need to update the maps API key in the package
825     
826     Signed-off-by: Keith Packard <keithp@keithp.com>
827
828 commit 10fa950cb9fee0ba28adfc5ead108657655bb289
829 Author: Bdale Garbee <bdale@gag.com>
830 Date:   Wed Jun 22 15:01:09 2016 -0600
831
832     switch libgtk-3-bin build-dep to gtk-update-icon-cache, closes: #825455
833
834 commit ed6eb010614b5b27757619fc629d7330fc8c4122
835 Author: Keith Packard <keithp@keithp.com>
836 Date:   Fri Jun 17 10:18:20 2016 -0700
837
838     doc: Add install-html script
839     
840     This script strips the XML-ish bits from html files so that ikiwiki
841     can parse them correctly
842     
843     Signed-off-by: Keith Packard <keithp@keithp.com>
844
845 commit 639e461ded29a48c155afea12171cbfc191ccfd7
846 Author: Bdale Garbee <bdale@gag.com>
847 Date:   Fri Jun 17 10:01:17 2016 -0600
848
849     releasing 1.6.4
850
851 commit 31cf047113ec72a78f4b500223a2c6be23bc86fd
852 Merge: 2f0c977 afe74c0
853 Author: Bdale Garbee <bdale@gag.com>
854 Date:   Fri Jun 17 10:00:10 2016 -0600
855
856     Merge branch 'master' into branch-1.6
857
858 commit afe74c067a31ce420d0d4cdac2069c1d258a5114
859 Author: Keith Packard <keithp@keithp.com>
860 Date:   Fri Jun 17 08:58:06 2016 -0700
861
862     Bump version to 1.6.4
863     
864     Signed-off-by: Keith Packard <keithp@keithp.com>
865
866 commit 0c5a1bea3ffa7c4b6b1503733e33911cbfcb3e80
867 Author: Keith Packard <keithp@keithp.com>
868 Date:   Fri Jun 17 08:54:19 2016 -0700
869
870     altoslib: Stop reflective JSON class walk at Object instead of null
871     
872     Android has classes above Object which are all tied together which
873     cause the object walking to fail in pretty spectacular ways. As Object
874     has no interesting fields, that serves as a fine barrier to the super
875     class walk and works on both android and real java.
876     
877     Signed-off-by: Keith Packard <keithp@keithp.com>
878
879 commit 383dec4449f8160c06804fba06290e7a07335934
880 Author: Keith Packard <keithp@keithp.com>
881 Date:   Fri Jun 17 08:27:12 2016 -0700
882
883     altosui: Print filename before attempting to parse in --summary mode
884     
885     Any problems handling the file are easier to debug if the filename is
886     visible above the error message.
887     
888     Signed-off-by: Keith Packard <keithp@keithp.com>
889
890 commit e8250fcb267a34fbbd8b88c6dcc8eec419bbcc68
891 Author: Keith Packard <keithp@keithp.com>
892 Date:   Fri Jun 17 08:26:31 2016 -0700
893
894     altoslib: Add back some JSON exception debugging printfs
895     
896     These make it possible to figure out where the JSON code went wrong.
897     
898     Signed-off-by: Keith Packard <keithp@keithp.com>
899
900 commit a46df4f69984e3ef0064c2b211438c8d8ffaab68
901 Author: Keith Packard <keithp@keithp.com>
902 Date:   Fri Jun 17 08:17:57 2016 -0700
903
904     altoslib: Add construction for remaining primitive array types to JSON
905     
906     AltosCompanion has an array of ints, which was missed until I tried a
907     telemetry file with companion data.
908     
909     Signed-off-by: Keith Packard <keithp@keithp.com>
910
911 commit 1ed6a3fb6356415c0d57ce2ce556435c6ff06e73
912 Author: Keith Packard <keithp@keithp.com>
913 Date:   Fri Jun 17 08:17:15 2016 -0700
914
915     altoslib: Add null constructor for AltosCompanion
916     
917     This lets it be used by the JSON code.
918     
919     Signed-off-by: Keith Packard <keithp@keithp.com>
920
921 commit 1dce20f7eee56166ac61798ca26eeb323dc8f012
922 Author: Keith Packard <keithp@keithp.com>
923 Date:   Fri Jun 17 00:52:38 2016 -0700
924
925     altoslib: Get rid of manual JSON encoding stuff
926     
927     Now that the reflective JSON stuff is working, we can delete all of
928     the manual code.
929     
930     Signed-off-by: Keith Packard <keithp@keithp.com>
931
932 commit 7175774c4f60ed3efd54417f2035b50ea0108c7b
933 Author: Keith Packard <keithp@keithp.com>
934 Date:   Fri Jun 17 00:02:05 2016 -0700
935
936     altoslib: Improve AltosState save/restore debugging
937     
938     When save/restore generate different values, write out the two
939     versions to one.json and two.json for easy comparison.
940     
941     Signed-off-by: Keith Packard <keithp@keithp.com>
942
943 commit 8df6afe843e184e98e5d965cee3af562dfa30a3b
944 Author: Keith Packard <keithp@keithp.com>
945 Date:   Fri Jun 17 00:01:15 2016 -0700
946
947     altoslib: Use reflection JSON code for frequency preferences
948     
949     This replaces the non-reflective JSON code with reflective code, which
950     is much shorter.
951     
952     Signed-off-by: Keith Packard <keithp@keithp.com>
953
954 commit 93de1d7ec841c55f5a1a63d34b422780a6fbe3c3
955 Author: Keith Packard <keithp@keithp.com>
956 Date:   Fri Jun 17 00:00:09 2016 -0700
957
958     altoslib: Add JSON-based object saving/restoring code
959     
960     This uses Java reflection to construct JSON strings for
961     most Java objects.
962     
963     Signed-off-by: Keith Packard <keithp@keithp.com>
964
965 commit 2a1b7c6c509d4d19de21abf02b63aeacba269d13
966 Author: Keith Packard <keithp@keithp.com>
967 Date:   Thu Jun 16 23:59:06 2016 -0700
968
969     altoslib: Add null constructors to AltosQuaternion and AltosRotation
970     
971     These will be used in the reflection-based JSON code
972     
973     Signed-off-by: Keith Packard <keithp@keithp.com>
974
975 commit f7e2f7f430e612c682bf55478860054ce94b995f
976 Author: Keith Packard <keithp@keithp.com>
977 Date:   Wed Jun 15 22:52:08 2016 -0700
978
979     altoslib: Remove AltosHashSet code
980     
981     Everything has switched to JSON now.
982     
983     Signed-off-by: Keith Packard <keithp@keithp.com>
984
985 commit 1b5ea911049a8afae6af475a4a2bf62a6e3aa57b
986 Author: Keith Packard <keithp@keithp.com>
987 Date:   Wed Jun 15 22:40:27 2016 -0700
988
989     altoslib: Switch preserved state format to JSON
990     
991     This is much easier to debug than the icky strings with backslashes everywhere.
992     
993     Signed-off-by: Keith Packard <keithp@keithp.com>
994
995 commit 1de8b6c340cec0b5a327392686c5a4e00f201e98
996 Author: Keith Packard <keithp@keithp.com>
997 Date:   Wed Jun 15 22:39:31 2016 -0700
998
999     doc: Updates to 1.6.4 release notes.
1000     
1001     Note USB fixes for host reboot and other changes.
1002     
1003     Signed-off-by: Keith Packard <keithp@keithp.com>
1004
1005 commit f28db1102685c87b9f4278268f7e91f5df18374a
1006 Author: Keith Packard <keithp@keithp.com>
1007 Date:   Wed Jun 15 22:38:32 2016 -0700
1008
1009     altosui: Don't open command window when --graph is provided
1010     
1011     When the user explicitly asks to open a graph, don't bring up the
1012     command button window too.
1013     
1014     Signed-off-by: Keith Packard <keithp@keithp.com>
1015
1016 commit 2a4d741872449b5332f28e018fa3acc53ed7d891
1017 Author: Keith Packard <keithp@keithp.com>
1018 Date:   Wed Jun 15 22:37:39 2016 -0700
1019
1020     altosuilib: Track open frames, exit when none remain
1021     
1022     This will let us not have the altosui window open by causing the
1023     application to shut down when the last frame closes.
1024     
1025     Signed-off-by: Keith Packard <keithp@keithp.com>
1026
1027 commit 04c6f4c54ac10f6464ffb8cab2186ac2b2eafb00
1028 Author: Keith Packard <keithp@keithp.com>
1029 Date:   Wed Jun 15 22:36:35 2016 -0700
1030
1031     altosui: Remove missing items from --summary output
1032     
1033     Check all values for MISSING before printing them.
1034     
1035     Signed-off-by: Keith Packard <keithp@keithp.com>
1036
1037 commit 7fd28830b6f7a20b35d85a92047ccb94c965fe29
1038 Author: Keith Packard <keithp@keithp.com>
1039 Date:   Wed Jun 15 22:33:55 2016 -0700
1040
1041     altosdroid: Auto save freq changes on 'ok'
1042     
1043     Add any pending changes in the edit entries to the frequency set when
1044     the user selects 'ok'.
1045     
1046     Signed-off-by: Keith Packard <keithp@keithp.com>
1047
1048 commit 96eb350d3dfc83f6dfb31bbab1427f9206acde79
1049 Author: Bdale Garbee <bdale@gag.com>
1050 Date:   Sun Jun 12 09:23:36 2016 -0600
1051
1052     extend "ok" temp range to 40C, since battery charger on bench can drive temp above
1053     35C at times in Bdale and Robert's production testing
1054
1055 commit eee7fa303fb0d80ac5d7b9c5a86af60333f61951
1056 Author: Keith Packard <keithp@keithp.com>
1057 Date:   Sat Jun 11 22:17:01 2016 -0700
1058
1059     altos/stmf0: Remove ao_usb_free
1060     
1061     This can't work without a lot more effort.
1062     
1063     Signed-off-by: Keith Packard <keithp@keithp.com>
1064
1065 commit 1704d27248f1845c545ec61cf1bad58bf41189af
1066 Author: Keith Packard <keithp@keithp.com>
1067 Date:   Sat Jun 11 22:16:12 2016 -0700
1068
1069     altos/stmf0: Rework the sram allocation to save a few text bytes
1070     
1071     Boot loaders were going over 4096 bytes of ROM. I suspect we'll need
1072     more serious work soon.
1073     
1074     Signed-off-by: Keith Packard <keithp@keithp.com>
1075
1076 commit 36a08dc89ece6e2a2f0f69e3b31da17d66ceb2e2
1077 Author: Keith Packard <keithp@keithp.com>
1078 Date:   Fri Jun 10 14:40:26 2016 -0700
1079
1080     altos/cc1115l: Reduce trace buffer size
1081     
1082     A 32-element trace buffer is all the larger we can fit in teledongle.
1083     
1084     Signed-off-by: Keith Packard <keithp@keithp.com>
1085
1086 commit 7d21ff641a7bc35318f0f637589eabb5bb6c5152
1087 Author: Keith Packard <keithp@keithp.com>
1088 Date:   Fri Jun 10 14:39:25 2016 -0700
1089
1090     altos/stm: Handle USB reset in STM32L usb driver
1091     
1092     Just like lpc and stmf0, deal with the host resetting the bus while
1093     rebooting by restoring all usb-related data to the initial values.
1094     
1095     Signed-off-by: Keith Packard <keithp@keithp.com>
1096
1097 commit 54f8d53584d0a902676b441cd122c01cd54f2283
1098 Author: Keith Packard <keithp@keithp.com>
1099 Date:   Fri Jun 10 14:33:50 2016 -0700
1100
1101     altos/lpc: Handle USB reset by resetting internal state
1102     
1103     Just like stmf0, this clears internal state at USB reset time so the
1104     driver can survive host OS reboots.
1105     
1106     Signed-off-by: Keith Packard <keithp@keithp.com>
1107
1108 commit 36ba97fabbed2f2a4a89da5be221c630ea3ff66f
1109 Author: Keith Packard <keithp@keithp.com>
1110 Date:   Thu Jun 9 22:06:30 2016 -0700
1111
1112     stmf0: Do not send more data than requested for GET_DESCRIPTOR
1113     
1114     When Linux boots, it asks for only the first 8 bytes of the device
1115     descriptor; we must limit the amount of data sent back to that amount
1116     or USB will get wedged.
1117     
1118     Signed-off-by: Keith Packard <keithp@keithp.com>
1119
1120 commit 2970de9f92243b11d3beef56f3b1df3ef3579b95
1121 Author: Keith Packard <keithp@keithp.com>
1122 Date:   Thu Jun 9 22:05:24 2016 -0700
1123
1124     stmf0: Clear all USB state when resetting chip. Wakeup all sleepers
1125     
1126     When USB is reset, but the board is not power cycled, all of the
1127     internal USB state needs to be reset, and any tasks blocked on sending
1128     or receiving packets need to be awoken so they can go wait for USB to
1129     start running again.
1130     
1131     Signed-off-by: Keith Packard <keithp@keithp.com>
1132
1133 commit 55c8e5aff2cc7b941503a04970f7d368261af52a
1134 Author: Keith Packard <keithp@keithp.com>
1135 Date:   Thu Jun 9 22:03:45 2016 -0700
1136
1137     telegps-v1.0: Document how SN 1959 was fixed
1138     
1139     SN1959 was fixed by jumpering pin 8 to pin 10 so that the DONE_INT_PIN
1140     could be switched from PIO 2 to PIO 4 as pin 8 appeared to have failed.
1141     
1142     Signed-off-by: Keith Packard <keithp@keithp.com>
1143
1144 commit 4d57c8b87f29f23beb0d88f1cef179209b1c5992
1145 Author: Keith Packard <keithp@keithp.com>
1146 Date:   Sun Jun 5 09:17:12 2016 -0700
1147
1148     altosuilib: Only display map debugging when serial_debug is enabled
1149     
1150     This keeps the application quiet for most users.
1151     
1152     Signed-off-by: Keith Packard <keithp@keithp.com>
1153
1154 commit f982248573c1b646ac53fde980a60ada5404f6aa
1155 Author: Keith Packard <keithp@keithp.com>
1156 Date:   Fri May 27 20:30:18 2016 -0700
1157
1158     altosuilib: Fill preload map on site or lat/lon change
1159     
1160     This loads the map view with the selected area when the site entry is
1161     changed or the user hits return in the lat/lon fields. This lets you
1162     see the target launch site without having to load the whole preload set.
1163     
1164     Signed-off-by: Keith Packard <keithp@keithp.com>
1165
1166 commit f5944ba4eb3f419f8cad461872d048b5adf7b566
1167 Author: Keith Packard <keithp@keithp.com>
1168 Date:   Thu May 26 14:33:44 2016 -0700
1169
1170     doc: pad/idle indicator table was busted
1171     
1172     I stuck a pile of extra '|' characters in the table by mistake.
1173     
1174     Reported-by: Stan <stanleyosmith@gmail.com>
1175     Signed-off-by: Keith Packard <keithp@keithp.com>
1176
1177 commit 0d966b74f756e88e5dffa92400b105f540429262
1178 Author: Keith Packard <keithp@keithp.com>
1179 Date:   Tue May 24 23:44:50 2016 -0700
1180
1181     altosuilib: Rename AltosUIMap*New.java to AltosUIMap*.java
1182     
1183     This code isn't really new anymore...
1184     
1185     Signed-off-by: Keith Packard <keithp@keithp.com>
1186
1187 commit 59a9bdd73b580a9c934a574be7bf45c5033e14b5
1188 Author: Keith Packard <keithp@keithp.com>
1189 Date:   Tue May 24 23:40:47 2016 -0700
1190
1191     altosuilib: Have map preload respond to units and font size changes
1192     
1193     Just add suitable listeners so that the display updates when
1194     preferences change.
1195     
1196     Signed-off-by: Keith Packard <keithp@keithp.com>
1197
1198 commit 7b5521966119fcc290591bf1b397506ef44cedea
1199 Author: Keith Packard <keithp@keithp.com>
1200 Date:   Tue May 24 23:40:03 2016 -0700
1201
1202     altoslib: use miles for distances > 1000ft.
1203     
1204     This makes both the map line and the other distance displays use miles
1205     for distances greater than 1000 feet.
1206     
1207     Signed-off-by: Keith Packard <keithp@keithp.com>
1208
1209 commit 1ea855f95772a8a394407e0070be1ed9cc0f6650
1210 Author: Keith Packard <keithp@keithp.com>
1211 Date:   Sun May 15 13:59:12 2016 -0700
1212
1213     telegps: Add monitor idle mode
1214     
1215     This monitors directly connected devices. No support for doing monitor
1216     idle using packet mode, as TeleGPS doesn't support that.
1217     
1218     Signed-off-by: Keith Packard <keithp@keithp.com>
1219
1220 commit df276262900551a5eecd94903eefe9a264b161ec
1221 Author: Keith Packard <keithp@keithp.com>
1222 Date:   Sun May 15 13:58:41 2016 -0700
1223
1224     telegps: Use log_space when flight_log_max is missing
1225     
1226     TeleGPS has this, but not flight_log_max
1227     
1228     Signed-off-by: Keith Packard <keithp@keithp.com>
1229
1230 commit 9287122edc0e2dec6b2542f4cc8cb9cf2900bb33
1231 Author: Keith Packard <keithp@keithp.com>
1232 Date:   Sun May 15 13:57:28 2016 -0700
1233
1234     altoslib: Add AltosIdleReader
1235     
1236     This provides an AltosFlightReader interface for monitor idle mode,
1237     making that easier to provide in TeleGPS
1238     
1239     Signed-off-by: Keith Packard <keithp@keithp.com>
1240
1241 commit 3c4278a29082a2af5911e22e59f8f52549f549e3
1242 Author: Keith Packard <keithp@keithp.com>
1243 Date:   Sun May 15 13:56:21 2016 -0700
1244
1245     altoslib: Add log_space to AltosState
1246     
1247     TeleGPS doesn't have flight_log_max value, but does have log_space
1248     which we can use for the same thing in monitor idle mode.
1249     
1250     Signed-off-by: Keith Packard <keithp@keithp.com>
1251
1252 commit f484216e72f81decb2aaa7289d6f69678990b7af
1253 Author: Keith Packard <keithp@keithp.com>
1254 Date:   Sun May 15 13:55:12 2016 -0700
1255
1256     altoslib: Set version and log space from AltosIdleFetch
1257     
1258     Just more data for monitor idle mode
1259     
1260     Signed-off-by: Keith Packard <keithp@keithp.com>
1261
1262 commit 29123a60272777916e5aae08369d0f03c2f135b6
1263 Author: Keith Packard <keithp@keithp.com>
1264 Date:   Sun May 15 13:53:38 2016 -0700
1265
1266     altoslib: Allow empty values in AltosHashSet representation
1267     
1268     Check for value termination before appending the first character.
1269     
1270     Signed-off-by: Keith Packard <keithp@keithp.com>
1271
1272 commit b1a90adac9f6e2a609ce1ccd6749462bb5c9adbe
1273 Author: Keith Packard <keithp@keithp.com>
1274 Date:   Thu May 12 23:33:53 2016 -0700
1275
1276     altoslib: Store saved state in version-independent format
1277     
1278     Use AltosHashSet for AltosState so that AltosDroid doesn't lose
1279     tracker information when the application is upgraded.
1280     
1281     Signed-off-by: Keith Packard <keithp@keithp.com>
1282
1283 commit b13037fad0905c5933d1ff579122ba1357b02eea
1284 Author: Keith Packard <keithp@keithp.com>
1285 Date:   Thu May 12 19:13:05 2016 -0700
1286
1287     altoslib: Store common frequencies in library version-independent form
1288     
1289     Serializable Objects in java are very specific to the class being
1290     serialized. As we bump the name of the library on a regular basis to
1291     note API/ABI issues, this mean a saved a Serializable object in
1292     the preferences database will fail to load across library version
1293     upgrades.
1294     
1295     The saved tracker state and saved common frequencies were the only
1296     objects saved in this form; this patch adds infrastructure for writing
1297     objects in a version-independent form, and then adds support for
1298     saving frequencies in that form.
1299     
1300     Signed-off-by: Keith Packard <keithp@keithp.com>
1301
1302 commit 2f4903f903223312d0a3a03dfd413059f24a07f5
1303 Author: Keith Packard <keithp@keithp.com>
1304 Date:   Thu May 12 19:10:19 2016 -0700
1305
1306     altosui/telegps/micropeak: Handle both MULTI_LIB and non-MULTI_LIB builds
1307     
1308     On x86 systems with -m32 and -m64 compilers, both libaltos32.so and
1309     libaltos64.so are built. Otherwise, we should use libaltos.so
1310     
1311     altosui only dealt with libaltos32.so and libaltos64.so, so it only
1312     worked on MULTI_LIB systems. telegps and micropeak only used
1313     libaltos.so, so they wouldn't work correctly on multi-lib systems.
1314     
1315     Fix all of them to work either way.
1316     
1317     Signed-off-by: Keith Packard <keithp@keithp.com>
1318
1319 commit 64ed56fe3132faa8585c9cd7b0261ac85f70a7bd
1320 Author: Keith Packard <keithp@keithp.com>
1321 Date:   Thu May 12 18:05:14 2016 -0700
1322
1323     Automatically run 'git submodule update' if necessary
1324     
1325     This makes sure pdclib exists by updating for the all and
1326     all-recursive targets
1327     
1328     Signed-off-by: Keith Packard <keithp@keithp.com>
1329
1330 commit 97adfff4cfb67c17a96f3ff46606b4e439422b01
1331 Author: Keith Packard <keithp@keithp.com>
1332 Date:   Thu May 12 12:14:03 2016 -0700
1333
1334     Bump java library versions
1335     
1336     Prepare for 1.6.4 release
1337     
1338     Signed-off-by: Keith Packard <keithp@keithp.com>
1339
1340 commit 3450efdf8bd736a33900493eeda348ec2dacf7e8
1341 Author: Keith Packard <keithp@keithp.com>
1342 Date:   Thu May 12 12:13:45 2016 -0700
1343
1344     Bump android app version
1345     
1346     Prepare for 1.6.4 release
1347     
1348     Signed-off-by: Keith Packard <keithp@keithp.com>
1349
1350 commit ba84b9c908d5909ea5a148c249709b21640f1eac
1351 Author: Keith Packard <keithp@keithp.com>
1352 Date:   Wed May 11 23:31:53 2016 -0700
1353
1354     telegps: Adapt to distance units switching changes
1355     
1356     'show_units' is no longer available; use 'parse_units' instead
1357     
1358     Signed-off-by: Keith Packard <keithp@keithp.com>
1359
1360 commit 2ec7e14f0104e3a227ff566fa2fc1f6286ddd9d0
1361 Author: Keith Packard <keithp@keithp.com>
1362 Date:   Wed May 11 12:48:10 2016 -0700
1363
1364     altoslib: Get rid of AltosMap from AltosMapLoader
1365     
1366     Cleans up the loader API and eliminates a AltosMapTile for every chunk
1367     of map data.
1368     
1369     Signed-off-by: Keith Packard <keithp@keithp.com>
1370
1371 commit ab905d2f7d8929080042cfd16cc418ea5792c3cb
1372 Author: Keith Packard <keithp@keithp.com>
1373 Date:   Wed May 11 12:43:51 2016 -0700
1374
1375     altosdroid: make disconnect stick past pause/restart
1376     
1377     Clear the active_device preference on disconnect so we don't reconnect
1378     anytime the service gets activated.
1379     
1380     Signed-off-by: Keith Packard <keithp@keithp.com>
1381
1382 commit 0a50669b1fde3e3c1cbc08c4836613b58ead219b
1383 Author: Keith Packard <keithp@keithp.com>
1384 Date:   Wed May 11 10:47:31 2016 -0700
1385
1386     altoslib: Clean up map file and url handling
1387     
1388     move it all to AltosMapStore.java
1389     
1390     Signed-off-by: Keith Packard <keithp@keithp.com>
1391
1392 commit 471091d0fddf09ed69df75e4f2fdd92e5f57b9c5
1393 Author: Keith Packard <keithp@keithp.com>
1394 Date:   Tue May 10 23:13:14 2016 -0700
1395
1396     doc: Start update for 1.6.4
1397     
1398     Signed-off-by: Keith Packard <keithp@keithp.com>
1399
1400 commit b2710128a715a109745ec40553a3d4149a7f49ab
1401 Author: Keith Packard <keithp@keithp.com>
1402 Date:   Tue May 10 23:04:23 2016 -0700
1403
1404     altosuilib: Don't flicker missing voltages when changing units
1405     
1406     For some reason, a value of MISSING -1 was getting used, which caused
1407     displays to light up briefly with a weird value when switching between
1408     metric and imperial units.
1409     
1410     Signed-off-by: Keith Packard <keithp@keithp.com>
1411
1412 commit 895cb58a6cd7424ee63c24d791b5988f41f85d31
1413 Author: Keith Packard <keithp@keithp.com>
1414 Date:   Tue May 10 23:03:45 2016 -0700
1415
1416     altosdroid: Rate limit map loading pacifier
1417     
1418     Just like in altosui.
1419     
1420     Signed-off-by: Keith Packard <keithp@keithp.com>
1421
1422 commit c5f49d0ac254047f13c6c1ecfb5520eff72109ac
1423 Author: Keith Packard <keithp@keithp.com>
1424 Date:   Tue May 10 23:02:09 2016 -0700
1425
1426     altoslib: Allow map preloading to be aborted
1427     
1428     Close the map preload dialog and it would be nice to stop loading map
1429     bits.
1430     
1431     Signed-off-by: Keith Packard <keithp@keithp.com>
1432
1433 commit 2e551e7c5f82a7e35d39e8f73e8e526e5484cd5d
1434 Author: Keith Packard <keithp@keithp.com>
1435 Date:   Tue May 10 22:50:23 2016 -0700
1436
1437     altosuilib: Rate limit map loading pacifier updates
1438     
1439     Just updating the pacifier was consuming a huge amount of CPU. Update
1440     no more than once every 100ms.
1441     
1442     Signed-off-by: Keith Packard <keithp@keithp.com>
1443
1444 commit 42021d9fdc6f7a74cc9b20ebf3cf60b4c5f4ea82
1445 Author: Keith Packard <keithp@keithp.com>
1446 Date:   Tue May 10 22:49:04 2016 -0700
1447
1448     altoslib: Remove some debug printf calls
1449     
1450     Signed-off-by: Keith Packard <keithp@keithp.com>
1451
1452 commit 60f4d69592c440ab7bb67a04f4c07fc7279d2c20
1453 Author: Keith Packard <keithp@keithp.com>
1454 Date:   Tue May 10 22:46:58 2016 -0700
1455
1456     altoslib: Switch distance from m/ft to km/miles for large values
1457     
1458     This adds lots of infrastructure to deal with making the unit used
1459     depend on the value itself, and then uses it only for distances.
1460     
1461     Signed-off-by: Keith Packard <keithp@keithp.com>
1462
1463 commit 6a6da23335e6e5864387c7a22946f80f51056a4f
1464 Author: Keith Packard <keithp@keithp.com>
1465 Date:   Tue May 10 12:29:14 2016 -0700
1466
1467     Add TeleMega to spec list. Add TeleGPS RF output.
1468     
1469     Signed-off-by: Keith Packard <keithp@keithp.com>
1470
1471 commit d92ca1cd4dfbacebd7aa1bbcfc671daee35dc808
1472 Author: Keith Packard <keithp@keithp.com>
1473 Date:   Tue May 10 12:28:51 2016 -0700
1474
1475     Publish firmware with keithp-fat
1476     
1477     Signed-off-by: Keith Packard <keithp@keithp.com>
1478
1479 commit a371253bb5fc25e34d87507dc9b814530f4e28f6
1480 Author: Keith Packard <keithp@keithp.com>
1481 Date:   Mon May 9 17:57:12 2016 -0700
1482
1483     altosdroid: Check for closed before writing/reading bluetooth
1484     
1485     Signed-off-by: Keith Packard <keithp@keithp.com>
1486
1487 commit c57d86f6c9b56e90c986f460f93663a3e16cdf7a
1488 Author: Keith Packard <keithp@keithp.com>
1489 Date:   Mon May 9 17:56:28 2016 -0700
1490
1491     altosui/telegps: Ship firmware for new hardware
1492     
1493     TBT v3.0 and Tmega v2.0
1494     
1495     Signed-off-by: Keith Packard <keithp@keithp.com>
1496
1497 commit f078235803a80403014b3e54039fd2d0e0704367
1498 Merge: 04759dd c457c82
1499 Author: Bdale Garbee <bdale@gag.com>
1500 Date:   Mon May 9 15:52:38 2016 -0600
1501
1502     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
1503
1504 commit 04759dddeb29e4de9f7e6b3673dc06c633fa2369
1505 Author: Bdale Garbee <bdale@gag.com>
1506 Date:   Mon May 9 15:52:21 2016 -0600
1507
1508     process updates made during 1.6.3 release cycle
1509
1510 commit c457c827a7445098ba5effd410de754ff5c65843
1511 Author: Keith Packard <keithp@keithp.com>
1512 Date:   Mon May 9 11:48:42 2016 -0700
1513
1514     Bump version to 1.6.3.1
1515     
1516     Post 1.6.3 release
1517     
1518     Signed-off-by: Keith Packard <keithp@keithp.com>
1519
1520 commit b25785ee0afebaf516b8a1b8d08d36fbdadd74ca
1521 Author: Keith Packard <keithp@keithp.com>
1522 Date:   Mon May 9 11:33:48 2016 -0700
1523
1524     altos/cc1111: Use SW to drive UART RTS pin
1525     
1526     Can't get the hw to work.
1527     
1528     Signed-off-by: Keith Packard <keithp@keithp.com>
1529
1530 commit 2f0c977c747824d0798550ac64eceb1d66c50efd
1531 Author: Bdale Garbee <bdale@gag.com>
1532 Date:   Fri May 6 18:12:20 2016 -0600
1533
1534     releasing 1.6.3
1535
1536 commit 15ae97fbdb4e75a74ea2e716194661d19dec46ff
1537 Merge: ac7be4a 1216c0c
1538 Author: Bdale Garbee <bdale@gag.com>
1539 Date:   Fri May 6 18:11:01 2016 -0600
1540
1541     Merge branch 'master' into branch-1.6
1542
1543 commit 1216c0ccece4ca1492967a341c5d01e9e5068ed8
1544 Author: Keith Packard <keithp@keithp.com>
1545 Date:   Fri May 6 17:10:14 2016 -0700
1546
1547     Ignore some built files for 1.6.3
1548     
1549     Signed-off-by: Keith Packard <keithp@keithp.com>
1550
1551 commit ac7be4a40df88ee3a0992e041635e4ac4cf5ac48
1552 Merge: b53c78e ce4c8a8
1553 Author: Bdale Garbee <bdale@gag.com>
1554 Date:   Fri May 6 17:59:39 2016 -0600
1555
1556     Merge branch 'master' into branch-1.6
1557
1558 commit ce4c8a8ad57515e851207b0a82f3af791bb30d3e
1559 Merge: aa9630c 320e312
1560 Author: Bdale Garbee <bdale@gag.com>
1561 Date:   Fri May 6 17:49:30 2016 -0600
1562
1563     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
1564
1565 commit aa9630c30ee09bf358e77bf47ed0815a19237fca
1566 Author: Bdale Garbee <bdale@gag.com>
1567 Date:   Fri May 6 17:49:09 2016 -0600
1568
1569     add beep to TeleMega turnon script
1570
1571 commit 320e312db36fb6519a0bb1530d79595af18cdc86
1572 Author: Keith Packard <keithp@keithp.com>
1573 Date:   Fri May 6 16:46:57 2016 -0700
1574
1575     windows: Change install to look for browser in a different place
1576     
1577     The windows registry is a mystery.
1578     
1579     Signed-off-by: Keith Packard <keithp@keithp.com>
1580
1581 commit e0081f7ba6fc9f1e4484d3e291fd30065ad5b620
1582 Author: Keith Packard <keithp@keithp.com>
1583 Date:   Thu May 5 02:25:52 2016 -0700
1584
1585     altoslib: Fix map preloading callbacks, run in separate thread
1586     
1587     The map storage and tile callbacks were muddled together. Create
1588     clearly separate states for map data and have status updates be
1589     delivered when registering for new status events so that registration
1590     is sufficient to track the state without an explicit call to get the
1591     current state.
1592     
1593     Run the map tile creation in a separate thread so that even checking
1594     status of files on disk runs out of the UI thread.
1595     
1596     These fixes serve to make the pacifier update more smoothly, and also
1597     not over/under count tile loading so that the loading actually
1598     completes when all of the tiles are loaded.
1599     
1600     Signed-off-by: Keith Packard <keithp@keithp.com>
1601
1602 commit 13179f614a99cad3016832ac1b365eaa4208c10f
1603 Author: Keith Packard <keithp@keithp.com>
1604 Date:   Wed May 4 23:56:44 2016 -0700
1605
1606     micropeak: Change order of windows install so that java detect works
1607     
1608     I have no idea why this matters, but if you run the FTDI script before
1609     trying to detect java, then the javaw.exe program isn't found and java
1610     detection fails.
1611     
1612     Signed-off-by: Keith Packard <keithp@keithp.com>
1613
1614 commit 85191fe911a5ea4af384bff9b2ed9986679cd9fd
1615 Author: Keith Packard <keithp@keithp.com>
1616 Date:   Wed May 4 21:13:31 2016 -0700
1617
1618     doc: 1.6.3 release notes note TeleBT rts/cts and TM 2.0 monitor idle fixes
1619     
1620     Signed-off-by: Keith Packard <keithp@keithp.com>
1621
1622 commit 541996f95f9e26299618dbb79e723b82a52afd31
1623 Author: Keith Packard <keithp@keithp.com>
1624 Date:   Wed May 4 21:12:46 2016 -0700
1625
1626     doc: Update AltosDroid chapter for 1.6.3
1627     
1628     New menu structure, idle mode and frequency configuration
1629     
1630     Signed-off-by: Keith Packard <keithp@keithp.com>
1631
1632 commit b540f6f5b034f33b8e1d1c3b91e2403a56479caa
1633 Author: Keith Packard <keithp@keithp.com>
1634 Date:   Mon May 2 16:19:39 2016 -0700
1635
1636     altos: Make sure AO_MMA655X_INVERT is declared where needed
1637     
1638     Add #define AO_MMA655X_INVERT 0 to existing products which didn't
1639     declare it at all. This will make sure the value is set correctly for
1640     each new board.
1641     
1642     Signed-off-by: Keith Packard <keithp@keithp.com>
1643
1644 commit 0b0b359cbce6b818257b44b2a6aee0edcbaee40d
1645 Author: Keith Packard <keithp@keithp.com>
1646 Date:   Mon May 2 16:13:53 2016 -0700
1647
1648     altoslib: Deal with TeleMetrum v2.0 MMA6555 being inverted
1649     
1650     Dumping the MMA655X data with the 'A' command provides the raw sensor
1651     value. On TM v2.0 boards, the sensor is inverted, and all of the
1652     firmware uses the inverted value except for the 'dump the raw data'
1653     command. As a result, MonitorIdle was using the un-inverted value and
1654     displaying mystic values.
1655     
1656     I've fixed this in the ground station code by checking the product
1657     name and conditionally inverting the value (4095 - value) for
1658     TeleMetrum v2.0 products. Unknown products will generate a warning
1659     dialog on AltosUI so we'll catch places where we've failed to add a
1660     new product name.
1661     
1662     Signed-off-by: Keith Packard <keithp@keithp.com>
1663
1664 commit 1a797f5fd5d25ba635fd79ad7604763253caabf2
1665 Author: Keith Packard <keithp@keithp.com>
1666 Date:   Sat Apr 30 18:38:42 2016 -0700
1667
1668     publish AltosDroid in keithp-fat target
1669     
1670     Signed-off-by: Keith Packard <keithp@keithp.com>
1671
1672 commit 59466c1c2dbf95c427c2bb52304049eaac4d124f
1673 Author: Keith Packard <keithp@keithp.com>
1674 Date:   Sat Apr 30 18:37:05 2016 -0700
1675
1676     altoslib: Flush during set_state. Don't store listener state.
1677     
1678     The listener state wasn't used anyways, so don't bother storing
1679     it. Also, flush the state during set_state, which actually causes the
1680     state to be written out.
1681     
1682     Signed-off-by: Keith Packard <keithp@keithp.com>
1683
1684 commit 4219fd7720caeec196bf6cb1b4cf78c8fadaf3cd
1685 Author: Keith Packard <keithp@keithp.com>
1686 Date:   Sat Apr 30 18:33:25 2016 -0700
1687
1688     altoslib: Correct stats for flights without a real landing
1689     
1690     The landing time was miscomputed when the flight ended without
1691     entering the landed state, as when the recording terminates at
1692     apogee.
1693     
1694     This led to an uncomputed average boost accel, so that is now checked
1695     separately from max accel (which is done over the whole flight, not
1696     just boost).
1697     
1698     Signed-off-by: Keith Packard <keithp@keithp.com>
1699
1700 commit 9734f1198429dc8939eebf48b6e6acc1cef96485
1701 Author: Keith Packard <keithp@keithp.com>
1702 Date:   Sat Apr 30 18:30:16 2016 -0700
1703
1704     altosdroid: max height is a height, not a speed
1705     
1706     Was using the wrong units in the flight tab
1707     
1708     Signed-off-by: Keith Packard <keithp@keithp.com>
1709
1710 commit 7695da327ff8861a858b6695f4849fa1399548d8
1711 Author: Keith Packard <keithp@keithp.com>
1712 Date:   Sat Apr 30 08:46:52 2016 -0700
1713
1714     Revert "altos/stm: Run scheduler code on interrupt stack"
1715     
1716     This reverts commit 6a9546413d6a236c010e806b50506d870961d074.
1717     
1718     This causes the device to stop reliably handling interrupts.
1719
1720 commit 7db1cba64a2f6c80c5fe6e3073a0ff65be9c04c1
1721 Author: Keith Packard <keithp@keithp.com>
1722 Date:   Fri Apr 29 21:49:43 2016 -0700
1723
1724     doc: Add idle mode info to 1.6.3 release note
1725     
1726     Signed-off-by: Keith Packard <keithp@keithp.com>
1727
1728 commit ec20e2f72460010c4f59e6d59775671260e01026
1729 Author: Keith Packard <keithp@keithp.com>
1730 Date:   Thu Apr 28 12:29:16 2016 -0700
1731
1732     altoslib: Make AltosPreferencesBackend abstract. Add set/put Serializable
1733     
1734     This lets us add functionality to this directly, such as the new
1735     serializable APIs.
1736     
1737     Signed-off-by: Keith Packard <keithp@keithp.com>
1738
1739 commit 3c7b68b8a513b611500dfd734182e1a2e7bdd40c
1740 Author: Keith Packard <keithp@keithp.com>
1741 Date:   Wed Apr 27 01:40:47 2016 -0400
1742
1743     altosdroid: Add configurable frequency set
1744     
1745     Signed-off-by: Keith Packard <keithp@keithp.com>
1746
1747 commit 02f47fa98536eb0ecd58cd8f063600ced60e0a8a
1748 Author: Keith Packard <keithp@keithp.com>
1749 Date:   Wed Apr 27 01:39:01 2016 -0400
1750
1751     Fix key in AndroidManifest.xml.in
1752     
1753     Signed-off-by: Keith Packard <keithp@keithp.com>
1754
1755 commit d81f94fd5339d513de9bde5a2e19f8eca526344f
1756 Author: Keith Packard <keithp@keithp.com>
1757 Date:   Tue Apr 26 21:01:44 2016 -0400
1758
1759     altosdroid: Split setup functions to separate dialog
1760     
1761     Remove them from the options menu, handle all preferences through
1762     listeners.
1763     
1764     Signed-off-by: Keith Packard <keithp@keithp.com>
1765
1766 commit 204ae5142702044eb8ad2697a55028e904067958
1767 Author: Keith Packard <keithp@keithp.com>
1768 Date:   Mon Apr 25 23:12:34 2016 -0400
1769
1770     altosdroid: Add idle mode monitoring, reboot. Start igniters
1771     
1772     This adds three idle mode operations -- monitor idle, reboot flight
1773     computer and test igniters. The igniter test isn't quite wired up.
1774     
1775     Signed-off-by: Keith Packard <keithp@keithp.com>
1776
1777 commit 565404599fe9edf9ba16aec348eeb19ea31af743
1778 Author: Keith Packard <keithp@keithp.com>
1779 Date:   Mon Apr 25 18:50:58 2016 -0400
1780
1781     altos: Clear packet queue when starting packet master
1782     
1783     This avoids overfilling the packet buffer when
1784     disconnected. Applications using packet mode shouldn't expect that
1785     output be saved across master sessions.
1786     
1787     Signed-off-by: Keith Packard <keithp@keithp.com>
1788
1789 commit c816bea3536d025568dab313d7c8944a56ba0801
1790 Author: Keith Packard <keithp@keithp.com>
1791 Date:   Mon Apr 25 18:49:45 2016 -0400
1792
1793     altos/telebt-v3.0: Flip CTS/RTS pins for BT module
1794     
1795     These are wired backwards, so ask that the right pins be used, which
1796     requires switching to software control of the pins.
1797     
1798     Signed-off-by: Keith Packard <keithp@keithp.com>
1799
1800 commit 27319e4edbc503f193475b437fa5fe2937d47cbe
1801 Author: Keith Packard <keithp@keithp.com>
1802 Date:   Mon Apr 25 18:48:47 2016 -0400
1803
1804     altos/stm32l: Add support for software-driven HW flow control
1805     
1806     This allows applications to request that the flow control bits be
1807     driven from software rather than hardware, permitting more flexible
1808     pin configuration.
1809     
1810     Signed-off-by: Keith Packard <keithp@keithp.com>
1811
1812 commit 7c9a111ac1c88467ce28e03b4a9d3eabc9d7015b
1813 Author: Keith Packard <keithp@keithp.com>
1814 Date:   Tue Jan 19 23:53:27 2016 -0800
1815
1816     altos: Use TXE instead of TC for serial on STM32l
1817     
1818     Using TXE allows for full-speed communication, rather than waiting for
1819     each byte to be transmitted before inserting the next into the queue.
1820     
1821     Signed-off-by: Keith Packard <keithp@keithp.com>
1822
1823 commit eee2ca7fa7fd77be8ca5806cad7e250053465048
1824 Author: Keith Packard <keithp@keithp.com>
1825 Date:   Mon Apr 25 11:47:45 2016 -0400
1826
1827     Debug bits for telebt
1828
1829 commit a995d73838c8e7ec5126e563baa2e59d5e071b28
1830 Author: Keith Packard <keithp@keithp.com>
1831 Date:   Fri Apr 22 19:15:51 2016 -0400
1832
1833     altoslib: Don't try to drag lines around until map is loaded
1834     
1835     When the transform is null, it's hard to draw lines.
1836     
1837     Signed-off-by: Keith Packard <keithp@keithp.com>
1838
1839 commit a5373e2f9d2f1af211aa98029d448aeb518b45ce
1840 Author: Keith Packard <keithp@keithp.com>
1841 Date:   Fri Apr 22 19:15:05 2016 -0400
1842
1843     altoslib: Report exceptions caught while opening launch sites URL
1844     
1845     This just dumps them to stdout, which helps debug on Linux at least.
1846     
1847     Signed-off-by: Keith Packard <keithp@keithp.com>
1848
1849 commit 6bca0ed8183b85e5825eb0f4093dcd749592faf3
1850 Author: Keith Packard <keithp@keithp.com>
1851 Date:   Fri Apr 22 19:00:46 2016 -0400
1852
1853     altoslib: Use feet per second for imperial speed
1854     
1855     This is more useful during descent than miles per hour...
1856     
1857     Signed-off-by: Keith Packard <keithp@keithp.com>
1858
1859 commit f49fd5d2be68de97ebe65fa4f6484746e91dd677
1860 Author: Keith Packard <keithp@keithp.com>
1861 Date:   Fri Apr 22 18:53:32 2016 -0400
1862
1863     altosdroid: Run even without Bluetooth
1864     
1865     This lets us view old state information on USB-only devices, or when
1866     the bluetooth device can't be enabled.
1867     
1868     Signed-off-by: Keith Packard <keithp@keithp.com>
1869
1870 commit ea89feedd4185a5f583fa8ddf33a2ec0906e0dc0
1871 Author: Keith Packard <keithp@keithp.com>
1872 Date:   Fri Apr 22 18:52:42 2016 -0400
1873
1874     altosdroid: Redraw offline map when my location changes
1875     
1876     Update the map view even if there isn't any current telemetry data.
1877     
1878     Signed-off-by: Keith Packard <keithp@keithp.com>
1879
1880 commit 39af826ce9032e339929eb7917b1d29c87d03f69
1881 Author: Keith Packard <keithp@keithp.com>
1882 Date:   Fri Apr 22 17:32:10 2016 -0400
1883
1884     altosdroid: Track device location in app, not telemetry service
1885     
1886     This means we get location even if there isn't a telemetry device
1887     connected, making it possible to walk to old device locations
1888     
1889     Signed-off-by: Keith Packard <keithp@keithp.com>
1890
1891 commit b3f0c4d5c4ab8288db5fcabb0e848627031c4fd1
1892 Author: Keith Packard <keithp@keithp.com>
1893 Date:   Fri Apr 22 17:31:49 2016 -0400
1894
1895     Bump version to 1.6.3
1896     
1897     Signed-off-by: Keith Packard <keithp@keithp.com>
1898
1899 commit 57c1320962ad08d52e89d39bd5852f8d228dd872
1900 Author: Keith Packard <keithp@keithp.com>
1901 Date:   Thu Apr 21 22:37:35 2016 -0400
1902
1903     altosdroid: Can only use message once
1904     
1905     And here I thought re-using the message was clever. That generates a
1906     nice exception and crashes the program.
1907     
1908     Signed-off-by: Keith Packard <keithp@keithp.com>
1909
1910 commit 4d4a39b569d7982405748b961b93dcd33e59b833
1911 Author: Keith Packard <keithp@keithp.com>
1912 Date:   Thu Apr 21 21:32:50 2016 -0400
1913
1914     Add preliminary 1.6.3 release notes
1915     
1916     Signed-off-by: Keith Packard <keithp@keithp.com>
1917
1918 commit 565d8f22c23c7c6c6817d11ef1ca02e70ba5d2ae
1919 Author: Keith Packard <keithp@keithp.com>
1920 Date:   Wed Apr 20 20:27:47 2016 -0400
1921
1922     libaltos: Fix for Mac OS X El Capitan
1923     
1924     USB enumeration for serial devices changed
1925     
1926     Signed-off-by: Keith Packard <keithp@keithp.com>
1927
1928 commit f10fbff6758dfcfbeeeb224f8ab02fa107aae5f6
1929 Author: Justin Vreeland <vreeland.justin@gmail.com>
1930 Date:   Thu Apr 21 08:30:10 2016 -0400
1931
1932     Fix java class differing only by case
1933     
1934     OSX and Windows cannot handle files with names differing only by
1935     case.  When these files are present in either there's a constant
1936     unfixable change viewable in git status and git diff.
1937     
1938     Since this code can be run and compiled on both platforms
1939     names different only by case should be avoided.
1940     
1941     Signed-off-by: Justin Vreeland <vreeland.justin@gmail.com>
1942     Signed-off-by: Keith Packard <keithp@keithp.com>
1943
1944 commit c989237366ada094cdc817f50b7f58bbcf5b377a
1945 Author: Keith Packard <keithp@keithp.com>
1946 Date:   Thu Apr 21 21:11:29 2016 -0400
1947
1948     Prepare for new Android release by updating version number
1949     
1950     10->11
1951     
1952     Signed-off-by: Keith Packard <keithp@keithp.com>
1953
1954 commit 18b10ddf0e713431cb3e1065e62b0e6f597ce9d7
1955 Author: Keith Packard <keithp@keithp.com>
1956 Date:   Thu Apr 21 21:12:06 2016 -0400
1957
1958     AltosDroid play store keys have moved, update configure.ac
1959     
1960     The actual build files were already updated, but the configure.ac bits
1961     which detect that they are available were not.
1962     
1963     Signed-off-by: Keith Packard <keithp@keithp.com>
1964
1965 commit 21d176f161b90f18f236ef887cef9676d712eee3
1966 Author: Keith Packard <keithp@keithp.com>
1967 Date:   Thu Apr 21 21:12:40 2016 -0400
1968
1969     Update java library version numbers
1970     
1971     Prepare for 1.6.3 release.
1972     
1973     Signed-off-by: Keith Packard <keithp@keithp.com>
1974
1975 commit 4db6074bb15c66bd23c513e1e41b408e5408cff8
1976 Author: Keith Packard <keithp@keithp.com>
1977 Date:   Tue Apr 19 23:19:59 2016 -0400
1978
1979     altos: avoid mixed declarations and code in ao_task.c
1980     
1981     sdcc can't handle this.
1982     
1983     Signed-off-by: Keith Packard <keithp@keithp.com>
1984
1985 commit 09acb6821ab490d69f679a195e70acb4a71ba342
1986 Author: Keith Packard <keithp@keithp.com>
1987 Date:   Tue Apr 19 23:18:46 2016 -0400
1988
1989     altoslib: switch from keySet() to keys() in altos map tiles
1990     
1991     Android appears to not have the keySet() API in the same way that
1992     regular java does, so use the alternate older keys() api instead.
1993     
1994     Signed-off-by: Keith Packard <keithp@keithp.com>
1995
1996 commit 49c3e3dffe748d0d155d4876efcaf7d39e1cc8e3
1997 Author: Keith Packard <keithp@keithp.com>
1998 Date:   Tue Apr 19 23:17:50 2016 -0400
1999
2000     altoslib: Make AltosGPSSat implement Serializable
2001     
2002     This is required to save state values in AltosDroid.
2003     
2004     Signed-off-by: Keith Packard <keithp@keithp.com>
2005
2006 commit 45bcf595d0a6a6001459f7f2055cd15e4839550b
2007 Author: Keith Packard <keithp@keithp.com>
2008 Date:   Tue Apr 19 23:17:01 2016 -0400
2009
2010     altoslib: Add debugging to AltosPreferences.state() etc
2011     
2012     This let me find why AltosDroid was losing the last state information
2013     for each target.
2014     
2015     Signed-off-by: Keith Packard <keithp@keithp.com>
2016
2017 commit 90ba010aaa84a7d8b93c63543568a16ab0cb5984
2018 Author: Keith Packard <keithp@keithp.com>
2019 Date:   Tue Apr 19 23:15:26 2016 -0400
2020
2021     altosdroid: Don't set target location if lat/lon is MISSING
2022     
2023     Otherwise, we get a nice pointer to some random location on the planet.
2024     
2025     Signed-off-by: Keith Packard <keithp@keithp.com>
2026
2027 commit fd0ca040a5cccae18145bd29b3e4c09f14df3865
2028 Author: Keith Packard <keithp@keithp.com>
2029 Date:   Wed Apr 13 06:14:33 2016 -0700
2030
2031     altos/telefiretwo-v0.2: Change alarm names in comment
2032     
2033     The PCB is labeled 'A' and 'B'.
2034     
2035     Signed-off-by: Keith Packard <keithp@keithp.com>
2036
2037 commit 3abc0fc5e4484d862709501133d35563aa0c25fa
2038 Author: Keith Packard <keithp@keithp.com>
2039 Date:   Wed Apr 13 06:11:44 2016 -0700
2040
2041     altos/stmf0: Fix external interrupts
2042     
2043     Missing a reserved address in the registers broke everything nicely,
2044     but the priority values were also wrong - stm32f0 exposes 8 bits per
2045     priority, like the stm32l, but it uses only the top two bits.
2046     
2047     Signed-off-by: Keith Packard <keithp@keithp.com>
2048
2049 commit 14fecd672807982ce6232fa3b4bdce0aebe132e8
2050 Author: Keith Packard <keithp@keithp.com>
2051 Date:   Wed Apr 6 22:32:36 2016 -0700
2052
2053     Add TeleFireTwo v0.2 project
2054     
2055     This is much like TeleFireTwo v0.1, with only one pyro channel and
2056     added siren and strobe
2057     
2058     Signed-off-by: Keith Packard <keithp@keithp.com>
2059
2060 commit 70e46100acf597014ce54cf3b642254ce1cba59b
2061 Author: Keith Packard <keithp@keithp.com>
2062 Date:   Tue Apr 5 23:45:52 2016 -0700
2063
2064     altos/telelcotwo: Add idle timeout
2065     
2066     Puts TeleLCOTwo in a low power state (drawing about 80µA) after a
2067     timeout (default two minutes) to keep from killing the battery if the
2068     device is left turned on.
2069     
2070     Signed-off-by: Keith Packard <keithp@keithp.com>
2071
2072 commit aef5049cf8311927fada922730f85f31c8ddf177
2073 Author: Keith Packard <keithp@keithp.com>
2074 Date:   Fri Dec 25 20:46:40 2015 -0800
2075
2076     altos: Use simpler debounce logic for buttons
2077     
2078     Instead of waiting for a while after the transition to decide if it
2079     has stuck, signal the event right away and then ignore other
2080     transitions for the debounce interval.
2081     
2082     This seems to work just as reliably, but has the benefit of
2083     eliminating button latency at press time.
2084     
2085     Signed-off-by: Keith Packard <keithp@keithp.com>
2086
2087 commit 4c2a7503373c0584de77f9b0e5632a58ab8bbd1f
2088 Author: Keith Packard <keithp@keithp.com>
2089 Date:   Fri Dec 25 11:26:34 2015 -0800
2090
2091     altos: Add ao_lco_two.c; alternate LCO interface code
2092     
2093     The LCO interface is likely to end up very device specific as the
2094     interactions depends on the input devices. Here's a version for
2095     TeleLCOTwo, which has two arming switches and a firing button.
2096     
2097     Signed-off-by: Keith Packard <keithp@keithp.com>
2098
2099 commit 26023cfbf7e117114a4d62b7dbfc0f907efdfb47
2100 Author: Keith Packard <keithp@keithp.com>
2101 Date:   Mon Dec 21 21:52:31 2015 -0800
2102
2103     altos: Fix telefiretwo .gitignore
2104     
2105     Was ignoring the wrong built files
2106     
2107     Signed-off-by: Keith Packard <keithp@keithp.com>
2108
2109 commit 11f8ab90d2267715010e652d709beec363f74ed5
2110 Author: Keith Packard <keithp@keithp.com>
2111 Date:   Mon Dec 21 21:50:43 2015 -0800
2112
2113     altos: Add TeleLCOTwo firmware
2114     
2115     The LCO side of a two-channel launch controller setup.
2116     
2117     Signed-off-by: Keith Packard <keithp@keithp.com>
2118
2119 commit e6bad553009704af69b08b4a22fb5eb8ac6921f8
2120 Author: Keith Packard <keithp@keithp.com>
2121 Date:   Mon Dec 21 21:48:37 2015 -0800
2122
2123     altos: Support pad/lco boxes with fixed box numbers
2124     
2125     This allows for a configuration without adjustable box numbers on
2126     either end of the link, simplifying the UI.
2127     
2128     Signed-off-by: Keith Packard <keithp@keithp.com>
2129
2130 commit 93100ae8d4c8bd8fd6bdeff2cdc87b613c5d8058
2131 Author: Keith Packard <keithp@keithp.com>
2132 Date:   Mon Dec 21 21:47:10 2015 -0800
2133
2134     altos: Allow for pad boxes with different sensor configurations
2135     
2136     This allows for a pad box without a resistor from power to each
2137     FET. That resistor is needed to detect welded relays, but in a
2138     solid-state system, that's not a possibility.
2139     
2140     Signed-off-by: Keith Packard <keithp@keithp.com>
2141
2142 commit f2038dd2cfed5bbf049144172e3f7436b6cd3a55
2143 Author: Keith Packard <keithp@keithp.com>
2144 Date:   Thu Dec 17 19:54:23 2015 -0800
2145
2146     altos: telefiretwo-v0.1 bits
2147     
2148     Get this board running.
2149     
2150     Signed-off-by: Keith Packard <keithp@keithp.com>
2151
2152 commit 26ce7a9a213bdd35a13937054988e7b8fa749632
2153 Author: Keith Packard <keithp@keithp.com>
2154 Date:   Thu Dec 17 19:30:35 2015 -0800
2155
2156     altos: Add pad support for new telefire versions
2157     
2158     Makes the voltage divider values configurable, and allows for pyro
2159     channels that don't have the resistors necessary to check for a stuck
2160     relay.
2161     
2162     Also supports STM32L processors with wider GPIO registers, and uses
2163     the new ao_gpio_set/clr_bits functions to fire igniters rather than
2164     cc1111-specific code.
2165     
2166     Signed-off-by: Keith Packard <keithp@keithp.com>
2167
2168 commit 553c89f8c64398cb1a815b1fa248980cd3f62ef8
2169 Author: Keith Packard <keithp@keithp.com>
2170 Date:   Thu Dec 17 19:29:36 2015 -0800
2171
2172     altos: Support telefire products in cc1200 driver
2173     
2174     Need to disable the pad code while testing the radio.
2175     
2176     Signed-off-by: Keith Packard <keithp@keithp.com>
2177
2178 commit b8a19e83b7b1b8e2a1fcbdd58e41f9f974ae28ff
2179 Author: Keith Packard <keithp@keithp.com>
2180 Date:   Wed Apr 13 06:16:01 2016 -0700
2181
2182     altos/detherm: Add servo driver
2183     
2184     This just provides commands to test the servo with.
2185     
2186     Signed-off-by: Keith Packard <keithp@keithp.com>
2187
2188 commit cfb91ec7ef6ef485d813af96a0f206bb7a2204dd
2189 Author: Keith Packard <keithp@keithp.com>
2190 Date:   Tue Apr 5 22:03:37 2016 -0700
2191
2192     altos/detherm: Add ms5607 to detherm
2193     
2194     Signed-off-by: Keith Packard <keithp@keithp.com>
2195
2196 commit 8da29480a2fdf890d553b30eab58fc884210c1a5
2197 Author: Keith Packard <keithp@keithp.com>
2198 Date:   Wed Dec 23 23:15:16 2015 -0800
2199
2200     altos: Add easy mini plotting helper in test code
2201     
2202     Signed-off-by: Keith Packard <keithp@keithp.com>
2203
2204 commit e3f0c5eb8e5d57cbd8882587477d1381e2a83226
2205 Author: Keith Packard <keithp@keithp.com>
2206 Date:   Thu Dec 17 19:27:42 2015 -0800
2207
2208     altos: Add ao_gpi_set/clr_bits functions
2209     
2210     These set or clear a group of bits in a single GPIO register all together.
2211     
2212     Signed-off-by: Keith Packard <keithp@keithp.com>
2213
2214 commit 097c156b13ae975c742f294b46429e8ff14c365b
2215 Author: Keith Packard <keithp@keithp.com>
2216 Date:   Sat Apr 2 22:41:06 2016 -0700
2217
2218     altos/stmf0: Add pwm and exti drivers
2219     
2220     Signed-off-by: Keith Packard <keithp@keithp.com>
2221
2222 commit 0f227683e29062224a612c4a2ab5c8b2fc166059
2223 Author: Keith Packard <keithp@keithp.com>
2224 Date:   Sat Apr 2 22:40:23 2016 -0700
2225
2226     altos: Add detherm product
2227     
2228     Signed-off-by: Keith Packard <keithp@keithp.com>
2229
2230 commit eeceee3520fae66b35a9a9b39c866c1c2e3b0c9a
2231 Author: Keith Packard <keithp@keithp.com>
2232 Date:   Sat Apr 2 19:44:06 2016 -0700
2233
2234     doc: Note that EasyMega and TeleMega report A-D continuity
2235     
2236     Signed-off-by: Keith Packard <keithp@keithp.com>
2237
2238 commit f95c781bc16d332ea5442590521074396d6981ae
2239 Author: Keith Packard <keithp@keithp.com>
2240 Date:   Sat Apr 2 19:43:32 2016 -0700
2241
2242     altos/stmf0: Support HPE clock source
2243     
2244     Allows the use of crystals instead of requiring USB.
2245     
2246     Signed-off-by: Keith Packard <keithp@keithp.com>
2247
2248 commit 9f9d77b6d025d8285e362e53a8f728ec47adb234
2249 Author: Keith Packard <keithp@keithp.com>
2250 Date:   Sat Apr 2 19:42:44 2016 -0700
2251
2252     altos/stmf0: Add SPI driver.
2253     
2254     This also changes the DMA interface a bit so we can select for
2255     interrupts on only the interesting channels.
2256     
2257     Signed-off-by: Keith Packard <keithp@keithp.com>
2258
2259 commit f5e6caab78f4ca0e5c8a2d96ef53b8752d64f4b3
2260 Author: Keith Packard <keithp@keithp.com>
2261 Date:   Sat Apr 2 19:41:21 2016 -0700
2262
2263     altos: Use mini logging for detherm, just without ADC
2264     
2265     Signed-off-by: Keith Packard <keithp@keithp.com>
2266
2267 commit 6ead4c570a264afdc4e45eed6e87bf541668be6f
2268 Author: Keith Packard <keithp@keithp.com>
2269 Date:   Sat Apr 2 19:40:19 2016 -0700
2270
2271     altos: Add Detherm log format (easymini without ADC)
2272     
2273     Signed-off-by: Keith Packard <keithp@keithp.com>
2274
2275 commit 0ee235e1126f34987522fe852ba6ab3ac92d6cfd
2276 Author: Keith Packard <keithp@keithp.com>
2277 Date:   Sat Apr 2 19:39:07 2016 -0700
2278
2279     altos: Allow for flight hardware without any ADC values
2280     
2281     Detherm has no ADC connections, so we don't need to disable the ADC
2282     when going to landed state.
2283     
2284     Signed-off-by: Keith Packard <keithp@keithp.com>
2285
2286 commit 7348cc4736c9a94f9ad299edd78199b544d0e95a
2287 Author: Keith Packard <keithp@keithp.com>
2288 Date:   Thu Mar 24 19:25:33 2016 -0600
2289
2290     altos: Add one-byte SPI output routine for LPC and STM cores
2291     
2292     This allows for SPI output at interrupt time, one byte at a time.
2293     
2294     Signed-off-by: Keith Packard <keithp@keithp.com>
2295
2296 commit b31c6fd153825ae5ad0fcea7189472af1a9cffff
2297 Author: Keith Packard <keithp@keithp.com>
2298 Date:   Thu Mar 24 19:28:16 2016 -0600
2299
2300     altos/lpc: Add fast timer
2301     
2302     This offers a faster timer callback for higher-precision operation
2303     
2304     Signed-off-by: Keith Packard <keithp@keithp.com>
2305
2306 commit a86d98b708d84c6e0b85cb950e3f1ee16cfc56f5
2307 Author: Keith Packard <keithp@keithp.com>
2308 Date:   Sat Mar 26 15:59:26 2016 -0700
2309
2310     altos/stm: Allow apps to define different stack size
2311     
2312     While 512 bytes is a reasonable size, sometimes apps don't have that
2313     much stack space.
2314     
2315     Signed-off-by: Keith Packard <keithp@keithp.com>
2316
2317 commit 4fa71ecf168e275b24534a5a20e3dd4e178c7bbd
2318 Author: Keith Packard <keithp@keithp.com>
2319 Date:   Sat Mar 26 15:54:24 2016 -0700
2320
2321     altos/stm: Validate current task SP in interrupt by looking at PSP
2322     
2323     We use a separate stack pointer for task code, which means we can
2324     verify that it is in range in any interrupt handler. This adds checks
2325     for the task stack (under #ifdef DEBUG) that run in ao_wakeup as well
2326     as at every timer interrupt.
2327     
2328     Signed-off-by: Keith Packard <keithp@keithp.com>
2329
2330 commit 6a9546413d6a236c010e806b50506d870961d074
2331 Author: Keith Packard <keithp@keithp.com>
2332 Date:   Sat Mar 26 15:49:59 2016 -0700
2333
2334     altos/stm: Run scheduler code on interrupt stack
2335     
2336     This provides a bit more room for tasks on their stack
2337     
2338     Signed-off-by: Keith Packard <keithp@keithp.com>
2339
2340 commit 55db3b3e8addaa2dc0af50470d3bc8c25cb57df3
2341 Author: Keith Packard <keithp@keithp.com>
2342 Date:   Mon Mar 21 22:28:39 2016 -0600
2343
2344     altosui,telegps: Do not allow radio calibration to be edited
2345     
2346     This leads to sorrow for almost everyone. If you want to edit this,
2347     use a terminal program.
2348     
2349     Signed-off-by: Keith Packard <keithp@keithp.com>
2350
2351 commit c61014914c80ad0dba72224109d9b147bb343562
2352 Author: Keith Packard <keithp@keithp.com>
2353 Date:   Sat Mar 26 15:57:59 2016 -0700
2354
2355     altosuilib: Control map debugging output with Serial.debug
2356     
2357     This uses the same debug control as the serial output to monitor map downloading
2358     
2359     Signed-off-by: Keith Packard <keithp@keithp.com>
2360
2361 commit 4f8a325949ed3cece4b646c808ad68677b16d1b6
2362 Author: Keith Packard <keithp@keithp.com>
2363 Date:   Sat Mar 26 15:57:21 2016 -0700
2364
2365     altoslib: use env var LAUNCH_SITES to override default URL
2366     
2367     This makes it easier to debug new launch site data before uploading.
2368     
2369     Signed-off-by: Keith Packard <keithp@keithp.com>
2370
2371 commit 2fc47e7052a08de464f08d890e222afd7dec75d8
2372 Author: Keith Packard <keithp@keithp.com>
2373 Date:   Sun Mar 20 23:11:49 2016 -0700
2374
2375     libaltos: Fix warning in linux libaltos code
2376     
2377     Just returned the wrong name of the value
2378     
2379     Signed-off-by: Keith Packard <keithp@keithp.com>
2380
2381 commit 4dddf0a9134690d94217ad12bc7372683276f8ba
2382 Author: Keith Packard <keithp@keithp.com>
2383 Date:   Sun Mar 20 22:01:07 2016 -0700
2384
2385     altosuilib: Note that Windows now supports Bluetooth
2386     
2387     Signed-off-by: Keith Packard <keithp@keithp.com>
2388
2389 commit 054f2896b98a14051e0b818090f2de178bb77283
2390 Author: Keith Packard <keithp@keithp.com>
2391 Date:   Sun Mar 20 21:54:08 2016 -0700
2392
2393     altosui: Delay between polling for igniter status in Fire Igniters
2394     
2395     This gives a remote like time to report the full status instead of
2396     sending another request before the reply has been processed.
2397     
2398     Signed-off-by: Keith Packard <keithp@keithp.com>
2399
2400 commit 1594691ea88ca84634eea237ac8137a5bdc19f5c
2401 Author: Keith Packard <keithp@keithp.com>
2402 Date:   Sun Mar 20 21:52:53 2016 -0700
2403
2404     libaltos: Add Windows BT support. Split into separate source files.
2405     
2406     Add Bluetooth support to Windows. Split libaltos into separate files.
2407     
2408     Signed-off-by: Keith Packard <keithp@keithp.com>
2409
2410 commit afba05c41f30c9273668d5ed71e0dc8c1ca53141
2411 Author: Keith Packard <keithp@keithp.com>
2412 Date:   Fri Mar 18 11:17:46 2016 -0700
2413
2414     ao-bringup: Use dfu-util to install flash loader on chaoskey
2415     
2416     Signed-off-by: Keith Packard <keithp@keithp.com>
2417
2418 commit 4635203e9be530f53b697ac0349838916e146983
2419 Author: Keith Packard <keithp@keithp.com>
2420 Date:   Fri Mar 18 11:16:59 2016 -0700
2421
2422     altos/stmf0: Construct .bin files for flash loaders
2423     
2424     This builds a .bin file which can be used with dfu-util instead of
2425     using openocd to load the initial flash loader.
2426     
2427     Signed-off-by: Keith Packard <keithp@keithp.com>
2428
2429 commit f393482ec47e857db654fa071d4df95e98dab381
2430 Author: Keith Packard <keithp@keithp.com>
2431 Date:   Fri Mar 18 11:15:57 2016 -0700
2432
2433     ao-tools: Add ao-makebin
2434     
2435     This constructs a raw binary or DFU format file for use with dfu-util,
2436     which can be used with a bare STM processor to load code before the
2437     boot loader is available.
2438     
2439     Signed-off-by: Keith Packard <keithp@keithp.com>
2440
2441 commit 1d7f88bf7521fa6d301da072f95f97fa42d9d247
2442 Author: Keith Packard <keithp@keithp.com>
2443 Date:   Fri Mar 18 10:52:03 2016 -0700
2444
2445     ao-tools/lib: Add ao_hex_image_cat function
2446     
2447     This takes two images and constructs a third containing the union of
2448     the contents along with 0xff bytes for any area between them.
2449     
2450     Signed-off-by: Keith Packard <keithp@keithp.com>
2451
2452 commit 4e738dff6dec4685b8712d3e96742971fa39c8f1
2453 Author: Keith Packard <keithp@keithp.com>
2454 Date:   Fri Mar 18 10:51:20 2016 -0700
2455
2456     ao-tools/lib: Remove trailing whitespace from ao-elf.c
2457     
2458     Signed-off-by: Keith Packard <keithp@keithp.com>
2459
2460 commit 45d61b79665197ff99f415cda7bd5907830233e9
2461 Author: Keith Packard <keithp@keithp.com>
2462 Date:   Fri Mar 18 10:50:32 2016 -0700
2463
2464     ao-tools/ao-dump-up: Remove spurious flight state strings
2465     
2466     MicroPeak doesn't have flight states like this...
2467     
2468     Signed-off-by: Keith Packard <keithp@keithp.com>
2469
2470 commit 25cdbf15e7284eb963070b28dd886aa299af6487
2471 Author: Keith Packard <keithp@keithp.com>
2472 Date:   Fri Mar 18 10:48:49 2016 -0700
2473
2474     Change how we detect and install java
2475     
2476     Detect by finding 'javaw.exe' in the current path and extracting the
2477     version from the program itself.
2478     
2479     Install by simply opening the web browser to java.com and letting the
2480     user install it themselves.
2481     
2482     Signed-off-by: Keith Packard <keithp@keithp.com>
2483
2484 commit a7c7e10b3bbfbdf9667d071634cdd6fdf12a1f85
2485 Author: Keith Packard <keithp@keithp.com>
2486 Date:   Fri Mar 18 10:17:24 2016 -0700
2487
2488     altos: Expose fast timer API from kernel/
2489     
2490     This allows multiple SoCs to provide the same driver interface
2491     
2492     Signed-off-by: Keith Packard <keithp@keithp.com>
2493
2494 commit d1af180c2d2a2caf1e13f00d83f2b86ba26de27f
2495 Author: Bart Massey <bart@cs.pdx.edu>
2496 Date:   Sat Mar 5 17:38:19 2016 -0800
2497
2498     altos: Fixed timing of panic display LED to be readable
2499     
2500     When we don't have a beeper, there's no way to signal a 'warble' for
2501     panic. So, elide that bit.
2502     
2503     Second, panic can't use the scheduler and timer because those may not
2504     be running (or may have failed), and so it uses a delay loop. Add a
2505     configurable scale value to the panic loop so that the LED blinks can
2506     be read. For stm32f0 devices, scale that by the sysclk value to
2507     automatically make them of reasonable length.
2508
2509 commit 20d9286402b7da74fef9b7c98e79d13671f6c82b
2510 Author: Keith Packard <keithp@keithp.com>
2511 Date:   Sun Mar 6 15:05:51 2016 -0800
2512
2513     libaltos: Add unistd.h to get defines for various syscalls
2514     
2515     Signed-off-by: Keith Packard <keithp@keithp.com>
2516
2517 commit ad07578d04926cb4b96c40a446c47ad3f9bad7df
2518 Author: Keith Packard <keithp@keithp.com>
2519 Date:   Sun Mar 6 15:04:23 2016 -0800
2520
2521     libaltos: jni_md.h moved to linux subdir in Java install
2522     
2523     Add the linux subdir to CFLAGS to find it.
2524     
2525     Signed-off-by: Keith Packard <keithp@keithp.com>
2526
2527 commit 7cb388a33104fd78c8cb1fa08a6f114e3e1e372d
2528 Author: Keith Packard <keithp@keithp.com>
2529 Date:   Sat Mar 5 14:37:40 2016 -0800
2530
2531     altos/stmf0: Fix build without second USB IN endpoint
2532     
2533     The code for the second IN endpoint was using the wrong ifdef.
2534     
2535     Signed-off-by: Keith Packard <keithp@keithp.com>
2536
2537 commit 99d3248a390379cfabf821ea4a195072799861eb
2538 Author: Keith Packard <keithp@keithp.com>
2539 Date:   Wed Mar 2 14:36:31 2016 -0800
2540
2541     ao-tools: Add ao-chaosread
2542     
2543     This reads from the raw descriptor to help validate the hardware.
2544     
2545     Signed-off-by: Keith Packard <keithp@keithp.com>
2546
2547 commit 88ee4ac0c91e12a02cc1954ffad0fd8603e24e55
2548 Author: Keith Packard <keithp@keithp.com>
2549 Date:   Wed Mar 2 14:01:00 2016 -0800
2550
2551     ao-bringup: Switch to v1.0 for chaoskey
2552     
2553     Not going to build any more v0.1 boards. Also, chaoskey now uses the
2554     unique ID for a serial, so we don't need to provide a serial number.
2555     
2556     Signed-off-by: Keith Packard <keithp@keithp.com>
2557
2558 commit 3a355d5c84e9d975897fa69a103952a1f1558947
2559 Author: Keith Packard <keithp@keithp.com>
2560 Date:   Wed Mar 2 14:00:06 2016 -0800
2561
2562     altos: Add ChaosKey v1.0 product
2563     
2564     Much like ChaosKey v0.1, just different SoC package and a few wiring changes.
2565     
2566     Signed-off-by: Keith Packard <keithp@keithp.com>
2567
2568 commit 05fcb717bfc44aba3c1cfd43281e323505a46402
2569 Author: Keith Packard <keithp@keithp.com>
2570 Date:   Wed Mar 2 13:54:58 2016 -0800
2571
2572     altos/chaoskey: Add another USB endpoint to read raw data
2573     
2574     This replaces having the single output switch based on a pin value and
2575     allows us to box the device and still fetch raw data.
2576     
2577     For now, this will use a special libusb2 program, ao-chaosread, to
2578     pull bits as I haven't figure out how to make linux provide two
2579     /dev entries for one USB device.
2580     
2581     Signed-off-by: Keith Packard <keithp@keithp.com>
2582
2583 commit 05354b8fee6a9af05d66bb7f4761f597da038fdd
2584 Author: Keith Packard <keithp@keithp.com>
2585 Date:   Mon Feb 15 15:26:00 2016 -0800
2586
2587     altos/chaoskey: Use SoC device ID as serial number
2588     
2589     To make manufacturing these devices tractable, we don't want to
2590     require a custom firmware load for each device, but we still want a
2591     unique serial number. Fortunately, the SoC provides a 96-bit ID which
2592     we can use.
2593     
2594     Signed-off-by: Keith Packard <keithp@keithp.com>
2595
2596 commit 5637c1b2fd7232842245af1437e33b5bb1583c7d
2597 Author: Keith Packard <keithp@keithp.com>
2598 Date:   Mon Feb 15 15:24:35 2016 -0800
2599
2600     altos/stmf0: Use device ID as usb serial number if requested
2601     
2602     This exposes the hardware device ID (which is unique per-chip) as the
2603     USB serial number, avoiding the need to create a custom ROM image for
2604     each device.
2605     
2606     Signed-off-by: Keith Packard <keithp@keithp.com>
2607
2608 commit e4006444d3d7b0c499139f58f13353988d38dbb4
2609 Author: Keith Packard <keithp@keithp.com>
2610 Date:   Mon Feb 15 15:23:15 2016 -0800
2611
2612     altos/chaoskey: Encode both hardware and software versions in product ID
2613     
2614     We have no other way of reporting the software version, so just encode
2615     it in the product ID.
2616     
2617     Signed-off-by: Keith Packard <keithp@keithp.com>
2618
2619 commit afef70bb8f31075de364ddf713f3ccf1d9c6361d
2620 Author: Keith Packard <keithp@keithp.com>
2621 Date:   Mon Feb 15 14:04:04 2016 -0800
2622
2623     altos/stmf0: Fix location of device_id register
2624     
2625     Copied from stm32l and never fixed.
2626     
2627     Signed-off-by: Keith Packard <keithp@keithp.com>
2628
2629 commit 0bae4b25882983cd0b7950b3e80b6d93a72f0847
2630 Author: Keith Packard <keithp@keithp.com>
2631 Date:   Mon Feb 8 19:15:31 2016 -0800
2632
2633     altos: Another fix for non CDC-ACM devices
2634     
2635     Need to set the bInterfaceNumber for the actual interface to zero when
2636     there isn't an INT interface before it.
2637     
2638     Signed-off-by: Keith Packard <keithp@keithp.com>
2639
2640 commit e36117ccbf7cbe3704c6b44d3ad429e720a1e16c
2641 Author: Bart Massey <bart.massey@gmail.com>
2642 Date:   Mon Feb 8 18:55:28 2016 -0800
2643
2644     Clean up stmf0 adc init.
2645     
2646     This better matches the documented cal sequence.
2647     
2648     Signed-off-by: Keith Packard <keithp@keithp.com>
2649
2650 commit 5ce26345784459f5864ef59c96c8aa633d2ddf64
2651 Author: Keith Packard <keithp@keithp.com>
2652 Date:   Sun Feb 7 22:30:27 2016 -0800
2653
2654     altos/stmf0: Add missing ao_gpio.c
2655     
2656     This contains the code for power managing the GPIO pins
2657     
2658     Signed-off-by: Keith Packard <keithp@keithp.com>
2659
2660 commit bab082605e3fca6b6d11447c45cd948ddfe74bb9
2661 Author: Keith Packard <keithp@keithp.com>
2662 Date:   Sun Feb 7 22:28:34 2016 -0800
2663
2664     altos: Add simple stats test to TRNG code
2665     
2666     This detects broken hardware by making sure the standard deviation in
2667     the raw values used to compute each buffer is at least 128.
2668     
2669     Signed-off-by: Keith Packard <keithp@keithp.com>
2670
2671 commit 147f0df6a29b37fbfb0824ecd276482f0eecb397
2672 Author: Keith Packard <keithp@keithp.com>
2673 Date:   Sun Feb 7 15:33:42 2016 -0800
2674
2675     altos: Delay TRNG ADC long enough for HV supply to stabilize
2676     
2677     Looks like it takes about 70ms for the supply to start running right,
2678     so delay after powering it up for that long.
2679     
2680     Signed-off-by: Keith Packard <keithp@keithp.com>
2681
2682 commit 1473f9234ffd34d8f37bc489dfc9fc4d7f1b3eed
2683 Author: Keith Packard <keithp@keithp.com>
2684 Date:   Sun Feb 7 00:15:47 2016 +1100
2685
2686     altos/chaoskey-v0.1: Add power management and change USB classes
2687     
2688     Enable power management.
2689     Expose only a single IN endpoint.
2690     
2691     Signed-off-by: Keith Packard <keithp@keithp.com>
2692
2693 commit 235198b85f1583d2792c7028decace61d1b4229e
2694 Author: Keith Packard <keithp@keithp.com>
2695 Date:   Sun Feb 7 00:14:22 2016 +1100
2696
2697     altos: Add power management to TRNG driver
2698     
2699     Support suspend/resume of the TRNG power supply, delaying after resume
2700     to wait for it to stabilize.
2701     
2702     Signed-off-by: Keith Packard <keithp@keithp.com>
2703
2704 commit 2ad756bd1b63a2c8450edd7001628b92279fd1b8
2705 Author: Keith Packard <keithp@keithp.com>
2706 Date:   Sun Feb 7 00:10:57 2016 +1100
2707
2708     altos: Allow USB drivers to skip CDC-ACM -specific descriptors
2709     
2710     For devices not providing the standard CDC-ACM interface, let them
2711     skip the various descriptors and interfaces to provide a more limited
2712     set of capabilities.
2713     
2714     Signed-off-by: Keith Packard <keithp@keithp.com>
2715
2716 commit a5607aad694c01c01c48229172b289f005a1b6bb
2717 Author: Keith Packard <keithp@keithp.com>
2718 Date:   Sat Feb 6 22:51:32 2016 +1100
2719
2720     altos/stmf0: Add suspend/resume support
2721     
2722     Allow USB suspend to suspend USB, GPIOs and master clock.
2723     
2724     Signed-off-by: Keith Packard <keithp@keithp.com>
2725
2726 commit 36c6d74048283d27c890054814eee2cb39b7cbb7
2727 Author: Keith Packard <keithp@keithp.com>
2728 Date:   Sat Feb 6 22:47:23 2016 +1100
2729
2730     altos: Add power management APIs
2731     
2732     This provides sequenced suspend/resume functionality, allowing modules
2733     to register for power management at configuration time.
2734     
2735     Signed-off-by: Keith Packard <keithp@keithp.com>
2736
2737 commit fbb07cf50ba7fa278d1f8201ef376ec12480e9aa
2738 Author: Keith Packard <keithp@keithp.com>
2739 Date:   Tue Jan 19 23:55:52 2016 -0800
2740
2741     altos/stmf0: Allow projects to specify non-default stack size
2742     
2743     512 may not be suitable for everyone.
2744     
2745     Signed-off-by: Keith Packard <keithp@keithp.com>
2746
2747 commit 1d7463befc18f415d8982f04e52729d3bf5b95a9
2748 Author: Keith Packard <keithp@keithp.com>
2749 Date:   Tue Jan 19 23:55:32 2016 -0800
2750
2751     altos: remove blank line in stmf0/ao_timer.c
2752     
2753     Signed-off-by: Keith Packard <keithp@keithp.com>
2754
2755 commit 35407e664886bed21dcef7764843aac03be8490c
2756 Author: Keith Packard <keithp@keithp.com>
2757 Date:   Thu Jan 28 13:58:43 2016 -0800
2758
2759     altos/chaoskey: Delay ADC reading for 250ms at startup
2760     
2761     This lets the HV supply stabilize before we start sampling values.
2762     
2763     Signed-off-by: Keith Packard <keithp@keithp.com>
2764
2765 commit f2d3202de9a5847923f72afe2969eb7ccd7342c7
2766 Author: Keith Packard <keithp@keithp.com>
2767 Date:   Thu Jan 28 00:14:36 2016 -0800
2768
2769     altos/chaoskey: Add support for flipping between raw and cooked bits
2770     
2771     Plug the 'force bootloader' thing onto the board while it's running
2772     and it will generate raw bits instead of running them through the CRC
2773     to whiten. Useful for validating the raw hardware.
2774     
2775     Signed-off-by: Keith Packard <keithp@keithp.com>
2776
2777 commit 02fd767ab60a9957faa2bff29c62ed954abc34e7
2778 Author: Keith Packard <keithp@keithp.com>
2779 Date:   Tue Jan 19 18:30:57 2016 -0800
2780
2781     src/chaoskey-v0.1: Add HV enable support
2782     
2783     Turn on the HV supply when the OS starts.
2784     
2785     Signed-off-by: Keith Packard <keithp@keithp.com>
2786
2787 commit e5be0be35f724507d7efff48339a297df73d2641
2788 Author: Robert Garbee <robert@gag.com>
2789 Date:   Sat Jan 16 10:19:47 2016 -0700
2790
2791     fix argument to ao-cal-freq so devices other than /dev/ttyACM0 work
2792
2793 commit 6a7644a0d179e1eb7d665123157ad76c956e524a
2794 Author: Keith Packard <keithp@keithp.com>
2795 Date:   Sun Jan 10 21:39:38 2016 -0800
2796
2797     Releasing: Copy TeleMega v2.0 bits to Binaries
2798     
2799     Signed-off-by: Keith Packard <keithp@keithp.com>
2800
2801 commit b53c78e75879d647935a30acb88fdd69467617a7
2802 Merge: a2ea621 64adfbb
2803 Author: Bdale Garbee <bdale@gag.com>
2804 Date:   Sun Jan 10 19:15:16 2016 -0700
2805
2806     Merge branch 'master' into branch-1.6
2807
2808 commit 64adfbbb80c90dfe244179d81beaef8a84ed8bd6
2809 Author: Bdale Garbee <bdale@gag.com>
2810 Date:   Thu Jul 16 14:47:10 2015 -0600
2811
2812     process updates from 1.6.1 release
2813
2814 commit a2ea621eac3263348aff50885c79296f8ece26ed
2815 Author: Bdale Garbee <bdale@gag.com>
2816 Date:   Sun Jan 10 19:08:12 2016 -0700
2817
2818     update Changelog from git log
2819
2820 commit 1681776abc0873bcbbbc5b2b17e15d54a1031f51
2821 Merge: 8830926 aebdcaf
2822 Author: Bdale Garbee <bdale@gag.com>
2823 Date:   Sun Jan 10 19:07:49 2016 -0700
2824
2825     Merge branch 'master' into branch-1.6
2826
2827 commit aebdcaf37eafbc13cce695fe65a455e49c6108c3
2828 Author: Bdale Garbee <bdale@gag.com>
2829 Date:   Sun Jan 10 19:06:19 2016 -0700
2830
2831     one more time, with feeling .. this time, I've updated pdclib
2832
2833 commit 88309264656220bae6ee941211f7aa1b1dc19944
2834 Author: Bdale Garbee <bdale@gag.com>
2835 Date:   Sun Jan 10 19:06:19 2016 -0700
2836
2837     one more time, with feeling .. this time, I've updated pdclib
2838
2839 commit 70e9064ca962dfd345f8a342afa130f969606553
2840 Merge: 489d22f 73ce3f7
2841 Author: Bdale Garbee <bdale@gag.com>
2842 Date:   Sun Jan 10 19:04:49 2016 -0700
2843
2844     Merge branch 'master' into branch-1.6
2845
2846 commit 73ce3f73526edfabccd3b98e6e67de6d82a84b63
2847 Author: Bdale Garbee <bdale@gag.com>
2848 Date:   Sun Jan 10 18:58:31 2016 -0700
2849
2850     submodule madness
2851
2852 commit cbec66452ecd01bbd5aebf6f98443d5e0540f5d2
2853 Merge: 4043e07 81b8f4d
2854 Author: Bdale Garbee <bdale@gag.com>
2855 Date:   Sun Jan 10 18:29:07 2016 -0700
2856
2857     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
2858
2859 commit 81b8f4da612b527915f68f632fbd94a46bc1795f
2860 Author: Keith Packard <keithp@keithp.com>
2861 Date:   Sun Jan 10 17:22:35 2016 -0800
2862
2863     doc: Remove extraneous 'first off' from legal paragraph
2864     
2865     Not helpful (bdale)
2866     
2867     Signed-off-by: Keith Packard <keithp@keithp.com>
2868
2869 commit 6a00f186a06f22638882f43f49fa0c03ea387eac
2870 Author: Keith Packard <keithp@keithp.com>
2871 Date:   Sun Jan 10 17:13:56 2016 -0800
2872
2873     doc: Remove telemini v2.0. Add telemega v2.0
2874     
2875     Reflect hardware we've actually shipped.
2876     
2877     Signed-off-by: Keith Packard <keithp@keithp.com>
2878
2879 commit 6cbf93995d90fc4790eb77bcaa233742857fe052
2880 Author: Keith Packard <keithp@keithp.com>
2881 Date:   Sun Jan 10 17:01:57 2016 -0800
2882
2883     doc: fix typo in using external active switch circuit section
2884     
2885     the -> then (bdale)
2886     
2887     Signed-off-by: Keith Packard <keithp@keithp.com>
2888
2889 commit 3547e65eecbe7bd4e16dc6f2048b7a69f29d05ff
2890 Author: Keith Packard <keithp@keithp.com>
2891 Date:   Sun Jan 10 16:59:37 2016 -0800
2892
2893     doc: Update copyright year in altusmetrum doc
2894     
2895     And note that this need to be checked for each release in RELNOTES
2896     
2897     Signed-off-by: Keith Packard <keithp@keithp.com>
2898
2899 commit 4043e0707cdc77158f709c19dd134f92b4604270
2900 Author: Bdale Garbee <bdale@gag.com>
2901 Date:   Sun Jan 10 17:45:45 2016 -0700
2902
2903     modify release procedure to reflect Keith setting version in confgure.ac
2904
2905 commit 2f35e0ba52f538ea1061bfff5bbd772b8a241386
2906 Merge: 86ccbac 3fdaf74
2907 Author: Bdale Garbee <bdale@gag.com>
2908 Date:   Sun Jan 10 17:44:03 2016 -0700
2909
2910     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
2911
2912 commit 86ccbac16f5cd0be4a4c11260816b4799cda46f2
2913 Author: Bdale Garbee <bdale@gag.com>
2914 Date:   Sun Jan 10 17:43:34 2016 -0700
2915
2916     modify bringup scripts to handle TeleMega v2.0
2917
2918 commit 3fdaf745f98f42f1ec4ae7cc682f47be8d8568eb
2919 Author: Keith Packard <keithp@keithp.com>
2920 Date:   Sun Jan 10 14:37:05 2016 -0800
2921
2922     Bump version to 1.6.2, altosdroid to 10
2923     
2924     Signed-off-by: Keith Packard <keithp@keithp.com>
2925
2926 commit ebe009b9c7c2f4de3405479f800a33b449fcbb1e
2927 Author: Bdale Garbee <bdale@gag.com>
2928 Date:   Sun Jan 10 17:41:38 2016 -0700
2929
2930     now building for m4, too
2931
2932 commit ff9c034dc942ec4bc5cc30cc593ea2165e143d55
2933 Author: Bdale Garbee <bdale@gag.com>
2934 Date:   Sun Jan 10 17:38:26 2016 -0700
2935
2936     new build dependency on asciidoc
2937
2938 commit a66e57e0e92cdbd3c6a10b835c50f55647c07351
2939 Author: Keith Packard <keithp@keithp.com>
2940 Date:   Sun Jan 10 15:56:21 2016 -0800
2941
2942     altos: Switch PWM constants to end up exposing µsec
2943     
2944     This changes the constants so the clock runs at 1MHz, making the step
2945     1µsec each. Then make the period 20000 steps, or 20ms for a 50Hz
2946     frequency as before.
2947     
2948     Signed-off-by: Keith Packard <keithp@keithp.com>
2949
2950 commit 4e29bcd07819415ebe44e22536305e9c51d9ae4c
2951 Author: Keith Packard <keithp@keithp.com>
2952 Date:   Sun Jan 10 15:44:08 2016 -0800
2953
2954     altos: Set TeleMega v2.0 PWM to support servos
2955     
2956     Typical servos use a 50Hz signal with less than 10% duty cycle. Set
2957     the divider to 10 and the range to 64000 to provide a reasonable level
2958     of detail down in the low range.
2959     
2960     Signed-off-by: Keith Packard <keithp@keithp.com>
2961
2962 commit 54c20f1caf7f2e09284a9839cfa854d71f5634a2
2963 Author: Keith Packard <keithp@keithp.com>
2964 Date:   Sun Jan 10 11:44:17 2016 -0800
2965
2966     Add release notes for 1.6.2
2967     
2968     Signed-off-by: Keith Packard <keithp@keithp.com>
2969
2970 commit 7041c386cdf37716f8daf0bc1a9204db620e3de9
2971 Author: Keith Packard <keithp@keithp.com>
2972 Date:   Sun Jan 10 12:30:34 2016 -0800
2973
2974     Update java library versions
2975     
2976     altoslib is API incompatible with 1.6.1 release due to altos.state updates.
2977     
2978     Signed-off-by: Keith Packard <keithp@keithp.com>
2979
2980 commit b560b20cc7d4d5ac219613b29707f7cb8a018273
2981 Author: Keith Packard <keithp@keithp.com>
2982 Date:   Sun Jan 10 12:30:11 2016 -0800
2983
2984     altoslib: Remove debug message from AltosMap
2985     
2986     Signed-off-by: Keith Packard <keithp@keithp.com>
2987
2988 commit 88671454e931ea5e5946438df3c437493e2356c8
2989 Author: Keith Packard <keithp@keithp.com>
2990 Date:   Sun Jan 10 12:21:24 2016 -0800
2991
2992     Elide flight computer info from APRS section of TeleGPS manual
2993     
2994     Signed-off-by: Keith Packard <keithp@keithp.com>
2995
2996 commit efd6cd5682be3d0cead71ecfa00f37428b64785f
2997 Author: Keith Packard <keithp@keithp.com>
2998 Date:   Sun Jan 10 12:15:50 2016 -0800
2999
3000     Elide pyro channel information from EasyMini docs
3001     
3002     Signed-off-by: Keith Packard <keithp@keithp.com>
3003
3004 commit 4344bf3de532f54e0185421975c3c8dff1ac8bc2
3005 Author: Keith Packard <keithp@keithp.com>
3006 Date:   Sat Jan 9 21:33:23 2016 -0800
3007
3008     altos: Insert inter telemetry-packet delay
3009     
3010     The receivers take some time to reset the radio between packets, so
3011     make sure we don't send back-to-back telemetry too quickly by delaying
3012     after sending each telemetry packet.
3013
3014 commit fe8b7ab9dd1949c53af8f09f08679bdf0280c104
3015 Author: Keith Packard <keithp@keithp.com>
3016 Date:   Sat Jan 9 16:28:53 2016 -0800
3017
3018     Switch TeleMega v2.0 to CC1200 radio chip
3019     
3020     That's what we're using, after all
3021     
3022     Signed-off-by: Keith Packard <keithp@keithp.com>
3023
3024 commit 0fd370af8bc8842000415c4d182d84b4bf6f90fa
3025 Author: Keith Packard <keithp@keithp.com>
3026 Date:   Fri Dec 25 23:27:45 2015 -0800
3027
3028     altos: Set AO_PWM_TIMER_SCALE for telemega-v2.0
3029     
3030     This is needed to configure the PWM timer correctly
3031     
3032     Signed-off-by: Keith Packard <keithp@keithp.com>
3033
3034 commit 742f7c834bb5d651d2bebf2069d4e8facc33390d
3035 Author: Keith Packard <keithp@keithp.com>
3036 Date:   Fri Dec 25 23:20:29 2015 -0800
3037
3038     altos: Get stm32l pwm driver working
3039     
3040     Fix the CCMR1_OC1PE and CCMR2_OC3PE values.
3041     Disable clock when no PWM outputs are running.
3042     Fix the apb1enr value for the timer.
3043     Set ARR value to PWM_MAX - 1 -- ARR is off by one.
3044     Sets the GPIO pins to 40MHz bandwidth for sharper edges.
3045     
3046     Tested on EasyMega, but that code is not included as it breaks the
3047     companion protocol.
3048     
3049     Signed-off-by: Keith Packard <keithp@keithp.com>
3050
3051 commit 8aa0ab9fe9ca41f6d520d388973164bc0c599a06
3052 Author: Keith Packard <keithp@keithp.com>
3053 Date:   Thu Dec 24 00:28:59 2015 -0800
3054
3055     altos: Add TeleMega v2.0, including PWM driver
3056     
3057     Signed-off-by: Keith Packard <keithp@keithp.com>
3058
3059 commit a1b760d0a01e7087bcc214fcd395541fbf268fe8
3060 Author: Keith Packard <keithp@keithp.com>
3061 Date:   Wed Dec 23 10:18:24 2015 -0800
3062
3063     ao-tools/ao-dbg: Stop using sigvec
3064     
3065     Signed-off-by: Keith Packard <keithp@keithp.com>
3066
3067 commit f28d59ddf3e1b763ce5757f572e79085963818e9
3068 Author: Keith Packard <keithp@keithp.com>
3069 Date:   Sat Nov 14 00:01:05 2015 -0800
3070
3071     doc: Remove some bogus bits from am.css
3072     
3073     Just commented out stuff which had a nested comment and was thus invalid
3074     
3075     Signed-off-by: Keith Packard <keithp@keithp.com>
3076
3077 commit 19f700f1c99d2f3dcd8775cc629037312d853ee1
3078 Author: Keith Packard <keithp@keithp.com>
3079 Date:   Fri Nov 13 23:36:02 2015 -0800
3080
3081     doc: Construct html index for documentation
3082     
3083     This gets uploaded to keith's machine as an easy way to see what's available.
3084     
3085     Signed-off-by: Keith Packard <keithp@keithp.com>
3086
3087 commit 688c5ee98565a25e77c8618e1957ed3b8eff5a56
3088 Author: Keith Packard <keithp@keithp.com>
3089 Date:   Fri Nov 13 23:17:11 2015 -0800
3090
3091     doc: Try a different trick for asciidoc build issues
3092     
3093     asciidoc creates temp files in the current directory using basename of
3094     the source filename. Doing html and pdf builds in parallel causes
3095     chaos as a result. Fix this by having the pdf target build both
3096     serially, and then have the html target just depend on the pdf target.
3097     
3098     Signed-off-by: Keith Packard <keithp@keithp.com>
3099
3100 commit 992c0eab6275cec7d5035b99952537fd7ece2ed4
3101 Author: Keith Packard <keithp@keithp.com>
3102 Date:   Fri Nov 13 22:55:35 2015 -0800
3103
3104     doc: Split out EasyMini into a separate manual
3105     
3106     EasyMini uses a tiny fraction of the overall system software;
3107     splitting the manual out makes it a lot smaller.
3108     
3109     Signed-off-by: Keith Packard <keithp@keithp.com>
3110
3111 commit b030dfb3df859b3b3cb9c666394f315edcd11f49
3112 Author: Keith Packard <keithp@keithp.com>
3113 Date:   Fri Nov 13 20:59:25 2015 -0800
3114
3115     doc: Reformat html versions a bit
3116     
3117     Color more text black, including toc. Add a bit of space around the
3118     toc. Make paragraph labels bold.
3119     
3120     Signed-off-by: Keith Packard <keithp@keithp.com>
3121
3122 commit 6260ee1419ba5c122939b28e3e8fc6f8ecf48928
3123 Author: Keith Packard <keithp@keithp.com>
3124 Date:   Fri Nov 13 20:58:58 2015 -0800
3125
3126     doc: Move pad beeps table to usage chapter
3127     
3128     This places all of the sound information in one place.
3129     
3130     Signed-off-by: Keith Packard <keithp@keithp.com>
3131
3132 commit 2133c235af9511a42b65b239c6fcbeafa0e6d272
3133 Author: Keith Packard <keithp@keithp.com>
3134 Date:   Fri Nov 13 20:58:08 2015 -0800
3135
3136     doc: Provide more actual links instead of just chapter names
3137     
3138     Replace 'see chapter "foo"' with 'see <<foo>>' so that a link is
3139     created to directly go to the relevant text.
3140     
3141     Signed-off-by: Keith Packard <keithp@keithp.com>
3142
3143 commit 87cb41dfa07153b4dc44f723c65888945b3a11b1
3144 Author: Keith Packard <keithp@keithp.com>
3145 Date:   Fri Nov 13 20:56:45 2015 -0800
3146
3147     doc: Reformat 'Using MicroPeak' section
3148     
3149     Use labeled paragraphs to make the steps stand out.
3150     
3151     Signed-off-by: Keith Packard <keithp@keithp.com>
3152
3153 commit 4c1206a47431c7d873228fdd7328e1b9ac93a390
3154 Author: Keith Packard <keithp@keithp.com>
3155 Date:   Fri Nov 13 19:45:02 2015 -0800
3156
3157     Break out common pieces from TeleGPS and AltusMetrum
3158     
3159     This creates shared files for portions of the TeleGPS and AltusMetrum
3160     manual to avoid duplicating text between the two.
3161     
3162     Signed-off-by: Keith Packard <keithp@keithp.com>
3163
3164 commit ef2ba847ca53a8ddfcddd4e51a0dd43c45161c85
3165 Author: Keith Packard <keithp@keithp.com>
3166 Date:   Sun Nov 1 21:05:20 2015 -0800
3167
3168     doc: Add product logos to books
3169     
3170     This places the product logo on the title verso in pdf form, and above
3171     the TOC in html form.
3172     
3173     Signed-off-by: Keith Packard <keithp@keithp.com>
3174
3175 commit 8642690da76a86736b97026e2a259d8cbad26262
3176 Author: Keith Packard <keithp@keithp.com>
3177 Date:   Sun Nov 1 06:20:27 2015 -0800
3178
3179     altosui: telemini outline pdf changed name
3180     
3181     It's now telemini-outline.pdf, just like the other outline files.
3182     
3183     Signed-off-by: Keith Packard <keithp@keithp.com>
3184
3185 commit c877ecce7b67272eb6dcba50a58b59cd1cbfa5ab
3186 Author: Keith Packard <keithp@keithp.com>
3187 Date:   Sun Nov 1 05:43:59 2015 -0800
3188
3189     doc: verbose mode for a2x
3190
3191 commit 13d03ee8ba3a300ef2a3a380b60f08dbe37793b0
3192 Author: Keith Packard <keithp@keithp.com>
3193 Date:   Sun Nov 1 05:08:27 2015 -0800
3194
3195     doc: Make pdf titles less ridiculously large
3196     
3197     Instead of having them grow at 20% per nesting level, use 10% instead.
3198     
3199     Signed-off-by: Keith Packard <keithp@keithp.com>
3200
3201 commit 553d9041b52cbb88662fcc5e6a277ce43bd151cd
3202 Author: Keith Packard <keithp@keithp.com>
3203 Date:   Sun Nov 1 04:23:56 2015 -0800
3204
3205     doc: Get images and tables all centered and labeled
3206     
3207     A bunch of images were using image: instead of image:: and some images
3208     and tables were missing titles.
3209     
3210     Signed-off-by: Keith Packard <keithp@keithp.com>
3211
3212 commit edcb80f25875200a73269045db71c1579b0c2c82
3213 Author: Keith Packard <keithp@keithp.com>
3214 Date:   Sun Nov 1 04:22:27 2015 -0800
3215
3216     doc: Split revhistory to separate file for html docs
3217     
3218     This avoids having the revhistory clutter the top of the document.
3219     
3220     Signed-off-by: Keith Packard <keithp@keithp.com>
3221
3222 commit 1c0f2cd7cbd8fa1360d6b18a1bf8ac0707634aa4
3223 Author: Keith Packard <keithp@keithp.com>
3224 Date:   Sun Nov 1 04:20:18 2015 -0800
3225
3226     doc: Place html book contents on left side of page with separate scrollbar
3227     
3228     This lets the user see the toc while browsing the document
3229     
3230     Signed-off-by: Keith Packard <keithp@keithp.com>
3231
3232 commit f2816b305fc9e18a1190e392d43ff489936f10f0
3233 Author: Keith Packard <keithp@keithp.com>
3234 Date:   Sun Nov 1 04:18:34 2015 -0800
3235
3236     doc: Switch to free fonts. Publish fonts with docs.
3237     
3238     Signed-off-by: Keith Packard <keithp@keithp.com>
3239
3240 commit 5b782c8f45ed6c34ed0e7f1aff6ac298c9a879ff
3241 Author: Keith Packard <keithp@keithp.com>
3242 Date:   Sat Oct 31 23:54:26 2015 -0700
3243
3244     doc: Minor makefile cleanups
3245     
3246     Signed-off-by: Keith Packard <keithp@keithp.com>
3247
3248 commit 22f399b13fbbc980315a1f6a9f5616586b680d77
3249 Author: Keith Packard <keithp@keithp.com>
3250 Date:   Sat Oct 31 23:36:03 2015 -0700
3251
3252     doc: Convert telemetry and companion docs to asciidoc
3253     
3254     Signed-off-by: Keith Packard <keithp@keithp.com>
3255
3256 commit 14ad137fd14707bc7b45a3512a4a6f81915ca1c1
3257 Author: Keith Packard <keithp@keithp.com>
3258 Date:   Sat Oct 31 22:40:13 2015 -0700
3259
3260     doc: Convert AltOS doc to asciidoc
3261     
3262     It's still pretty stale, but at least it isn't in docbook?
3263     
3264     Signed-off-by: Keith Packard <keithp@keithp.com>
3265
3266 commit ce297f14ff54d230d01fb6dedaafca571e8b836b
3267 Author: Keith Packard <keithp@keithp.com>
3268 Date:   Sat Oct 31 21:34:42 2015 -0700
3269
3270     doc: Finish converting docs to asciidoc format
3271     
3272     Signed-off-by: Keith Packard <keithp@keithp.com>
3273
3274 commit 9aed128dc0aab5d49e1b3264c864a6c3e929bffe
3275 Author: Keith Packard <keithp@keithp.com>
3276 Date:   Sat Oct 31 14:54:20 2015 -0700
3277
3278     doc: Add titles to all figures
3279     
3280     Signed-off-by: Keith Packard <keithp@keithp.com>
3281
3282 commit 7ef958cbb51a04079e2a4833917ccef57ae5a2ee
3283 Author: Keith Packard <keithp@keithp.com>
3284 Date:   Thu Oct 29 20:32:58 2015 -0700
3285
3286     doc: Add updating firmware and using am products asciidoc bits
3287     
3288     This finishes the asciidoc transition
3289     
3290     Signed-off-by: Keith Packard <keithp@keithp.com>
3291
3292 commit 41aca78e3f7c17433e3c77cd3c596bbf8acab7cb
3293 Author: Keith Packard <keithp@keithp.com>
3294 Date:   Thu Oct 29 18:38:46 2015 -0700
3295
3296     doc: Add asciidoc version of Altos Droid manual
3297     
3298     Signed-off-by: Keith Packard <keithp@keithp.com>
3299
3300 commit 5ddf9525f94f38c20327d1f2b43917e43519b949
3301 Author: Keith Packard <keithp@keithp.com>
3302 Date:   Thu Oct 29 18:14:38 2015 -0700
3303
3304     doc: Add asciidoc version of altosui chapter.
3305     
3306     Signed-off-by: Keith Packard <keithp@keithp.com>
3307
3308 commit adfbccfeb551c9d0315116912e7255a173fc3103
3309 Author: Keith Packard <keithp@keithp.com>
3310 Date:   Thu Oct 29 16:49:00 2015 +0900
3311
3312     doc: Lots more conversion from docbook to asciidoc
3313     
3314     Signed-off-by: Keith Packard <keithp@keithp.com>
3315
3316 commit c5fd0eaa786a122580ba9a3ef7bfc0f2cfd8263b
3317 Author: Keith Packard <keithp@keithp.com>
3318 Date:   Thu Oct 29 15:50:31 2015 +0900
3319
3320     doc: Add asciidoc telemini v1.0
3321     
3322     Signed-off-by: Keith Packard <keithp@keithp.com>
3323
3324 commit 8cf466d7a767a20387a8d9d6ec81ee00af3fe4a7
3325 Author: Keith Packard <keithp@keithp.com>
3326 Date:   Thu Oct 29 12:12:15 2015 +0900
3327
3328     doc: Start doc transition to asciidoc
3329     
3330     Signed-off-by: Keith Packard <keithp@keithp.com>
3331
3332 commit c1ca80318102af122cb7b5380331e37795280761
3333 Author: Keith Packard <keithp@keithp.com>
3334 Date:   Tue Oct 13 13:52:32 2015 -0700
3335
3336     doc: Force FOP to read images from doc directory
3337     
3338     Looks like something changed and fop is now reading from the directory
3339     containing the source file. xmlto places that source in /tmp, making
3340     all relative URIs fail. Fix this by creating a fop configuration file
3341     directing it to load relative to the doc directory and then pass that
3342     through xmlto.
3343     
3344     Signed-off-by: Keith Packard <keithp@keithp.com>
3345
3346 commit 0ae116dd8779fd0594d443a735e7b6834ea9b713
3347 Author: Keith Packard <keithp@keithp.com>
3348 Date:   Sat Oct 10 14:10:59 2015 -0700
3349
3350     telelco: Fix pad reset to one on radio signal loss
3351     
3352     The pad number was getting reset back to one when signal was lost,
3353     causing pad one to get fired in this case even when already set to arm mode.
3354     
3355     Signed-off-by: Keith Packard <keithp@keithp.com>
3356
3357 commit 6659d08c41d89e4aa3d5e849c066a91bb09f2dd7
3358 Author: Keith Packard <keithp@keithp.com>
3359 Date:   Mon Sep 21 07:03:30 2015 +0100
3360
3361     Create directory on keithp.com when uploading devel version
3362     
3363     Signed-off-by: Keith Packard <keithp@keithp.com>
3364
3365 commit 926522c6791c2a5529ea24ebd67eea45350e3526
3366 Author: Keith Packard <keithp@keithp.com>
3367 Date:   Mon Sep 21 07:01:19 2015 +0100
3368
3369     altoslib: Keep downloading when a parse error occurs
3370     
3371     Eventually, we'll hit a block with no valid data and give up. Until
3372     then, keep going in case the flight computer glitched and wrote bad data.
3373     
3374     Signed-off-by: Keith Packard <keithp@keithp.com>
3375
3376 commit 431c713389dc819d2433d893c898ff82c7941722
3377 Author: Keith Packard <keithp@keithp.com>
3378 Date:   Mon Sep 21 06:32:52 2015 +0100
3379
3380     altoslib: Clean up remaining direct AltosState.state users
3381     
3382     This value has been hidden to avoid having it written accidentally;
3383     there were a few more bits of code using it though.
3384     
3385     Signed-off-by: Keith Packard <keithp@keithp.com>
3386
3387 commit c1dec3bec0789e8934a6e13fd117931ba468b318
3388 Author: Keith Packard <keithp@keithp.com>
3389 Date:   Mon Sep 21 06:27:26 2015 +0100
3390
3391     Bump release number to 1.6.1.1
3392     
3393     Signed-off-by: Keith Packard <keithp@keithp.com>
3394
3395 commit 0f8272852b12cf7a349cd9fd07f17c55cdb335a1
3396 Author: Keith Packard <keithp@keithp.com>
3397 Date:   Mon Sep 21 06:25:49 2015 +0100
3398
3399     altoslib: Make sure .eeprom download file is flushed on exception
3400     
3401     Flush and close the eeprom file even if an exception occurs to make
3402     sure that contents of the file aren't lost.
3403     
3404     Signed-off-by: Keith Packard <keithp@keithp.com>
3405
3406 commit a81d028dc62a0a624051fc3c9debb9687fda931e
3407 Author: Keith Packard <keithp@keithp.com>
3408 Date:   Mon Sep 21 06:00:36 2015 +0100
3409
3410     altosuilib: In display thread, set new state synchronously
3411     
3412     When replaying telemetry, received_time gets set by both the
3413     telemetry reader (when the file is initially read) and by the replay
3414     reader (as the telemetry is processed). Because these two events are
3415     separated by the time it takes to play the file, the second time is
3416     the one we want for figuring out how long since the last telemetry
3417     packet. However, if we set the global state when pulling the state out
3418     of the telemetry reader, and then the replay reader pauses for a long
3419     time, then the voice output thread sees the intermediate time value
3420     and thinks that it has been a long time since the last packet was
3421     received and reports that the rocket may have crashed.
3422     
3423     Fix this by just holding the read state until it has been passed by
3424     the replay reader and had the received_time set to current time.
3425     
3426     Signed-off-by: Keith Packard <keithp@keithp.com>
3427
3428 commit f61c2b73f3b63aa9c3f0fbccede89c71580089ba
3429 Author: Keith Packard <keithp@keithp.com>
3430 Date:   Sun Sep 13 22:27:10 2015 -0700
3431
3432     altosdroid: Add minus sign and decimal point to lat/lon input fields
3433     
3434     Some android devices always have change-sign and decimal-point keys
3435     visible, but some do not. Make sure they're available for lat/lon input.
3436     
3437     Signed-off-by: Keith Packard <keithp@keithp.com>
3438
3439 commit 9dae5f76c5691dc94c02839eb1321426f96f2134
3440 Author: Keith Packard <keithp@keithp.com>
3441 Date:   Sun Sep 13 22:24:47 2015 -0700
3442
3443     altos/telelco: Adjust drag race UI
3444     
3445     Enter/leave drag race is done by rotating the box selector knob
3446     to a new 'dr' position and then holding down the firing button; this
3447     avoids a potential accidental firing if you somehow don't realize
3448     you've armed the box before selecting drag race mode.
3449     
3450     Signed-off-by: Keith Packard <keithp@keithp.com>
3451
3452 commit 618f7ac8f31941fcbb3ed91829de69c0f0be8e0b
3453 Author: Keith Packard <keithp@keithp.com>
3454 Date:   Sat Sep 12 20:41:37 2015 -0700
3455
3456     altoslib: Rotation off by factor of two
3457     
3458     The rotation computation was off by a factor of two when converting
3459     the rates to a quaternion (the quaternion needs to be half of the
3460     actual rotation amount). This ended up presenting a tilt angle of
3461     twice what it should be.
3462     
3463     Signed-off-by: Keith Packard <keithp@keithp.com>
3464
3465 commit 0afa07d3c1dcb5e301fcb8b4edfecdd961662478
3466 Author: Keith Packard <keithp@keithp.com>
3467 Date:   Sat Sep 12 19:20:49 2015 -0700
3468
3469     altoslib: Hide 'state' member and use accessor function
3470     
3471     Someone was smashing the state to 'landed' when no packets had been
3472     received for a while. Found that by making it impossible for anyone
3473     outside of AltosState to change the value.
3474     
3475     Signed-off-by: Keith Packard <keithp@keithp.com>
3476
3477 commit 7064bc685aebeef07711e525dea4d5fbe33d235b
3478 Merge: ea1d241 dda3f45
3479 Author: Bdale Garbee <bdale@gag.com>
3480 Date:   Tue Sep 29 00:46:42 2015 -0600
3481
3482     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
3483
3484 commit ea1d24151cf76ae8f2368673317b66958e2508c4
3485 Author: Bdale Garbee <bdale@gag.com>
3486 Date:   Tue Sep 29 00:45:27 2015 -0600
3487
3488     add automatic Bluetooth functionality check to turnon_telebt
3489
3490 commit dda3f459eaff8d4e41cb44584c8ef77b8e2b3b1c
3491 Author: Keith Packard <keithp@keithp.com>
3492 Date:   Sat Aug 29 17:29:00 2015 -0700
3493
3494     altos/telelco: Add drag race UI
3495     
3496     With the unit disarmed, press and hold the fire button for five
3497     seconds to enable drag race mode.
3498     
3499     The display will show 'dr' for five seconds and beep five times to
3500     indicate that drag race mode is enabled. The decimal points in the
3501     display will all be displayed as an additional visual aid. Once every
3502     five seconds, it will beep.
3503     
3504     With drag race mode enabled, you can select a box/pad pair and press
3505     the 'fire' button to add it to the drag race group. For the current
3506     box, all members of the drag race group will have their continuity
3507     LEDs blink slowly. There will be no indication of continuity in this
3508     mode; you'll want to check that before enabling drag race mode. If you
3509     want to de-select a member of the group, just press the fire button
3510     again. Each time you push the fire button, it will beep out the pad
3511     number added or removed.
3512     
3513     Arm the box and you will not be able to add or remove members from the
3514     drag race group. Firing will simultaneously fire all members of the
3515     drag race group.
3516     
3517     To disable drag race mode, press and hold the fire button for two
3518     seconds. It will beep twice and turn off the decimal points in the display.
3519     
3520     Signed-off-by: Keith Packard <keithp@keithp.com>
3521
3522 commit 55c1be449ef7ce389a3d94686051d272c858bee4
3523 Author: Keith Packard <keithp@keithp.com>
3524 Date:   Sat Aug 29 13:21:19 2015 -0700
3525
3526     altos/telelco: Infrastructure changes for drag racing
3527     
3528     This makes the lco management code support arming multiple pads and
3529     firing all of them at once. The UI code does not expose this yet.
3530     
3531     Signed-off-by: Keith Packard <keithp@keithp.com>
3532
3533 commit 2839796ca5ace5f0c79643afc1a868893246b621
3534 Author: Keith Packard <keithp@keithp.com>
3535 Date:   Sat Aug 29 13:20:16 2015 -0700
3536
3537     altos: Provide direct segment driving interface for LCD displays
3538     
3539     This exposes a simple bit-mask for setting the seven segments instead
3540     of just allowing hex-decimal values.
3541     
3542     Signed-off-by: Keith Packard <keithp@keithp.com>
3543
3544 commit 368f87918547f89e7eb2a92990621e75e07a3b25
3545 Author: Keith Packard <keithp@keithp.com>
3546 Date:   Sat Aug 29 13:18:46 2015 -0700
3547
3548     altos/telefire: No reply for ARMED. Ignore time for FIRE.
3549     
3550     This will let us do drag races by letting the LCO arm multiple boxes
3551     and fire them all with a single command.
3552     
3553     Signed-off-by: Keith Packard <keithp@keithp.com>
3554
3555 commit f491eec1b950e4ad35a535db254a27a3dd2ad430
3556 Author: Keith Packard <keithp@keithp.com>
3557 Date:   Thu Aug 20 23:02:04 2015 -0700
3558
3559     altos: Add HAS_COMPANION to new boards with companion connectors
3560     
3561     Thanks much to Rob Derstadt for discovering this bug!
3562     
3563     TeleMetrum v2.0, TeleMega, EasyMega, TeleBalloon v2.0 all have
3564     companion connectors and yet HAS_COMPANION was not defined. This
3565     disabled companion telemetry packets on these products, but otherwise
3566     didn't have any effect.
3567     
3568     Signed-off-by: Keith Packard <keithp@keithp.com>
3569
3570 commit b4064bf63bb95c58d74869f4ff3e440370d64692
3571 Author: Keith Packard <keithp@keithp.com>
3572 Date:   Thu Aug 20 10:51:11 2015 -0700
3573
3574     ao-telem: Add companion packet telemetry data printing
3575     
3576     Signed-off-by: Keith Packard <keithp@keithp.com>
3577
3578 commit 73dd2e2c73c42f6ce949b4aa7992f63610962c37
3579 Author: Keith Packard <keithp@keithp.com>
3580 Date:   Thu Aug 20 10:50:30 2015 -0700
3581
3582     altoslib: Add companion telemetry data support
3583     
3584     This got lost in the great telemetry rewrite
3585     
3586     Signed-off-by: Keith Packard <keithp@keithp.com>
3587
3588 commit 489d22f448d9927533e90da4d16c5a332a234a8d
3589 Merge: 570daac eaab49a
3590 Author: Bdale Garbee <bdale@gag.com>
3591 Date:   Sun Aug 16 17:53:40 2015 +0200
3592
3593     Merge branch 'master' into branch-1.6
3594
3595 commit eaab49ab1859ebe236a201f93b5352e67aa7ed2b
3596 Author: Bdale Garbee <bdale@gag.com>
3597 Date:   Sun Aug 16 17:43:32 2015 +0200
3598
3599     apply wrap-and-sort to control files
3600
3601 commit 909b048a4797b2477279750a77a82c6f5f2776d0
3602 Author: Bdale Garbee <bdale@gag.com>
3603 Date:   Fri Aug 7 20:52:48 2015 -0600
3604
3605     turnon script for TeleBT v3.0
3606
3607 commit 9e40f97b013256650364a2a7be96d7d2216ed778
3608 Author: Bdale Garbee <bdale@gag.com>
3609 Date:   Fri Jul 31 10:47:08 2015 -0600
3610
3611     add a paragraph about TeleBT battery charging to AltosDroid chapter in documentation
3612
3613 commit 773b23c48f67564eec83fc3ee085862c547ad160
3614 Author: Bdale Garbee <bdale@gag.com>
3615 Date:   Tue Jul 28 01:34:25 2015 -0600
3616
3617     move turnon_teledongle to new cal-freq code
3618
3619 commit 570daace9caf7647a09c53d5c75593cc4c98b93b
3620 Author: Bdale Garbee <bdale@gag.com>
3621 Date:   Thu Jul 16 13:36:13 2015 -0600
3622
3623     changelog for 1.6.1 release
3624
3625 commit 6e9bb9178356620bd47d9f2e31abf42b7f1a8f11
3626 Merge: e2cefd8 87c8bb3
3627 Author: Bdale Garbee <bdale@gag.com>
3628 Date:   Thu Jul 16 13:31:42 2015 -0600
3629
3630     Merge branch 'master' into branch-1.6
3631
3632 commit 87c8bb3956897830da1f7aaca2990a9571767b73
3633 Merge: 643c2fb d6445b3
3634 Author: Bdale Garbee <bdale@gag.com>
3635 Date:   Thu Jul 16 07:54:35 2015 -0600
3636
3637     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
3638
3639 commit d6445b3739ac2c5dd040efdb97317a6b2a48044a
3640 Author: Keith Packard <keithp@keithp.com>
3641 Date:   Wed Jul 15 18:31:05 2015 -0700
3642
3643     Bump Java library versions
3644     
3645     Avoid problems if you have an old version of the library installed
3646     
3647     Signed-off-by: Keith Packard <keithp@keithp.com>
3648
3649 commit 643c2fb03833d658320f476ef731bbb06fe3cc31
3650 Merge: e41786f 271f56a
3651 Author: Bdale Garbee <bdale@gag.com>
3652 Date:   Wed Jul 15 16:43:50 2015 -0600
3653
3654     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
3655
3656 commit 271f56a41c7e785b0fab7e572325df842d104277
3657 Author: Keith Packard <keithp@keithp.com>
3658 Date:   Wed Jul 15 11:41:03 2015 -0700
3659
3660     Bump configure.ac versions to 1.6.1
3661     
3662     And set android version to 9
3663     
3664     Signed-off-by: Keith Packard <keithp@keithp.com>
3665
3666 commit 3cb5b31a534ab0c987667f37c976a5cd589d42a5
3667 Author: Keith Packard <keithp@keithp.com>
3668 Date:   Wed Jul 15 11:40:24 2015 -0700
3669
3670     doc: Update for 1.6.1
3671     
3672     Signed-off-by: Keith Packard <keithp@keithp.com>
3673
3674 commit 7338719414ec2c34235c368a55934be0765661c1
3675 Author: Keith Packard <keithp@keithp.com>
3676 Date:   Sat Jul 11 22:33:07 2015 -0700
3677
3678     Bump version to 1.6.0.4 (android version 8)
3679     
3680     Signed-off-by: Keith Packard <keithp@keithp.com>
3681
3682 commit 52dc7dc5a791f3e7e307ae11f5c6a20b5bf71ba6
3683 Author: Keith Packard <keithp@keithp.com>
3684 Date:   Sat Jul 11 22:31:47 2015 -0700
3685
3686     altosdroid: Cleanup Makefile.am
3687     
3688     Avoid re-creating library symlinks.
3689     Make builds depend on resource files too.
3690     
3691     Signed-off-by: Keith Packard <keithp@keithp.com>
3692
3693 commit c4af5cb233013b35d6763f5adf8d11b47f847111
3694 Author: Keith Packard <keithp@keithp.com>
3695 Date:   Sat Jul 11 22:17:16 2015 -0700
3696
3697     altosdroid: Clean up tab layout
3698     
3699     Fuss with weights and gravitys, then add some wrapping layouts to get
3700     things looking reasonable on small and larger screens.
3701     
3702     Signed-off-by: Keith Packard <keithp@keithp.com>
3703
3704 commit e41786fb384892961a6547e17812a24314ce9623
3705 Author: Bdale Garbee <bdale@gag.com>
3706 Date:   Sat Jul 11 22:59:34 2015 -0600
3707
3708     add debian branch spec to vcs-git: line in control so Debian tools work right
3709
3710 commit 251263f72a1c189aac709d3d0410eb916a9f66d6
3711 Author: Keith Packard <keithp@keithp.com>
3712 Date:   Sat Jul 11 20:37:16 2015 -0700
3713
3714     altosdroid: Add 'Auto' to map tracker list
3715     
3716     Add an 'auto' menu entry when selecting trackers from the map.
3717     
3718     Signed-off-by: Keith Packard <keithp@keithp.com>
3719
3720 commit 2997c9720f58b2955925e4e99c11a6ec302114a9
3721 Author: Keith Packard <keithp@keithp.com>
3722 Date:   Sat Jul 11 20:36:18 2015 -0700
3723
3724     altosdroid: Note time at startup to avoid flipping trackers
3725     
3726     Need to set the initial 'switch' time in onStart to avoid flipping
3727     between trackers before we've done any other 'switching' action.
3728     
3729     Signed-off-by: Keith Packard <keithp@keithp.com>
3730
3731 commit 2a85f273e33a316bd044c4c8dce17c19633cffe6
3732 Author: Keith Packard <keithp@keithp.com>
3733 Date:   Sat Jul 11 20:21:34 2015 -0700
3734
3735     Generate Android version info from configure.ac
3736     
3737     This avoids having version data in two places.
3738     
3739     Signed-off-by: Keith Packard <keithp@keithp.com>
3740
3741 commit ed682ca39496849b6c0d6bdf81bee6263864895f
3742 Author: Keith Packard <keithp@keithp.com>
3743 Date:   Sat Jul 11 19:55:43 2015 -0700
3744
3745     altosdroid: Add other igniter status, various other layout changes
3746     
3747     Show the first four igniters (A-D) in the pad tab. Make pad and flight
3748     layouts look a bit better
3749     
3750     Signed-off-by: Keith Packard <keithp@keithp.com>
3751
3752 commit 84021b8e0ab9262262345ce47671c3c0c6c43566
3753 Author: Keith Packard <keithp@keithp.com>
3754 Date:   Sat Jul 11 19:54:36 2015 -0700
3755
3756     altosdroid: Don't disconnect from bluetooth onStartCommand
3757     
3758     If we've already got a bluetooth connection running, don't slam it
3759     shut when the UI starts up again.
3760     
3761     Signed-off-by: Keith Packard <keithp@keithp.com>
3762
3763 commit bdc953e26ac2dd67021f905807324c6a02e49690
3764 Author: Keith Packard <keithp@keithp.com>
3765 Date:   Sat Jul 11 19:54:07 2015 -0700
3766
3767     altosdroid: Remove a debug line in AltosVoice
3768     
3769     Signed-off-by: Keith Packard <keithp@keithp.com>
3770
3771 commit 51bf46248ca7ee3c817e62274b7366258c9f87cf
3772 Author: Keith Packard <keithp@keithp.com>
3773 Date:   Sat Jul 11 19:53:06 2015 -0700
3774
3775     altosdroid: Pop up menu of nearby trackers on map click
3776     
3777     This lets the user select one of potentially many overlapping
3778     trackers, and also makes it clear when the current tracker is being
3779     changed.
3780     
3781     Signed-off-by: Keith Packard <keithp@keithp.com>
3782
3783 commit b64ab2a8a25b0c22443bc77829c7f35b4f1c2455
3784 Author: Keith Packard <keithp@keithp.com>
3785 Date:   Sat Jul 11 19:17:40 2015 -0700
3786
3787     altosdroid: Keep speaking even when screen is off
3788     
3789     Move the voice and telemetry disabling calls from onStop to onDestroy
3790     so that a stopped application only leaves off updating the screen, and
3791     not the voice bits as well.
3792     
3793     Signed-off-by: Keith Packard <keithp@keithp.com>
3794
3795 commit d015cfc1499a263549f52d46e9e5b934fcb94f53
3796 Author: Keith Packard <keithp@keithp.com>
3797 Date:   Sat Jul 11 19:15:08 2015 -0700
3798
3799     altoslib: Preload maps based on distance rather than number of tiles
3800     
3801     This lets you get the specific area requested at all zoom levels,
3802     rather than having further detail only at lower resolution zooms.
3803     
3804     Signed-off-by: Keith Packard <keithp@keithp.com>
3805
3806 commit afa37e4667ace42c1f43b01b613e639772cfeb75
3807 Author: Keith Packard <keithp@keithp.com>
3808 Date:   Sat Jul 11 19:13:37 2015 -0700
3809
3810     altoslib: Convert longitude from distance in AltosMapTransform
3811     
3812     This computes the longitude cooresponding to a specific distance at a
3813     specific latitude.
3814     
3815     Signed-off-by: Keith Packard <keithp@keithp.com>
3816
3817 commit 1b6f3de0a547fa452d5c40775bcf59c49b229e5e
3818 Author: Keith Packard <keithp@keithp.com>
3819 Date:   Sat Jul 11 19:11:48 2015 -0700
3820
3821     altoslib: Limit simultanous map tile downloads to 128
3822     
3823     Before this change, every tile requested would get downloaded at the
3824     same time. With moving to distance-based offline map loading radius
3825     values, the number of tiles at closer zooms was in the thousands,
3826     overwhelming the network.
3827     
3828     Signed-off-by: Keith Packard <keithp@keithp.com>
3829
3830 commit b313a5a3d5aba89330c0e20eeac00cc571828953
3831 Author: Keith Packard <keithp@keithp.com>
3832 Date:   Sat Jul 11 19:10:44 2015 -0700
3833
3834     altoslib: Make earth size constants public
3835     
3836     This lets other code share the values.
3837     
3838     Signed-off-by: Keith Packard <keithp@keithp.com>
3839
3840 commit a9bc364ecc69d9085146a39198f0671de164eb2e
3841 Author: Keith Packard <keithp@keithp.com>
3842 Date:   Sat Jul 11 19:09:28 2015 -0700
3843
3844     altoslib: Make AltosMap floor/ceil static. Check transform in paint
3845     
3846     This avoids crashing in paint when no transform has been set yet.
3847     
3848     Signed-off-by: Keith Packard <keithp@keithp.com>
3849
3850 commit 002c523fae9369f0261c28f33152289d965d406b
3851 Author: Keith Packard <keithp@keithp.com>
3852 Date:   Thu Jun 25 18:40:21 2015 -0700
3853
3854     telegps: Add receiver battery to Status display
3855     
3856     Makes it a bit cramped, but it's useful to have if you're using TeleBT.
3857     
3858     Signed-off-by: Keith Packard <keithp@keithp.com>
3859
3860 commit 3d508b66c2a15286bb9af88e4d92209463e0725d
3861 Author: Keith Packard <keithp@keithp.com>
3862 Date:   Thu Jun 25 18:35:07 2015 -0700
3863
3864     altosui: Correctly show/hide receiver battery value
3865     
3866     Override the hide() test function which has the listener_state
3867     
3868     Signed-off-by: Keith Packard <keithp@keithp.com>
3869
3870 commit f76d5e4fc2ed1e0d79c096cc89793d671ecb78c3
3871 Author: Keith Packard <keithp@keithp.com>
3872 Date:   Thu Jun 25 18:33:46 2015 -0700
3873
3874     altosuilib: Receiver battery voltage lives in listener_state
3875     
3876     The code to detect whether to show or hide this entry was using
3877     functions that weren't given the listener_state and hence returned
3878     MISSING all of the time.
3879     
3880     Signed-off-by: Keith Packard <keithp@keithp.com>
3881
3882 commit 7c0f66bf64f410415afaff1b5c8e1443512b7a57
3883 Author: Keith Packard <keithp@keithp.com>
3884 Date:   Thu Jun 25 18:31:29 2015 -0700
3885
3886     altoslib: Support TeleBT v3.0 battery voltage conversion
3887     
3888     TeleBT v3.0 uses an STM32 instead of a cc1111, so it needs a different
3889     voltage computation from the raw ADC value.
3890     
3891     Signed-off-by: Keith Packard <keithp@keithp.com>
3892
3893 commit ee1b0bd05bedb8a5a631cc79c77fde8fd920ac38
3894 Author: Keith Packard <keithp@keithp.com>
3895 Date:   Thu Jun 25 18:42:29 2015 -0700
3896
3897     altos/telebt-v3.0: Report battery voltage correctly
3898     
3899     There was an extra %d, and an extra ':' in the output, making the UI
3900     not parse the voltage correctly
3901     
3902     Signed-off-by: Keith Packard <keithp@keithp.com>
3903
3904 commit 6ecd75a7abb5fcee440f7672082013088634680b
3905 Author: Keith Packard <keithp@keithp.com>
3906 Date:   Thu Jun 25 12:23:04 2015 -0700
3907
3908     altoslib: Don't crash if dragging a map view without any tiles
3909     
3910     Signed-off-by: Keith Packard <keithp@keithp.com>
3911
3912 commit 06908e377b7b932bfe3f6dfc840a0a13340f32ce
3913 Author: Keith Packard <keithp@keithp.com>
3914 Date:   Thu Jun 25 12:22:04 2015 -0700
3915
3916     altosdroid: Class of offline map view widget changed
3917     
3918     Switch around AltosViewPager to match.
3919     
3920     Signed-off-by: Keith Packard <keithp@keithp.com>
3921
3922 commit 71d924288d45b09ae655d06df9780ba286e3f3be
3923 Author: Keith Packard <keithp@keithp.com>
3924 Date:   Wed Jun 24 12:02:22 2015 -0700
3925
3926     altosdroid: Display direction in map view
3927     
3928     Use direction in map view when available, otherwise use bearing
3929     
3930     Signed-off-by: Keith Packard <keithp@keithp.com>
3931
3932 commit c7067f14359d25a8275f2b09e7b30c06c0424dbb
3933 Author: Keith Packard <keithp@keithp.com>
3934 Date:   Tue Jun 23 22:40:11 2015 -0700
3935
3936     altoslib: Fix replay to run in realtime again
3937     
3938     At some point, this got sped up to 10x normal speedx
3939     
3940     Signed-off-by: Keith Packard <keithp@keithp.com>
3941
3942 commit 3e7588e382c70e467b1f328fcfb6bc38a6b79ac7
3943 Author: Keith Packard <keithp@keithp.com>
3944 Date:   Tue Jun 23 22:22:06 2015 -0700
3945
3946     Bump version to 1.6.0.3
3947     
3948     Mark the release of 1.6.0.3 altosdroid
3949     
3950     Signed-off-by: Keith Packard <keithp@keithp.com>
3951
3952 commit 3ce5e24fefaddaa74eadba4722e904354c871387
3953 Author: Keith Packard <keithp@keithp.com>
3954 Date:   Tue Jun 23 22:21:45 2015 -0700
3955
3956     altosdroid: Update version numbers in manifest
3957     
3958     Signed-off-by: Keith Packard <keithp@keithp.com>
3959
3960 commit d9f96c45d0a3099e9e5fd3c75cc27f9415fcaf55
3961 Author: Keith Packard <keithp@keithp.com>
3962 Date:   Tue Jun 23 22:21:30 2015 -0700
3963
3964     altosdroid: Mark tab-dependent voice output as done
3965     
3966     Signed-off-by: Keith Packard <keithp@keithp.com>
3967
3968 commit aed8d3ee2561bbec59b9684fb2042186191302ca
3969 Author: Keith Packard <keithp@keithp.com>
3970 Date:   Tue Jun 23 22:04:47 2015 -0700
3971
3972     altosdroid: Make sure flight voice output always starts with 'speed'
3973     
3974     This resets the flight-mode voice output state back to start again
3975     each time the flight tab is selected
3976     
3977     Signed-off-by: Keith Packard <keithp@keithp.com>
3978
3979 commit b1b41e0823a60769e7d2d806f4d97ae043d7dae3
3980 Author: Keith Packard <keithp@keithp.com>
3981 Date:   Tue Jun 23 22:00:33 2015 -0700
3982
3983     altosdroid: Make sure whole flight state is spoken even when no-one is moving
3984     
3985     This eliminates the case where much of the flight state wasn't
3986     reported if the tracker or receiver weren't moving.
3987     
3988     Signed-off-by: Keith Packard <keithp@keithp.com>
3989
3990 commit f275e73f42e0aaf1760da99fb93c394320aafb84
3991 Author: Keith Packard <keithp@keithp.com>
3992 Date:   Tue Jun 23 21:47:06 2015 -0700
3993
3994     altoslib: Typo slipped into AltosState.java
3995     
3996     Oops.
3997     
3998     Signed-off-by: Keith Packard <keithp@keithp.com>
3999
4000 commit bfa6cd8934b993bd4a67cfc7a4eeecf9b11915ef
4001 Author: Keith Packard <keithp@keithp.com>
4002 Date:   Tue Jun 23 21:39:09 2015 -0700
4003
4004     altosdroid: Change voice output around
4005     
4006     This makes the voice output depend on the current displayed tab; where
4007     the 'recovery' and 'map' tabs get the same value.
4008     
4009     Pad
4010     
4011         Reports igniter and GPS status changes
4012     
4013     Flight
4014     
4015         Report flight state changes and max height after apogee
4016         Report current speed, height and bearing/elevation/range once
4017         every 10 seconds while the rocket is in motion.
4018     
4019     Recovery
4020     
4021         Report distance and bearing when the location of either the
4022         tracker or the receiver changes by more than 10m, but not more
4023         than once every 10 seconds.
4024     
4025     Signed-off-by: Keith Packard <keithp@keithp.com>
4026
4027 commit a761b34ed8fc64435f5a49623f4a5c55e2dda33a
4028 Author: Keith Packard <keithp@keithp.com>
4029 Date:   Tue Jun 23 21:37:25 2015 -0700
4030
4031     altosdroid: Define strings for the tab names
4032     
4033     Use these everywhere instead of replicating the same name; might
4034     reduce errors.
4035     
4036     Signed-off-by: Keith Packard <keithp@keithp.com>
4037
4038 commit 56146cd379e1319b7adcf8e22cdda55f771e11be
4039 Author: Keith Packard <keithp@keithp.com>
4040 Date:   Tue Jun 23 21:35:43 2015 -0700
4041
4042     altosdroid: Show direction to target in recover tab
4043     
4044     This takes the bearing to target and current direction of motion (from
4045     the Android API) and computes a turn amount and displays that so you
4046     don't have to know which way is north when walking towards the rocket.
4047     
4048     Signed-off-by: Keith Packard <keithp@keithp.com>
4049
4050 commit 60b8bea12edb954e6140a92c8412364c9581e3c2
4051 Author: Keith Packard <keithp@keithp.com>
4052 Date:   Tue Jun 23 21:38:37 2015 -0700
4053
4054     altoslib: Use a longer filter for descent values
4055     
4056     This makes descent speeds almost useful, a huge improvement
4057     
4058     Signed-off-by: Keith Packard <keithp@keithp.com>
4059
4060 commit 1513693602c2a4cab0783833d1844c066edabb71
4061 Author: Keith Packard <keithp@keithp.com>
4062 Date:   Mon Jun 22 23:21:05 2015 -0700
4063
4064     altosdroid: Fix line drawing to old tracker location
4065     
4066     Selecting an old tracker would often fail to switch the bearing line
4067     as it was using the map data instead of just using the local data for
4068     the relavant tracker.
4069     
4070     Signed-off-by: Keith Packard <keithp@keithp.com>
4071
4072 commit 87d2ab135b493486162d33ff172eba1f44dc0ce5
4073 Author: Keith Packard <keithp@keithp.com>
4074 Date:   Mon Jun 22 21:04:01 2015 -0700
4075
4076     altosdroid: Mark four-tab change done
4077     
4078     Signed-off-by: Keith Packard <keithp@keithp.com>
4079
4080 commit fb0bd0ec18088ef01549cdb96243d591f618e32b
4081 Author: Keith Packard <keithp@keithp.com>
4082 Date:   Mon Jun 22 20:59:17 2015 -0700
4083
4084     altosdroid: Allow tracker selection from online map widget
4085     
4086     Need separate tracker selection code for online maps
4087     
4088     Signed-off-by: Keith Packard <keithp@keithp.com>
4089
4090 commit 2b6768ed32d7be444c49caa40d30b520177bb22a
4091 Author: Keith Packard <keithp@keithp.com>
4092 Date:   Mon Jun 22 20:43:23 2015 -0700
4093
4094     altosdroid: Switch to four tabs (pad/flight/recover/map)
4095     
4096     Ascent and descent were almost the same; no reason to have both.
4097     
4098     Signed-off-by: Keith Packard <keithp@keithp.com>
4099
4100 commit 0f56903774d9e8bb033dfc0af6945e8ddc1d3065
4101 Author: Keith Packard <keithp@keithp.com>
4102 Date:   Mon Jun 22 20:08:05 2015 -0700
4103
4104     altosdroid: Select tracker by clicking on map
4105     
4106     This lets you pick a  tracker from the map, rather than having to use
4107     the menu.
4108     
4109     Signed-off-by: Keith Packard <keithp@keithp.com>
4110
4111 commit a959c1926048d1b96a06aa291131afd7c8e771c7
4112 Author: Keith Packard <keithp@keithp.com>
4113 Date:   Mon Jun 22 18:41:01 2015 -0700
4114
4115     altosdroid: Get rid of on-line only maps tab
4116     
4117     The offline tab did both, so delete the online one and replace it with
4118     the offline one.
4119     
4120     Signed-off-by: Keith Packard <keithp@keithp.com>
4121
4122 commit 18fe64cf2648568dd0bde5acd7b627f1ddb6917e
4123 Author: Keith Packard <keithp@keithp.com>
4124 Date:   Mon Jun 22 18:26:34 2015 -0700
4125
4126     altosdroid: Display online/offline maps in same tab
4127     
4128     Make the map portion switchable between online and offline maps,
4129     leaving the rest of the tab alone.
4130     
4131     Signed-off-by: Keith Packard <keithp@keithp.com>
4132
4133 commit ee656c9d41238ab2c56859a03fe6b8ce8ff2df4e
4134 Author: Keith Packard <keithp@keithp.com>
4135 Date:   Sun Jun 21 10:34:00 2015 -0700
4136
4137     altosdroid: Add map source preference
4138     
4139     Not hooked up yet.
4140     
4141     Signed-off-by: Keith Packard <keithp@keithp.com>
4142
4143 commit 9af72a2e629779833ff1787bbfc2ddc8b9d88bba
4144 Author: Keith Packard <keithp@keithp.com>
4145 Date:   Sun Jun 21 09:37:05 2015 -0700
4146
4147     altosdroid: Show receiver battery voltage in the 'pad' view
4148     
4149     Helpful to determine when the receiver battery is getting low
4150     
4151     Signed-off-by: Keith Packard <keithp@keithp.com>
4152
4153 commit 4fbe9d5a1f56178a737ede6b31e8d01a02a7543f
4154 Author: Keith Packard <keithp@keithp.com>
4155 Date:   Sun Jun 21 09:36:20 2015 -0700
4156
4157     altosdroid: Use AltosMap set_zoom_centre
4158     
4159     This keeps the center of the zoom gesture pinned to the screen.
4160     
4161     Signed-off-by: Keith Packard <keithp@keithp.com>
4162
4163 commit 08e4e291d32bdb3ac3271a85190d277b1874d277
4164 Author: Keith Packard <keithp@keithp.com>
4165 Date:   Sun Jun 21 09:35:28 2015 -0700
4166
4167     altosuilib: Use AltosMap set_zoom_centre instead of in-line version
4168     
4169     Shares the same function with altosdroid this way.
4170     
4171     Signed-off-by: Keith Packard <keithp@keithp.com>
4172
4173 commit e0c318cdd32b3c3fed5099c754aea3ebc6186a0f
4174 Author: Keith Packard <keithp@keithp.com>
4175 Date:   Sun Jun 21 09:34:29 2015 -0700
4176
4177     altoslib: Add set_zoom_centre to AltosMap
4178     
4179     This zooms around a specific point, keeping it at the same place on
4180     the screen.
4181     
4182     Signed-off-by: Keith Packard <keithp@keithp.com>
4183
4184 commit b8bdb432aacc1a273ee484a29a24b3768c274db6
4185 Author: Keith Packard <keithp@keithp.com>
4186 Date:   Sat Jun 20 11:58:08 2015 -0700
4187
4188     altosdroid: Multiple tracker support for google maps
4189     
4190     Signed-off-by: Keith Packard <keithp@keithp.com>
4191
4192 commit c72e18fa1713b6e1aa7906210e79dd6354d2390f
4193 Author: Keith Packard <keithp@keithp.com>
4194 Date:   Sat Jun 20 11:57:29 2015 -0700
4195
4196     altosdroid: Stack map markers with newest rocket on top
4197     
4198     Signed-off-by: Keith Packard <keithp@keithp.com>
4199
4200 commit 0f40284c554aaadc71a598de8f1c5fe64ea387e1
4201 Author: Keith Packard <keithp@keithp.com>
4202 Date:   Sat Jun 20 11:58:45 2015 -0700
4203
4204     altosdroid: Support for sorting rockets by age
4205     
4206     Now we can just sort rockets so that the top-most shown is the newest
4207     
4208     Signed-off-by: Keith Packard <keithp@keithp.com>
4209
4210 commit de785b409e404a5296a7ff2037f52f3029536f28
4211 Author: Keith Packard <keithp@keithp.com>
4212 Date:   Sat Jun 20 11:57:10 2015 -0700
4213
4214     altosdroid: Remove debug
4215     
4216     Just noise at this point.
4217     
4218     Signed-off-by: Keith Packard <keithp@keithp.com>
4219
4220 commit b2ad3b1ef59fe6e51c8c544f215c33f3b48c3aeb
4221 Author: Keith Packard <keithp@keithp.com>
4222 Date:   Sat Jun 20 11:55:44 2015 -0700
4223
4224     altosdroid: Switch trackers automatically when changing freq or baud
4225     
4226     This works by switching trackers when we receive telemetry newer than
4227     the last time we changed the frequency configuration.
4228     
4229     Signed-off-by: Keith Packard <keithp@keithp.com>
4230
4231 commit 4a33336b8f468c5b0f2e14c0ee0242c9a24a8b90
4232 Author: Keith Packard <keithp@keithp.com>
4233 Date:   Sat Jun 20 11:54:20 2015 -0700
4234
4235     altosuilib: Allow for no transform in map mouse wheel function
4236     
4237     Signed-off-by: Keith Packard <keithp@keithp.com>
4238
4239 commit 3882e358b6f2970cb1afebcf2a71da34a57002df
4240 Author: Keith Packard <keithp@keithp.com>
4241 Date:   Sat Jun 20 11:53:24 2015 -0700
4242
4243     altoslib: Clean up map tile removal
4244     
4245     Remove them while walking the hash table, rather than creating a list
4246     to remove.
4247     
4248     Signed-off-by: Keith Packard <keithp@keithp.com>
4249
4250 commit 0cc03210d5d53d12604688f294b6ca39e3a025de
4251 Author: Keith Packard <keithp@keithp.com>
4252 Date:   Sat Jun 20 09:35:26 2015 -0700
4253
4254     altoslib/altosuilib: Fix equals methods, add hashCode
4255     
4256     Whenever we use a class as a HashMap key, that class needs to override
4257     the equals(Object) and hashCode() methods. Otherwise, the hash table
4258     won't work right.
4259     
4260     Signed-off-by: Keith Packard <keithp@keithp.com>
4261
4262 commit 5568c30f0a4fe346b8ed58934c23653064427d65
4263 Author: Keith Packard <keithp@aimi.keithp.com>
4264 Date:   Thu Jun 18 17:37:35 2015 -0700
4265
4266     ao-bringup: Make turnon_easymega run without 'make install'
4267     
4268     Use relative paths for all altos tools
4269     
4270     Signed-off-by: Keith Packard <keithp@aimi.keithp.com>
4271
4272 commit 6cf27ddd5e84824610d6a0bcbb81ba4626b71409
4273 Author: Keith Packard <keithp@keithp.com>
4274 Date:   Thu Jun 18 17:12:41 2015 -0700
4275
4276     ao-bringup: Use local versions of tools instead of /usr/bin for turnon_easymega
4277     
4278     Signed-off-by: Keith Packard <keithp@keithp.com>
4279
4280 commit 3e5521070564e9a184f3b781dad9d39cdd963510
4281 Author: Keith Packard <keithp@keithp.com>
4282 Date:   Thu Jun 18 16:56:19 2015 -0700
4283
4284     ao-bringup: Fail turnon_easymega if accel cal fails
4285     
4286     This prevents a failing board from being reported as good
4287     
4288     Signed-off-by: Keith Packard <keithp@keithp.com>
4289
4290 commit 6683146168216aacdc0842934cec1fb48ea03518
4291 Author: Keith Packard <keithp@keithp.com>
4292 Date:   Wed Jun 17 00:12:06 2015 -0700
4293
4294     telegps: use new AltosUIFrame constraint helper
4295     
4296     Signed-off-by: Keith Packard <keithp@keithp.com>
4297
4298 commit c71abc5c29025eb57fc78968a4ccf8c34cb3a6f2
4299 Author: Keith Packard <keithp@keithp.com>
4300 Date:   Tue Jun 16 23:49:45 2015 -0700
4301
4302     micropeak: Update mac/windows FTDI drivers
4303     
4304     Use latest FTDI drivers.
4305     
4306     Signed-off-by: Keith Packard <keithp@keithp.com>
4307
4308 commit 1098f7502a603a9cf80ad950f53a2c2abdf7ec93
4309 Author: Keith Packard <keithp@keithp.com>
4310 Date:   Tue Jun 16 23:43:53 2015 -0700
4311
4312     altosuilib: Create grid-bag helper functions in AltosUIFrame
4313     
4314     This eases the burden of creating suitable GridBagConstraints values
4315     
4316     Signed-off-by: Keith Packard <keithp@keithp.com>
4317
4318 commit cdeefaba7d5ef69f28e5dfb152c5f185f8b85f2e
4319 Author: Keith Packard <keithp@keithp.com>
4320 Date:   Tue Jun 16 23:42:59 2015 -0700
4321
4322     altosuilib: Show state.product if state.device_type isn't set
4323     
4324     MonitorIdle doesn't get the device type, only the product.
4325     
4326     Signed-off-by: Keith Packard <keithp@keithp.com>
4327
4328 commit 469be0a57dc9932c26f9c38986d22f6e8b2fd6ed
4329 Author: Keith Packard <keithp@keithp.com>
4330 Date:   Tue Jun 16 23:42:22 2015 -0700
4331
4332     altoslib: Remove debug output from AltosMap
4333     
4334     It's just annoying now.
4335     
4336     Signed-off-by: Keith Packard <keithp@keithp.com>
4337
4338 commit 76532162d63239b00a51dd0ff6b1356b07b62d2d
4339 Author: Keith Packard <keithp@keithp.com>
4340 Date:   Tue Jun 16 23:41:51 2015 -0700
4341
4342     altoslib: Expose public function to set state.product
4343     
4344     Just adds a setter function for this value.
4345     
4346     Signed-off-by: Keith Packard <keithp@keithp.com>
4347
4348 commit 5cacce8099bfc4fa4019538ac88be00bd2023865
4349 Author: Keith Packard <keithp@keithp.com>
4350 Date:   Tue Jun 16 23:40:34 2015 -0700
4351
4352     altoslib: Let the application disable the link cancel dialog
4353     
4354     This lets the application control whether to pop up the cancel dialog
4355     when the link isn't working.
4356     
4357     Signed-off-by: Keith Packard <keithp@keithp.com>
4358
4359 commit 75682a5a18f28acf8f4a61a0d45dad461218186e
4360 Author: Keith Packard <keithp@keithp.com>
4361 Date:   Tue Jun 16 23:38:07 2015 -0700
4362
4363     altoslib: Set product for idle monitor
4364     
4365     This lets the UI show the product name
4366     
4367     Signed-off-by: Keith Packard <keithp@keithp.com>
4368
4369 commit c46c2c5767c6e909fa58587e6c864a4fbaa9fa20
4370 Merge: 39f4361 6cb7d76
4371 Author: Robert Garbee <robert@gag.com>
4372 Date:   Sat Jun 13 17:40:59 2015 -0600
4373
4374     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
4375
4376 commit 39f4361675aa13899864f427a33d4aa48be56cd2
4377 Author: Robert Garbee <robert@gag.com>
4378 Date:   Sat Jun 13 17:40:16 2015 -0600
4379
4380     add beep when test completes
4381
4382 commit 6cb7d76c3fbe32b442713e358654d07b2506897e
4383 Author: Keith Packard <keithp@keithp.com>
4384 Date:   Sat Jun 6 20:37:53 2015 -0700
4385
4386     altosdroid: Resource changes needed for multi-tracker mode
4387     
4388     Signed-off-by: Keith Packard <keithp@keithp.com>
4389
4390 commit 78df1d5213c402780fa2ce7e062c64cf5a01c45f
4391 Author: Keith Packard <keithp@keithp.com>
4392 Date:   Sat Jun 6 20:37:27 2015 -0700
4393
4394     altosdroid: Note recent changes
4395     
4396     Signed-off-by: Keith Packard <keithp@keithp.com>
4397
4398 commit c813c2c8f71017a686128e06b5178fc99ece251c
4399 Author: Keith Packard <keithp@keithp.com>
4400 Date:   Sat Jun 6 20:36:18 2015 -0700
4401
4402     altosdroid: Add multi-tracker support
4403     
4404     This lets you view multiple trackers in the offline maps tab (online
4405     maps not done yet), saves state of each tracker to preferences.
4406     
4407     Signed-off-by: Keith Packard <keithp@keithp.com>
4408
4409 commit f79d569dfe333621d63a1d4001c85a88f736ad58
4410 Author: Keith Packard <keithp@keithp.com>
4411 Date:   Sat Jun 6 20:35:32 2015 -0700
4412
4413     altoslib: Add preferences for saving/restoring multiple flight states
4414     
4415     Signed-off-by: Keith Packard <keithp@keithp.com>
4416
4417 commit 64ca3d2e7d2b23aedfdf98ef8ebd760bd3291534
4418 Author: Keith Packard <keithp@keithp.com>
4419 Date:   Sat Jun 6 06:00:43 2015 -0700
4420
4421     ao-tools: Add missing ao-cal-freq man page
4422     
4423     Signed-off-by: Keith Packard <keithp@keithp.com>
4424
4425 commit 55753ac8b4b73ec58cb6ef874acc8d606193c5e7
4426 Author: Keith Packard <keithp@keithp.com>
4427 Date:   Fri Jun 5 22:52:51 2015 -0700
4428
4429     ao-bringup: Do telegps freq cal before testing GPS
4430     
4431     This lets the GPS get some time to see sats while we're messing with
4432     the radio frequency calibration.
4433     
4434     Signed-off-by: Keith Packard <keithp@keithp.com>
4435
4436 commit 527700623cc369cc58e15c29dc1ee374fa4efeb7
4437 Author: Keith Packard <keithp@keithp.com>
4438 Date:   Fri Jun 5 22:52:21 2015 -0700
4439
4440     ao-bringup: Use new ao-cal-freq program for cal-freq script
4441     
4442     Remove shell script bits that were unreliable.
4443     
4444     Signed-off-by: Keith Packard <keithp@keithp.com>
4445
4446 commit b9797aa9b6ca38db79c22e4dcefc6efc8a148599
4447 Author: Keith Packard <keithp@keithp.com>
4448 Date:   Fri Jun 5 22:17:02 2015 -0700
4449
4450     ao-tools: Create ao-cal-freq
4451     
4452     Create C-based frequency calibration program to replace shell script
4453     which isn't reliable.
4454     
4455     Signed-off-by: Keith Packard <keithp@keithp.com>
4456
4457 commit 7c75ec6e11a9287b2360bb62ef4ddb4f0e2083c7
4458 Author: Keith Packard <keithp@keithp.com>
4459 Date:   Tue Jun 2 12:48:42 2015 -0700
4460
4461     altosdroid: Highlight age in red when older than 10 seconds
4462     
4463     This lets you quickly identify stale data
4464     
4465     Signed-off-by: Keith Packard <keithp@keithp.com>
4466
4467 commit a533ea525620f194fd89fedad043659bb433d71b
4468 Author: Keith Packard <keithp@keithp.com>
4469 Date:   Sun May 31 23:09:18 2015 -0700
4470
4471     altosdroid: Switch from custom title to standard Holo theme
4472     
4473     This gives us the menu button, which is awfully useful on devices
4474     without a hardware version...
4475     
4476     Signed-off-by: Keith Packard <keithp@keithp.com>
4477
4478 commit 0beb02f1848e34892cca6e34ba83d6ca836d6df2
4479 Author: Keith Packard <keithp@keithp.com>
4480 Date:   Fri May 29 09:49:30 2015 -0700
4481
4482     altoslib: Require 'debug' hook in AltosMapInterface
4483     
4484     This lets the map users redirect debug messages as appropriate
4485     
4486     Signed-off-by: Keith Packard <keithp@keithp.com>
4487
4488 commit 4f1c4dddbce7b4e8673173f1690f79ba60e72ba2
4489 Author: Keith Packard <keithp@keithp.com>
4490 Date:   Fri May 29 09:43:58 2015 -0700
4491
4492     altosdroid: use 'show' to set new tab contents in onResume
4493     
4494     Hook onResume so that newly created/recreated tabs get current
4495     contents. The set_visible hook isn't sufficient for that.
4496     
4497     Signed-off-by: Keith Packard <keithp@keithp.com>
4498
4499 commit 625c496987c2d320a51f3d27f8f00bde17b46a78
4500 Author: Keith Packard <keithp@keithp.com>
4501 Date:   Fri May 29 09:42:58 2015 -0700
4502
4503     altosdroid: Missing call to super.onDetach from TabMapOffline
4504     
4505     Causes an exception when you shut down the application.
4506     
4507     Signed-off-by: Keith Packard <keithp@keithp.com>
4508
4509 commit 50e709a4088f3d6846fd66cbe9b8c437b3f9c88b
4510 Author: Keith Packard <keithp@keithp.com>
4511 Date:   Thu May 28 22:13:39 2015 -0700
4512
4513     altosdroid: Split out AltosMapView into separate file
4514     
4515     This lets us use the regular layout configuration bits in the .xml
4516     file instead of needing to patch the map object into the display. That
4517     was causing problems when re-entering the map tab as the map view
4518     would somehow end up with a zero width.
4519     
4520     Signed-off-by: Keith Packard <keithp@keithp.com>
4521
4522 commit 2e424f8dc2886aa475e6ddb21457eba08f768b16
4523 Author: Keith Packard <keithp@keithp.com>
4524 Date:   Thu May 28 22:12:26 2015 -0700
4525
4526     altosdroid: Add 'Current Location' as an option when preloading maps
4527     
4528     This lets you load maps around your current location, in case your
4529     favorite launch site isn't in the list.
4530     
4531     Signed-off-by: Keith Packard <keithp@keithp.com>
4532
4533 commit 4315b91d7afc2391e3f7444906ac226500bf1345
4534 Author: Keith Packard <keithp@keithp.com>
4535 Date:   Thu May 28 22:08:51 2015 -0700
4536
4537     altosdroid: Save selected map type in AltosDroid object
4538     
4539     The map tabs may not have been created when the map type was selected,
4540     so save the desired type in the main application object.
4541     
4542     Signed-off-by: Keith Packard <keithp@keithp.com>
4543
4544 commit 41028472fd2e7e0209125e76b94e551f9d10f89c
4545 Author: Keith Packard <keithp@keithp.com>
4546 Date:   Thu May 28 22:06:55 2015 -0700
4547
4548     altosdroid: Disable debug output on release builds
4549     
4550     We generate an awful lot of debug spew to the log; presumably that's
4551     not helping performance, so lose that for release builds.
4552     
4553     Signed-off-by: Keith Packard <keithp@keithp.com>
4554
4555 commit e2d54de24df37baa5ff3837334d97f726934ec25
4556 Author: Keith Packard <keithp@keithp.com>
4557 Date:   Thu May 28 22:05:36 2015 -0700
4558
4559     altosdroid: Look for zipalign in the new place too
4560     
4561     This build tool moved for some reason...
4562     
4563     Signed-off-by: Keith Packard <keithp@keithp.com>
4564
4565 commit 85013045ca505096064aaf45c312b158d0263d2a
4566 Author: Keith Packard <keithp@keithp.com>
4567 Date:   Thu May 28 01:05:18 2015 -0700
4568
4569     altosdroid: Add map types and map preloading UIs
4570     
4571     This adds an ugly dialog to select which maps to preload, and also
4572     adds the ability to display other map types.
4573     
4574     Signed-off-by: Keith Packard <keithp@keithp.com>
4575
4576 commit ba698c2cc48677735046d0881df9c180674e4082
4577 Author: Keith Packard <keithp@keithp.com>
4578 Date:   Thu May 28 01:01:23 2015 -0700
4579
4580     altoslib: Pass all map loader params to set_load_params
4581     
4582     Add zoom and map type to the param list so we don't call set_zoom and
4583     set_maptype separately, which only causes lots of extra image loads to
4584     get started unnecessarily.
4585     
4586     Signed-off-by: Keith Packard <keithp@keithp.com>
4587
4588 commit c63617415553d97f9be2f19b94365b53d4480c68
4589 Author: Keith Packard <keithp@keithp.com>
4590 Date:   Thu May 28 01:00:47 2015 -0700
4591
4592     altosuilib: Eliminate extra MapCache in AltosUIMapPreloadNew
4593     
4594     Use the cache from the map.
4595     
4596     Signed-off-by: Keith Packard <keithp@keithp.com>
4597
4598 commit ff01fb7275973cdbfd976d3b4e638c6235108121
4599 Author: Keith Packard <keithp@keithp.com>
4600 Date:   Thu May 28 01:00:22 2015 -0700
4601
4602     altosuilib: Get rid of AltosUIMapNew.set_load_params
4603     
4604     This isn't needed anywhere.
4605     
4606     Signed-off-by: Keith Packard <keithp@keithp.com>
4607
4608 commit b49b74847ad55e14d1dbf2872ebbe313147e9fd3
4609 Author: Keith Packard <keithp@keithp.com>
4610 Date:   Wed May 27 23:14:09 2015 -0700
4611
4612     altosuilib: Switch to altoslib map loading code
4613     
4614     Remove the map loading code from the UI bits and use the new altoslib
4615     version instead.
4616     
4617     Signed-off-by: Keith Packard <keithp@keithp.com>
4618
4619 commit 3b4e6da65158a434905dc652e46c69d2c38cea7f
4620 Author: Keith Packard <keithp@keithp.com>
4621 Date:   Wed May 27 23:12:34 2015 -0700
4622
4623     altoslib: Add map loading helper class
4624     
4625     This adds the AltosMapLoader class, which iterates over a sequence of
4626     zoom levels and formats to get local copies of a desired launch site.
4627     
4628     Signed-off-by: Keith Packard <keithp@keithp.com>
4629
4630 commit ccd557c846eed37328d6799f36e61308bcbb678a
4631 Author: Keith Packard <keithp@keithp.com>
4632 Date:   Wed May 27 23:11:58 2015 -0700
4633
4634     altoslib: Provide toString method for AltosLatLon
4635     
4636     Makes printing them easier.
4637     
4638     Signed-off-by: Keith Packard <keithp@keithp.com>
4639
4640 commit 756f501593365b80cfa6f7ca871da3291bbde67a
4641 Author: Keith Packard <keithp@keithp.com>
4642 Date:   Wed May 27 22:43:53 2015 -0700
4643
4644     altoslib: Start with map empty
4645     
4646     Don't load images from 0,0 for no good reason; wait until someone sets
4647     a desired lat/lon
4648     
4649     Signed-off-by: Keith Packard <keithp@keithp.com>
4650
4651 commit ccba2bb2f193ffd6c3a3d934a46bc06466b4b258
4652 Author: Keith Packard <keithp@keithp.com>
4653 Date:   Wed May 27 15:31:25 2015 -0700
4654
4655     altosuilib: Use altoslib site list loader
4656     
4657     Removes the custom version and uses the shared code
4658     
4659     Signed-off-by: Keith Packard <keithp@keithp.com>
4660
4661 commit 519d477cb752d9cdba78a4daa32b1f547bf889b4
4662 Author: Keith Packard <keithp@keithp.com>
4663 Date:   Wed May 27 15:30:29 2015 -0700
4664
4665     altoslib: Add AltosLaunchSite bits
4666     
4667     This asynchronously fetches the list of available launch sites from
4668     the standard location and notifies the caller when finished.
4669     
4670     Signed-off-by: Keith Packard <keithp@keithp.com>
4671
4672 commit 103a50db50be55c2293468d273dd94472dd89d94
4673 Author: Keith Packard <keithp@keithp.com>
4674 Date:   Tue May 26 23:05:49 2015 -0700
4675
4676     altosdroid: Place icons on screen instead of drawing path
4677     
4678     This makes drawing a bunch faster, and locating stuff on the screen easier.
4679     
4680     Signed-off-by: Keith Packard <keithp@keithp.com>
4681
4682 commit 2509b664df6a13e6ae9e6753dc9fa0d696a4f6c7
4683 Author: Keith Packard <keithp@keithp.com>
4684 Date:   Tue May 26 23:05:11 2015 -0700
4685
4686     altosdroid: Centralize debug printf code
4687     
4688     Create AltosDebug to hold the debug code, use it everywhere.
4689     
4690     Signed-off-by: Keith Packard <keithp@keithp.com>
4691
4692 commit bca342577740a9d04b8419ecadcff582e77f1e61
4693 Author: Keith Packard <keithp@keithp.com>
4694 Date:   Tue May 26 23:02:43 2015 -0700
4695
4696     altosdroid: Move pause before reopening bluetooth into connec thread
4697     
4698     This avoids stalling the UI while waiting for TBT to boot.
4699     
4700     Signed-off-by: Keith Packard <keithp@keithp.com>
4701
4702 commit 7975d088a4ac44c0943134fa41d0e3b88f50b98f
4703 Author: Keith Packard <keithp@keithp.com>
4704 Date:   Tue May 26 19:47:04 2015 -0700
4705
4706     altosdroid: Add offline map tab
4707     
4708     It's not very fancy yet, but it does zoom and pan, and show the path
4709     of the rocket with a line.
4710     
4711     Signed-off-by: Keith Packard <keithp@keithp.com>
4712
4713 commit f822b84d8c25159ff113fef6a419b6e18e87a87a
4714 Author: Keith Packard <keithp@keithp.com>
4715 Date:   Tue May 26 01:04:00 2015 -0700
4716
4717     altosuilib: Get rid of AltosUIVersion.java
4718     
4719     It's been moved to altoslib/AltosVersion.java
4720     
4721     Signed-off-by: Keith Packard <keithp@keithp.com>
4722
4723 commit 4895f443e4a748de2677e51869f20c05d265c944
4724 Author: Keith Packard <keithp@keithp.com>
4725 Date:   Tue May 26 00:56:17 2015 -0700
4726
4727     altosuilib: Remove old map bits
4728     
4729     Signed-off-by: Keith Packard <keithp@keithp.com>
4730
4731 commit f41fe2291891b28327c332098bdc601bc75fc4c0
4732 Author: Keith Packard <keithp@keithp.com>
4733 Date:   Tue May 26 00:46:21 2015 -0700
4734
4735     altosuilib: Use new map code for map preload UI
4736     
4737     Signed-off-by: Keith Packard <keithp@keithp.com>
4738
4739 commit cd0f4de98ea709e5f070d5f1337658590d2004a1
4740 Author: Keith Packard <keithp@keithp.com>
4741 Date:   Tue May 26 00:33:02 2015 -0700
4742
4743     altosuilib: Add AltosUIImage.java
4744     
4745     Signed-off-by: Keith Packard <keithp@keithp.com>
4746
4747 commit 501fa41111b93cc213a1114a33612858e1e93ab5
4748 Author: Keith Packard <keithp@keithp.com>
4749 Date:   Tue May 26 00:29:53 2015 -0700
4750
4751     altoslib/altosuilib: Get new Map display code running in altosui and telegps
4752     
4753     Looks like the display is all hooked up. Still need to replace the
4754     preload UIs.
4755     
4756     Signed-off-by: Keith Packard <keithp@keithp.com>
4757
4758 commit cb23b992be8ba40c97d8988c134a814a13ccd58c
4759 Author: Keith Packard <keithp@keithp.com>
4760 Date:   Mon May 25 20:34:05 2015 -0700
4761
4762     altoslib/altosuilib: Update library version to 7
4763     
4764     So many ABI/API changes
4765     
4766     Signed-off-by: Keith Packard <keithp@keithp.com>
4767
4768 commit 68effc6e39f731a2d7bbe2963999c1e785118897
4769 Author: Keith Packard <keithp@keithp.com>
4770 Date:   Mon May 25 20:33:28 2015 -0700
4771
4772     altoslib: More frobbing with new map bits
4773     
4774     Signed-off-by: Keith Packard <keithp@keithp.com>
4775
4776 commit 00aca369c4070901e0400f291d5f269b5fb8015c
4777 Author: Keith Packard <keithp@keithp.com>
4778 Date:   Mon May 25 20:10:37 2015 -0700
4779
4780     altoslib: Get new abstract mapping code compiling
4781     
4782     Not useful yet, but at least it compiles now?
4783     
4784     Signed-off-by: Keith Packard <keithp@keithp.com>
4785
4786 commit 6ca2c42061b3c0160bf0137c9cd65989c522b826
4787 Author: Keith Packard <keithp@keithp.com>
4788 Date:   Mon May 25 16:35:23 2015 -0700
4789
4790     altoslib: Build AltosVersion.java in configure.ac
4791     
4792     Signed-off-by: Keith Packard <keithp@keithp.com>
4793
4794 commit dcbd87bc685924a6587a5f4dae47d34f417601b0
4795 Author: Keith Packard <keithp@keithp.com>
4796 Date:   Mon May 25 16:26:01 2015 -0700
4797
4798     altos/telelco: Show box voltage with pad knob instead of firing button
4799     
4800     Turn left past '1' and see the firing box battery voltage instead of
4801     pushing the firing button with the box disarmed. This seems like a
4802     safer UI.
4803     
4804     Signed-off-by: Keith Packard <keithp@keithp.com>
4805
4806 commit 91f617d450c187500593d1ae785958187f68ca14
4807 Author: Keith Packard <keithp@keithp.com>
4808 Date:   Mon May 25 15:49:21 2015 -0700
4809
4810     altos/telelco: Display telefire battery voltage
4811     
4812     When the firing button is pressed while unarmed, show the telefire
4813     battery voltage in the display.
4814     
4815     Signed-off-by: Keith Packard <keithp@keithp.com>
4816
4817 commit a54aac3361b7bd18f111e5ba06fb89015504b8a4
4818 Author: Keith Packard <keithp@keithp.com>
4819 Date:   Mon May 25 15:47:46 2015 -0700
4820
4821     altos: Add telelco v0.3 (v0.2 with cc1200 instead of cc1120)
4822     
4823     Signed-off-by: Keith Packard <keithp@keithp.com>
4824
4825 commit 9b268351aee44de959dcc4c792189c10a00428fe
4826 Author: Keith Packard <keithp@keithp.com>
4827 Date:   Mon May 25 13:23:54 2015 -0700
4828
4829     telefire: Report telefire battery voltage over telemetry link
4830     
4831     Signed-off-by: Keith Packard <keithp@keithp.com>
4832
4833 commit 0e76cb2a7d5db24b6cecdccb6fb8d5bf5527fadf
4834 Author: Keith Packard <keithp@keithp.com>
4835 Date:   Sun May 24 17:28:07 2015 -0700
4836
4837     altos: Only set CMAC RSSI value on valid packet received
4838     
4839     This ignores spurious packets for the purpose of showing the RSSI
4840     value in telelco/telefire, avoiding warning about 'low RSSI' when the
4841     radio receives noise.
4842     
4843     Signed-off-by: Keith Packard <keithp@keithp.com>
4844
4845 commit e7c25e3ba04b1e9f8e6fa31e2d464fe96a074dad
4846 Author: Keith Packard <keithp@keithp.com>
4847 Date:   Sun May 24 17:25:25 2015 -0700
4848
4849     telefire: Make 'good' RSSI value configurable
4850     
4851     Different radios will have different 'good' RSSI values, so let each
4852     product configure it, leaving the default set to -90dBm, which is
4853     a solid signal value for the CC1111.
4854     
4855     Signed-off-by: Keith Packard <keithp@keithp.com>
4856
4857 commit 29edc37a8de56cb6eb028e3bf3f56aa70f109eba
4858 Author: Keith Packard <keithp@keithp.com>
4859 Date:   Thu May 21 13:49:28 2015 -0700
4860
4861     altoslib: Create display-independent map support code
4862     
4863     This takes the swing-specific map code and creates a generic version.
4864     
4865     Signed-off-by: Keith Packard <keithp@keithp.com>
4866
4867 commit 59a28811cb19d315b483df296145a2769c445f80
4868 Author: Keith Packard <keithp@keithp.com>
4869 Date:   Tue May 19 10:25:05 2015 -0700
4870
4871     Flip version to 1.6.0.2
4872     
4873     Tag a version for development builds
4874     
4875     Signed-off-by: Keith Packard <keithp@keithp.com>
4876
4877 commit f3ddaae82215e365726f2a62a3dc46bfb29eb1b5
4878 Author: Keith Packard <keithp@keithp.com>
4879 Date:   Tue May 19 10:23:09 2015 -0700
4880
4881     micropeak: Use fast load mode by default in -load script
4882     
4883     Speed up flashing in default config
4884     
4885     Signed-off-by: Keith Packard <keithp@keithp.com>
4886
4887 commit eac71f2b871357ff69581c713059a3741a82a932
4888 Author: Keith Packard <keithp@keithp.com>
4889 Date:   Tue May 19 10:22:10 2015 -0700
4890
4891     microsplash: Add 'publish' target to Makefile
4892     
4893     This dumps the resulting binary and -load script into the Binaries
4894     directory of the altusmetrumllc repo
4895     
4896     Signed-off-by: Keith Packard <keithp@keithp.com>
4897
4898 commit dba00b3d9102db99592f5822a703e64d98ace8bb
4899 Author: Keith Packard <keithp@keithp.com>
4900 Date:   Tue May 19 10:17:01 2015 -0700
4901
4902     altos: Support 32MHz xtal on cc1200
4903     
4904     I ended up building some cc1200-based boards with 32MHz xtals, so just
4905     make this an option when building the driver.
4906     
4907     Signed-off-by: Keith Packard <keithp@keithp.com>
4908
4909 commit fcb523cd083503591fa1277648e5deb258bbbaf4
4910 Author: Keith Packard <keithp@keithp.com>
4911 Date:   Tue May 19 10:16:10 2015 -0700
4912
4913     doc: Clarify what 'after motor' means
4914     
4915     Note that this means after motor burn-out, not after motor start.
4916     
4917     Signed-off-by: Keith Packard <keithp@keithp.com>
4918
4919 commit b67e6ae8ce34ef119da96b442776bb3d78b4f874
4920 Author: Keith Packard <keithp@keithp.com>
4921 Date:   Tue May 19 10:14:43 2015 -0700
4922
4923     ao-dump-up: Add --wait option to make testing µPusb easier
4924     
4925     The --wait option hangs around until a suitable device appears, so
4926     that you can test a pile of µPusb devices without needing to
4927     constantly interact with the command line.
4928     
4929     Signed-off-by: Keith Packard <keithp@keithp.com>
4930
4931 commit 2b57158737f85c7009658b3e923c66794f01bbdf
4932 Author: Keith Packard <keithp@keithp.com>
4933 Date:   Tue May 19 10:12:52 2015 -0700
4934
4935     altosui: Remove un-implemented --fetchmaps argument
4936     
4937     This has been stubbed out for a while, so just remove it.
4938     
4939     Signed-off-by: Keith Packard <keithp@keithp.com>
4940
4941 commit 3e5e9333420ede74d998556c1bbd5888e8ff75ae
4942 Author: Keith Packard <keithp@keithp.com>
4943 Date:   Tue May 19 10:09:22 2015 -0700
4944
4945     altoslib: Expose locale and non-locale floating point parsing functions
4946     
4947     UI bits use locale-specific floating point formats, so parsing those
4948     needs to use the locale. Network-based data, like .kml bits need to
4949     use non-locale-specific parsing code, so now we've got both APIs
4950     available, and each used as appropriate.
4951     
4952     Signed-off-by: Keith Packard <keithp@keithp.com>
4953
4954 commit 3fbf0a29a1b8a67b90ef965ee3e2e972c0ec33a1
4955 Author: Keith Packard <keithp@keithp.com>
4956 Date:   Mon May 18 10:52:24 2015 -0700
4957
4958     altoslib: Use Locale.ROOT for KML export
4959     
4960     This avoids locale-specific number formatting, which breaks
4961     googleearth when importing the resulting file.
4962     
4963     Signed-off-by: Keith Packard <keithp@keithp.com>
4964
4965 commit 1cc1900e13d79e0451587439c23bbb062d86cee3
4966 Author: Keith Packard <keithp@keithp.com>
4967 Date:   Mon Apr 27 22:29:45 2015 -0700
4968
4969     altosdroid: Fix tab label height problems
4970     
4971     With a newer android API versions, we can set the indicator to a View
4972     instead of just a string. This lets us wrap the desired string in a
4973     TextView and show just that for the indicator, making it exactly the
4974     right size.
4975     
4976     Signed-off-by: Keith Packard <keithp@keithp.com>
4977
4978 commit 7bfa8841b65707d629b425b306ec4cc3acfc156c
4979 Author: Keith Packard <keithp@keithp.com>
4980 Date:   Mon Apr 27 21:20:22 2015 -0700
4981
4982     altosdroid: Add USB support for TeleDongle/TeleBT
4983     
4984     This lets AltosDroid use a USB-connected receiver as well as Bluetooth devices.
4985     
4986     Signed-off-by: Keith Packard <keithp@keithp.com>
4987
4988 commit 356617a3476e237311b8bbcefd6beda8271b120d
4989 Author: Keith Packard <keithp@keithp.com>
4990 Date:   Sun Mar 29 12:10:47 2015 -0700
4991
4992     windows: Use new windows stub to launch applications
4993     
4994     This avoids needing to locate javaw on the system while also making
4995     the registry entries less fragile.
4996     
4997     Signed-off-by: Keith Packard <keithp@keithp.com>
4998
4999 commit fe76229618643f0af7eae965e7a8fc6c70410d27
5000 Author: Keith Packard <keithp@keithp.com>
5001 Date:   Sun Mar 29 12:08:42 2015 -0700
5002
5003     icon: Convert windows stub into launcher program
5004     
5005     Instead of an empty windows stub that exists only to hold icons, add
5006     useful code that allows it to find and run the related java
5007     application. This also adds more resources to that application to
5008     provide more information to Windows too.
5009     
5010     Signed-off-by: Keith Packard <keithp@keithp.com>
5011
5012 commit b1b69c8b73cbffb56c688f6a968d144b642cdff2
5013 Author: Keith Packard <keithp@keithp.com>
5014 Date:   Fri Mar 20 15:09:20 2015 -0700
5015
5016     altos/stmf0: Have fast ADC ring buffer code use wrap-around
5017     
5018     Instead of requiring that the whole set of returned values fit
5019     precisely in the ring, allow for wrap-around so that we can fetch an
5020     odd number of ADC values. The previous version required that the fetch
5021     amount always be a factor of the ADC buffer size.
5022     
5023     Signed-off-by: Keith Packard <keithp@keithp.com>
5024
5025 commit 43b4044dc71d44cb25be6397b4d66fd792580eed
5026 Author: Keith Packard <keithp@keithp.com>
5027 Date:   Thu Mar 19 01:12:24 2015 -0700
5028
5029     altos/chaoskey: Set USB VID/PID to 0x1d50/0x60c6
5030     
5031     These are allocated from the OpenMoko USB vendor ID page and offer a
5032     more 'official' number than from using the 0xfffe space.
5033     
5034     Signed-off-by: Keith Packard <keithp@keithp.com>
5035
5036 commit c3321bd9f73c89686fe983a8d99f4e54fa91550e
5037 Author: Keith Packard <keithp@keithp.com>
5038 Date:   Thu Mar 19 01:11:33 2015 -0700
5039
5040     altos: Add the ability to configure a different USB vendor ID
5041     
5042     ChaosKey will use an OpenMoko vid/pid, so we need the ability to
5043     configure a different USB vendor ID for each product.
5044     
5045     Signed-off-by: Keith Packard <keithp@keithp.com>
5046
5047 commit fce4e6926de7cb5ef6ea64a8db134c442b86153b
5048 Author: Keith Packard <keithp@keithp.com>
5049 Date:   Tue Mar 10 09:35:02 2015 -0600
5050
5051     ao-tools/ao-list: Show devices that have no TTY
5052     
5053     chaoskey doesn't advertise itself as a modem, so the kernel doesn't
5054     allocate a tty device.
5055     
5056     Signed-off-by: Keith Packard <keithp@keithp.com>
5057
5058 commit ce99807ef942de54a3f934d321baf3c3d26442bb
5059 Author: Keith Packard <keithp@keithp.com>
5060 Date:   Tue Mar 10 09:34:01 2015 -0600
5061
5062     altos/test: Support old telemega eeprom file formats in ao_flight_test
5063     
5064     The old eeprom format used different stoarge for the accel calibration
5065     data, which doesn't matter to this code, but the change in the format
5066     value does.
5067     
5068     Signed-off-by: Keith Packard <keithp@keithp.com>
5069
5070 commit f92be7e22150b2de4c899e687d3bbfc1eb842f9e
5071 Author: Keith Packard <keithp@keithp.com>
5072 Date:   Tue Mar 10 09:32:20 2015 -0600
5073
5074     altos/test: Make aprs test code compile again
5075     
5076     Adding the compressed/uncompressed config option broke the APRS test harness.
5077     
5078     Signed-off-by: Keith Packard <keithp@keithp.com>
5079
5080 commit 46f2a759dc21ebf3a7bf7e0566903fc1e7364719
5081 Author: Keith Packard <keithp@keithp.com>
5082 Date:   Tue Mar 10 09:30:53 2015 -0600
5083
5084     ao-tools/ao-mega: Clean up formatting of pyro status messages
5085     
5086     There was an extra newline and missing space.
5087     
5088     Signed-off-by: Keith Packard <keithp@keithp.com>
5089
5090 commit 2c4ebe9b4b392531cd1a5bbafc4ddc38a9391af5
5091 Author: Keith Packard <keithp@keithp.com>
5092 Date:   Tue Mar 10 09:29:52 2015 -0600
5093
5094     altosui: Add map to MonitorIdle display
5095     
5096     Nice to be able to verify that maps are working by using this mode,
5097     instead of needing to use flight monitoring.
5098     
5099     Signed-off-by: Keith Packard <keithp@keithp.com>
5100
5101 commit dec8de9c642fea1df924a667a4779a6c6c8c3453
5102 Author: Keith Packard <keithp@keithp.com>
5103 Date:   Sat Mar 7 16:53:58 2015 -0800
5104
5105     altos/stmf0: Need ao_exti.h for pin configuration
5106     
5107     Flash loader uses pin configuration to set up GPIOs for boot selection
5108     
5109     Signed-off-by: Keith Packard <keithp@keithp.com>
5110
5111 commit 4e53a5da5a8921829a3bb290e7c051950a66ab75
5112 Author: Keith Packard <keithp@keithp.com>
5113 Date:   Sat Mar 7 16:40:30 2015 -0800
5114
5115     altos: Add makefile for chaoskey flash loader
5116     
5117     Signed-off-by: Keith Packard <keithp@keithp.com>
5118
5119 commit 601f33f5e2f833fed9ab10b24a9df91905d7f766
5120 Author: Keith Packard <keithp@keithp.com>
5121 Date:   Sat Mar 7 12:38:08 2015 -0800
5122
5123     altos: Build chaoskey by default
5124     
5125     Signed-off-by: Keith Packard <keithp@keithp.com>
5126
5127 commit f3406f38d71d0c9b55c9a3ae2356a778328509a9
5128 Author: Keith Packard <keithp@keithp.com>
5129 Date:   Sat Mar 7 12:36:57 2015 -0800
5130
5131     altos: Add .gitignore for chaoskey
5132     
5133     Signed-off-by: Keith Packard <keithp@keithp.com>
5134
5135 commit 4862bec43b29264c361950700f935604f41b840b
5136 Author: Keith Packard <keithp@keithp.com>
5137 Date:   Sat Mar 7 12:33:36 2015 -0800
5138
5139     doc: Update telemetry docs to include new packet formats
5140     
5141     Add TeleMega TeleMetrum v2 and companion data packet formats.
5142     
5143     List which radio parts each product uses.
5144     
5145     Document modulation parameters for new data rates.
5146     
5147     Signed-off-by: Keith Packard <keithp@keithp.com>
5148
5149 commit cdd7ad469728fde178c69b9c99d70d6e0ab3f12d
5150 Author: Keith Packard <keithp@keithp.com>
5151 Date:   Sat Mar 7 10:18:57 2015 -0800
5152
5153     altosdroid: Deal with bluetooth connection failures better
5154     
5155     Remember when we've closed the bluetooth connection so that we stop
5156     operations, including reporting connection status messages or even
5157     starting a connection attempt.
5158     
5159     Pass the AltosBluetooth object back in connection status messages so
5160     that TelemetryService can tell when messages from closed objects get
5161     delivered. There's a queue between the two, so the above fix catches
5162     most of these instances, but not all of them.
5163     
5164     Stick a delay during reconnect -- if the TeleBT device is getting
5165     power-cycled, it will need a few seconds to reconfigure the device at
5166     startup, if AltosDroid manages to connect during that time, the
5167     configuration commands will be ignored.
5168     
5169     Unlock the AltosBluetooth device while we connect so that cancel
5170     calls will actually work.
5171     
5172     Signed-off-by: Keith Packard <keithp@keithp.com>
5173
5174 commit d446c90dab0aca7e501a0228f24c210758d84a1d
5175 Author: Keith Packard <keithp@keithp.com>
5176 Date:   Mon Mar 2 22:23:22 2015 -0800
5177
5178     altosui/telegps: Change from variable-units snuck into master
5179     
5180     show_units_name(double) only exists on the variable-units branch...
5181     
5182     Signed-off-by: Keith Packard <keithp@keithp.com>
5183
5184 commit bef7c89dac68956a94ae386fa6b87165ab6cb484
5185 Author: Keith Packard <keithp@keithp.com>
5186 Date:   Mon Mar 2 21:16:06 2015 -0800
5187
5188     altos: Missing pad field in TMv2 data packet
5189     
5190     The normal ARM padding would have filled this in correctly, but it's
5191     best to be explicit about the structure.
5192     
5193     This also adds a test to make sure the resulting telemetry declaration
5194     is exactly 32 bytes,
5195     
5196     Signed-off-by: Keith Packard <keithp@keithp.com>
5197
5198 commit 3b133656df4698ceb7af5902711edf9253a29227
5199 Author: Keith Packard <keithp@keithp.com>
5200 Date:   Mon Mar 2 21:11:33 2015 -0800
5201
5202     altos: Wait for BT disconnect before sending command
5203     
5204     If AltosDroid manages to connect to the BT module before we've
5205     configured it, we won't be able to talk to it as we can't force the
5206     module to ignore connection attempts. Wait for AltosDroid to give up
5207     and let us configure the device. Eventually, we'll manage, if
5208     AltosDroid's delay interval is longer than the time it takes to
5209     configure the unit.
5210     
5211     Signed-off-by: Keith Packard <keithp@keithp.com>
5212
5213 commit 112f528755b6c8a2f6eef3bfec21fac981ffb44f
5214 Author: Keith Packard <keithp@keithp.com>
5215 Date:   Mon Mar 2 21:08:44 2015 -0800
5216
5217     ao-tools: Add ao-flash-stm32f0x
5218     
5219     This new script uses openocd to flash stm32f0x parts
5220     
5221     Signed-off-by: Keith Packard <keithp@keithp.com>
5222
5223 commit ff3c27e3b842107680dc48084f71eb8c63f1bcab
5224 Author: Keith Packard <keithp@keithp.com>
5225 Date:   Mon Mar 2 21:06:51 2015 -0800
5226
5227     altoslib: Round frequency when configuring radio
5228     
5229     This makes sure we set the right frequency, instead of being off by
5230     1kHz on a regular basis...
5231     
5232     Signed-off-by: Keith Packard <keithp@keithp.com>
5233
5234 commit e637367e8b940e1642a07b3b7c99147561de9cf1
5235 Author: Keith Packard <keithp@keithp.com>
5236 Date:   Mon Mar 2 21:06:02 2015 -0800
5237
5238     altosui/telegps: Add config option for APRS format
5239     
5240     Allow configuration of APRS compressed/uncompressed
5241     
5242     Signed-off-by: Keith Packard <keithp@keithp.com>
5243
5244 commit 2614d20b324ab215ef22f178e3635d48e757fa9b
5245 Author: Keith Packard <keithp@keithp.com>
5246 Date:   Mon Mar 2 21:02:31 2015 -0800
5247
5248     altos: Make APRS format (compressed/uncompressed) configurable
5249     
5250     This provides a choice of compressed vs uncompressed when sending APRS
5251     packets to deal with receivers that still do not have support for the
5252     more useful compressed format.
5253     
5254     Signed-off-by: Keith Packard <keithp@keithp.com>
5255
5256 commit 0724cc334a3bd8d81bbd4641d90a7e4040330efe
5257 Author: Keith Packard <keithp@keithp.com>
5258 Date:   Sat Feb 28 16:06:23 2015 -0800
5259
5260     altos/usbtrng: Split out random number generating code to separate driver
5261     
5262     Signed-off-by: Keith Packard <keithp@keithp.com>
5263
5264 commit bd18bc5a42fcecfb710477371b9f62610a1ea640
5265 Author: Keith Packard <keithp@keithp.com>
5266 Date:   Sat Feb 28 16:04:00 2015 -0800
5267
5268     altos: Add chaoskey flash loader
5269     
5270     Signed-off-by: Keith Packard <keithp@keithp.com>
5271
5272 commit a4c436a1c39da971b72d4302623f27af9d56cc38
5273 Author: Keith Packard <keithp@keithp.com>
5274 Date:   Sat Feb 28 16:02:17 2015 -0800
5275
5276     altos: Create chaoskey product
5277     
5278     Signed-off-by: Keith Packard <keithp@keithp.com>
5279
5280 commit 476c5b87ea0901f70fe98b581ecca9afaf957607
5281 Author: Keith Packard <keithp@keithp.com>
5282 Date:   Sat Feb 28 16:00:45 2015 -0800
5283
5284     altos/stmf0: Allocate USB buffers at startup
5285     
5286     This lets the extra allocations used from ao_usb_alloc_buffers be
5287     allocated before the first USB connection happens.
5288     
5289     Signed-off-by: Keith Packard <keithp@keithp.com>
5290
5291 commit e4b415cc8f839ceae48916b5e9d78f78589186cf
5292 Author: Keith Packard <keithp@keithp.com>
5293 Date:   Sat Feb 28 16:00:17 2015 -0800
5294
5295     altos/stmf0: Typo in ao_crc_stm.c
5296     
5297     Extra semicolon
5298     
5299     Signed-off-by: Keith Packard <keithp@keithp.com>
5300
5301 commit 27aef593fb4c037fdb65c9fb397829b42d72d0f2
5302 Author: Keith Packard <keithp@keithp.com>
5303 Date:   Sat Feb 28 15:59:30 2015 -0800
5304
5305     altos/stmf0: Fix fast ADC interface
5306     
5307     This was configuring the hardware wrong, and wasn't keeping the output
5308     ring full.
5309     
5310     Signed-off-by: Keith Packard <keithp@keithp.com>
5311
5312 commit ec2d758844202108b446e6b12ec1da8812ceb265
5313 Author: Keith Packard <keithp@keithp.com>
5314 Date:   Sat Feb 28 15:07:16 2015 -0800
5315
5316     altos: Allow software to offer other USB interface classes than CDC
5317     
5318     This lets some boards offer non-CDC class USB interfaces so that the
5319     modem driver doesn't pick them up.
5320     
5321     Signed-off-by: Keith Packard <keithp@keithp.com>
5322
5323 commit 4af4e36cda96d053458eeb040e35886890917385
5324 Merge: 91b1a80 106b16b
5325 Author: Bdale Garbee <bdale@gag.com>
5326 Date:   Sun Feb 22 14:55:40 2015 -0700
5327
5328     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
5329
5330 commit 91b1a80650a7dcd7c5bf819618a8cea0fceb37d9
5331 Author: Bdale Garbee <bdale@gag.com>
5332 Date:   Sun Feb 8 09:29:01 2015 -0700
5333
5334     swap names so v3.0 is the default TeleDongle version to turn on
5335
5336 commit 106b16b4d5d024543d7ad8c4b4762151e253f3c4
5337 Author: Keith Packard <keithp@keithp.com>
5338 Date:   Mon Feb 16 22:22:37 2015 -0800
5339
5340     altosdroid: Ignore automatic tab changing while activity is saved
5341     
5342     When the activity state is saved (after onSaveInstanceState()), we
5343     can't update the UI until the activity is restarted or restored; that
5344     means any UI changes we make, like switching tabs, must deal with this
5345     by allowing those changes to be ignored, using commitAllowingStateLoss
5346     instead of commit.
5347     
5348     Signed-off-by: Keith Packard <keithp@keithp.com>
5349
5350 commit e6630ac41ca0d8563cf9a0df5d4acba8192e9624
5351 Author: Keith Packard <keithp@keithp.com>
5352 Date:   Mon Feb 16 21:35:34 2015 -0800
5353
5354     altosdroid: Missing file: DeviceAddress.java
5355     
5356     Signed-off-by: Keith Packard <keithp@keithp.com>
5357
5358 commit 8f2d82461f3cf5da157b23ea45a2fa60d56b196b
5359 Author: Keith Packard <keithp@keithp.com>
5360 Date:   Mon Feb 16 21:32:54 2015 -0800
5361
5362     altosdroid: Only speak when GUI is running
5363     
5364     Create voice in onStart, stop it in onStop. This way, if some other
5365     application is in use, the voice won't be annoying you.
5366     
5367     Signed-off-by: Keith Packard <keithp@keithp.com>
5368
5369 commit 877609a60a9f2c61c1efad8285b2a3c22f59be28
5370 Author: Keith Packard <keithp@keithp.com>
5371 Date:   Mon Feb 16 21:19:09 2015 -0800
5372
5373     altosdroid: Explicitly disconnect BT on termination or 'disconnect'
5374     
5375     This adds an explicit message to the telemetry service telling it when
5376     to stop trying to talk to the bluetooth device. Until this message is
5377     received, the service will reconnect to the specified BT device.
5378     
5379     That message is sent when you 'quit' the application, or when you 'disconnect'.
5380     
5381     Signed-off-by: Keith Packard <keithp@keithp.com>
5382
5383 commit c51d39c7ea1153cd2d0dc02c47824a9f35b22fb9
5384 Author: Keith Packard <keithp@keithp.com>
5385 Date:   Mon Feb 16 20:57:11 2015 -0800
5386
5387     altosdroid: Lots of bluetooth connection changes
5388     
5389     Appears to more reliably abort in-progress connection attempts so you
5390     can switch TBT devices without having the previous device in
5391     operation.
5392     
5393     Shows which device the connection is being attempted for.
5394     
5395     Eliminate the 10-second timer and just disable the service when the GUI
5396     shuts down while no BT connection is running.
5397     
5398     Signed-off-by: Keith Packard <keithp@keithp.com>
5399
5400 commit b13a78e4f457f67605fc6dafc7f9733746a4f70c
5401 Author: Keith Packard <keithp@keithp.com>
5402 Date:   Mon Feb 16 20:49:39 2015 -0800
5403
5404     ao-bringup: Changes for telebt for keith's hacking
5405     
5406     Make the programming device auto-detect by username.
5407     Load binary from ~/altusmetrumllc
5408     
5409     Signed-off-by: Keith Packard <keithp@keithp.com>
5410
5411 commit 2ebb4dff758058ae9512cf36518416eb69b928f0
5412 Author: Keith Packard <keithp@keithp.com>
5413 Date:   Sun Feb 15 08:57:55 2015 -0800
5414
5415     altos: Remove some accidental debug printfs from ao_packet.c
5416     
5417     While fixing the cc1200 configuration, I added some debug printfs to
5418     this code. They were accidentally committed with the fix...
5419     
5420     Signed-off-by: Keith Packard <keithp@keithp.com>
5421
5422 commit 135abf0e7c5ceb5738a0b5f68fe2be4b7abdae5e
5423 Author: Keith Packard <keithp@keithp.com>
5424 Date:   Sat Feb 14 23:18:38 2015 -0800
5425
5426     altos/cc1200: Adjust bit-sync configuration
5427     
5428     The default bit timing adjustment mechanism allows for only a 0.2%
5429     deviation from the programmed bit timing. I found one TeleMini device
5430     which is beyond that tolerance as it was built with an older crystal
5431     with more error.
5432     
5433     Switch to the more expensive synchronization mechanism which allows up
5434     to 2% timing error, but requires a multi-byte preamble (which we
5435     have). This fixes packet mode nicely.
5436     
5437     Signed-off-by: Keith Packard <keithp@keithp.com>
5438
5439 commit 9c75faf1ec51eb2f9a8dc9402653490143a784d9
5440 Author: Keith Packard <keithp@keithp.com>
5441 Date:   Sat Feb 14 08:35:47 2015 -0800
5442
5443     altos: embed ao_alarm and ao_clear_alarm in ao_sleep_for
5444     
5445     sdcc won't embed these itself, and thus consumes too much flash for
5446     telemetrum-v1.0
5447     
5448     Signed-off-by: Keith Packard <keithp@keithp.com>
5449
5450 commit cc64e0e9d35e01b349680159a5bbd68d059134cd
5451 Author: Keith Packard <keithp@keithp.com>
5452 Date:   Sat Feb 14 01:16:42 2015 -0800
5453
5454     ao-bringup/turnon_telemini: Detect which programmer to use by $USER
5455     
5456     Bdale uses TD 100, keithp uses TD 186.
5457     
5458     Signed-off-by: Keith Packard <keithp@keithp.com>
5459
5460 commit c4f9d96bdea192486f0e3f2d80b846c39a05c0ab
5461 Author: Keith Packard <keithp@keithp.com>
5462 Date:   Sat Feb 14 01:13:21 2015 -0800
5463
5464     altosuilib: Detect pair programming by product name, not USB id
5465     
5466     With TeleDongle, TeleBT and TeleMetrum coming in both pair- and self-
5467     programmable versions, we can't use the USB id to tell them
5468     apart. Instead, fetch the device name and use that instead.
5469     
5470     Signed-off-by: Keith Packard <keithp@keithp.com>
5471
5472 commit 0e929ee2d0a3d1b1bacd36c2c3723ab860eb40b6
5473 Author: Keith Packard <keithp@keithp.com>
5474 Date:   Sat Feb 14 01:11:30 2015 -0800
5475
5476     altosui: Run all igniter status requests from non-GUI thread
5477     
5478     Anything run from the UI thread blocks the UI entirely; the Fire
5479     Igniters startup code to collect the number of pyro channels when
5480     building the UI was doing that from the UI thread. Switch that around
5481     so that the UI doesn't get built until that reply comes back, allowing
5482     the user to see the 'connecting' dialog, and cancel it if required.
5483     
5484     Signed-off-by: Keith Packard <keithp@keithp.com>
5485
5486 commit f4c812bef76a2cd95f675cb27ea89059561ceec7
5487 Author: Keith Packard <keithp@keithp.com>
5488 Date:   Fri Feb 13 23:51:10 2015 -0800
5489
5490     altos: Replace ao_alarm/ao_clear_alarm with ao_sleep_for
5491     
5492     Having arbitrary alarms firing in the middle of complicated device
5493     logic makes no sense at all. Therefore only correct use of ao_alarm
5494     and ao_clear_alarm was around a specific ao_sleep call, with correct
5495     recovery in case the alarm fires.
5496     
5497     This patch replaces all uses of ao_alarm/ao_sleep/ao_clear_alarm with
5498     ao_sleep_for, a new function which takes the alarm timeout directly.
5499     
5500     A few cases which weren't simply calling ao_sleep have been reworked
5501     to pass the timeout value down to the place where sleep *is* being
5502     called, and having that code deal with the return correctly.
5503     
5504     Signed-off-by: Keith Packard <keithp@keithp.com>
5505
5506 commit 1445725b983134d5a967dee88ef997bf15d4a422
5507 Author: Tom Marble <tmarble@info9.net>
5508 Date:   Wed Feb 11 08:21:27 2015 -0600
5509
5510     Added continuous output option to ao-usbtrng
5511
5512 commit 65837616a6d073da8e3e2bf9da524a48cffb77c2
5513 Author: Keith Packard <keithp@keithp.com>
5514 Date:   Mon Feb 9 07:28:18 2015 -0800
5515
5516     altos/stmf0: Add ao_crc_stm.c
5517     
5518     Tom discovered that this was missing
5519     
5520     Signed-off-by: Keith Packard <keithp@keithp.com>
5521
5522 commit fa813bcb6afc851cf4029b56c19ba46a3ae578f5
5523 Author: Tom Marble <tmarble@info9.net>
5524 Date:   Mon Feb 9 08:35:24 2015 -0600
5525
5526     Minor typo in man page
5527
5528 commit e2cefd8593d269ce603aaf33f4a53a5c2dcb3350
5529 Author: Bdale Garbee <bdale@gag.com>
5530 Date:   Sat Feb 7 22:36:22 2015 -0700
5531
5532     update ChangeLog for release
5533
5534 commit 26f61380ce6b4df80fa0b5a8a242cef79d5ae339
5535 Author: Bdale Garbee <bdale@gag.com>
5536 Date:   Sat Feb 7 22:23:38 2015 -0700
5537
5538     document addition of TeleDongle to the set of ARM targets to save binaries for
5539
5540 commit 4231d68bae69d9a7d1f52205002db452cd5f986d
5541 Author: Keith Packard <keithp@keithp.com>
5542 Date:   Sat Feb 7 20:42:15 2015 -0800
5543
5544     Bump java library versions
5545     
5546     Lots of minor API/ABI changes; make sure people can install both 1.5
5547     and 1.6 at the same time.
5548     
5549     Signed-off-by: Keith Packard <keithp@keithp.com>
5550
5551 commit c72d83ccd207b5300a90f2e84de6c5c96642478c
5552 Author: Keith Packard <keithp@keithp.com>
5553 Date:   Sat Feb 7 20:36:10 2015 -0800
5554
5555     altosuilib: Don't offer to graph some GPS details that TM doesn't log
5556     
5557     When using a TM eeprom file, various minor GPS details are logged
5558     (course, ground speed, climb rate, etc). Make sure these aren't
5559     offered up for graphing.
5560     
5561     Signed-off-by: Keith Packard <keithp@keithp.com>
5562
5563 commit 426bacbbd6e0573b143e7c48d71db977e53181fc
5564 Author: Keith Packard <keithp@keithp.com>
5565 Date:   Sat Feb 7 20:22:19 2015 -0800
5566
5567     altosuilib: Get the Eeprom download progress bar working again
5568     
5569     The eeprom download code wasn't computing the start of each state
5570     transition correctly, so the progress bar was snapping to the end of
5571     the chunk for each state.
5572     
5573     Invalid state values would snap the bar to the right side.
5574     
5575     Landed state wasn't ever seen, so the bar would not ever fill.
5576     
5577     Signed-off-by: Keith Packard <keithp@keithp.com>
5578
5579 commit aea188e4227993c508c7045d02f2bc87abd4e428
5580 Author: Keith Packard <keithp@keithp.com>
5581 Date:   Sat Feb 7 18:10:34 2015 -0800
5582
5583     doc: update 1.6 release notes with recent bug fixes
5584     
5585     Signed-off-by: Keith Packard <keithp@keithp.com>
5586
5587 commit 0dd733efdbb66535889aafecbba45f49266ed886
5588 Author: Keith Packard <keithp@keithp.com>
5589 Date:   Sat Feb 7 17:49:39 2015 -0800
5590
5591     altosuilib: Set the icon and title of the telemetry scanning dialog
5592     
5593     Just need to call 'super' to get the window configured correctly.
5594     
5595     Signed-off-by: Keith Packard <keithp@keithp.com>
5596
5597 commit 9d5a6914982a29d22103e0202735c9e01ee9e831
5598 Author: Keith Packard <keithp@keithp.com>
5599 Date:   Sat Feb 7 17:35:15 2015 -0800
5600
5601     altoslib: Clear saved TelemetryReader state instead of resetting in ScanUI
5602     
5603     Instead of attempting to mash the saved state from AltosScanUI, just
5604     throw it away in AltosTelemetryReader.reset. Much cleaner, and more reliable.
5605     
5606     Signed-off-by: Keith Packard <keithp@keithp.com>
5607
5608 commit cbc9ecd960d0dd27a2275b4550c30c5c88ccf5bb
5609 Author: Keith Packard <keithp@keithp.com>
5610 Date:   Sat Feb 7 17:09:40 2015 -0800
5611
5612     altosuilib: Reset telemetry state after processing it
5613     
5614     This avoids re-using stale state after switching telemetry reception
5615     parameters around, which otherwise generates spurious entries for the
5616     wrong frequencies in the scan results list.
5617     
5618     Signed-off-by: Keith Packard <keithp@keithp.com>
5619
5620 commit c0ce45100dd205f59cd84465138c74d9b31df0bb
5621 Author: Keith Packard <keithp@keithp.com>
5622 Date:   Sat Feb 7 17:08:03 2015 -0800
5623
5624     altoslib: Drop telemetry packets processed while monitoring is disabled
5625     
5626     A lag between the thread queuing telemetry packets and one pulling
5627     them out can result in stale telemetry data being returned to the
5628     reader. Fix this by dropping telemetry read while monitoring is disabled.
5629     
5630     Signed-off-by: Keith Packard <keithp@keithp.com>
5631
5632 commit 8a2be4d36a3b116d82529805430c5fb665688267
5633 Author: Keith Packard <keithp@keithp.com>
5634 Date:   Sat Feb 7 15:09:57 2015 -0800
5635
5636     altosuilib: Wait for product data while scanning
5637     
5638     Now that Altos only sends config information once every 5 seconds, we
5639     want to keep waiting for that if we're receiving packets successfully.
5640     
5641     Signed-off-by: Keith Packard <keithp@keithp.com>
5642
5643 commit e70f3dca01b15b75b0b8795eb71bd12817af4800
5644 Author: Keith Packard <keithp@keithp.com>
5645 Date:   Sat Feb 7 14:43:11 2015 -0800
5646
5647     altoslib: Mark listener as 'not running' on EOF.
5648     
5649     This adds a 'running' member to the AltosListenerState class, and when
5650     the replay reader reaches EOF, marks the listener as no longer
5651     running.
5652     
5653     AltosUI and TeleGPS now display 'done' in the 'Age' field when this
5654     occurs, to let the user know that the replay is over.
5655     
5656     Also make sure that the display timers are stopped when this happens,
5657     or when the window is closed.
5658     
5659     Signed-off-by: Keith Packard <keithp@keithp.com>
5660
5661 commit 08f07d0af123e1c307bc4c0c973da07fae8246b1
5662 Author: Keith Packard <keithp@keithp.com>
5663 Date:   Sat Feb 7 14:40:17 2015 -0800
5664
5665     altosui: Remove the dregs of AltosDroid load-old-telem code
5666     
5667     AltosDroid used to scan the old .telem file to return to the previous
5668     flight state on restart. Now it just loads the old state object
5669     instead, a vast improvement in performance.
5670     
5671     To do that, there were some changes in the altoslib code
5672     required. This patch just removes those, fixing replay bugs in TeleGPS
5673     along the way.
5674     
5675     Signed-off-by: Keith Packard <keithp@keithp.com>
5676
5677 commit 0d08c427188f7b748d9ea7651143bc843e9c2691
5678 Author: Keith Packard <keithp@keithp.com>
5679 Date:   Sat Feb 7 13:09:18 2015 -0800
5680
5681     altos: ao_packet_getchar needs to return 'int' so AO_READ_AGAIN works
5682     
5683     With ao_packet_getchar returning 'char', AO_READ_AGAIN would get
5684     converted to 0xff instead of -1 on return, making ao_packet_echo
5685     either produce a bogus character on output, breaking command
5686     responses, or wedge and never exit when the link was dropped.
5687     
5688     Signed-off-by: Keith Packard <keithp@keithp.com>
5689
5690 commit 4a5c64bef6952f25cadebc3e1f9909a5f513e015
5691 Author: Keith Packard <keithp@keithp.com>
5692 Date:   Sat Feb 7 02:37:36 2015 -0800
5693
5694     Update version 1.6 release notes with more bug fixes
5695     
5696     A few bugs found during release testing are notable enough to be
5697     included in the release notes.
5698     
5699     Signed-off-by: Keith Packard <keithp@keithp.com>
5700
5701 commit 211cb482e4da04dc032432abc236ef8b5a5e732f
5702 Author: Keith Packard <keithp@keithp.com>
5703 Date:   Sat Feb 7 01:30:21 2015 -0800
5704
5705     altos: Separate out ao_tracker force from dbg
5706     
5707     Allow enabling telemetry when USB is connected without also enabling
5708     the motion debugging output.
5709     
5710     Signed-off-by: Keith Packard <keithp@keithp.com>
5711
5712 commit f9f235bce84df3a6c0261e9d256aac544f87f70f
5713 Author: Keith Packard <keithp@keithp.com>
5714 Date:   Sat Feb 7 01:05:57 2015 -0800
5715
5716     altos/lpc: Give up on interrupt-driven SPI driver
5717     
5718     There are just too many limitations in when interrupts are delivered
5719     to make them useful. Instead, just drive the SPI directly with the
5720     CPU. At higher spi speeds (6Mhz or more), it's probably faster to do
5721     it this way anyways.
5722     
5723     Signed-off-by: Keith Packard <keithp@keithp.com>
5724
5725 commit 4b52f67abd0f9ed6d8208556007d75e7ee735cf0
5726 Author: Keith Packard <keithp@keithp.com>
5727 Date:   Sat Feb 7 01:05:03 2015 -0800
5728
5729     altos/drivers: Increase SPI speed of CC115L to 6MHz
5730     
5731     The datasheet says that the maximum for back-to-back data is 6.5MHz.
5732     
5733     Signed-off-by: Keith Packard <keithp@keithp.com>
5734
5735 commit ba22e2dbf87b139f0349f4dd8a7e6046514f5bad
5736 Author: Keith Packard <keithp@keithp.com>
5737 Date:   Fri Feb 6 23:50:49 2015 -0800
5738
5739     altoslib: Initialize GPS data to MISSING for Monitor Idle mode
5740     
5741     Make sure any un-set values are flagged correctly for the Monitor Idle
5742     UI by using the init() method.
5743     
5744     Signed-off-by: Keith Packard <keithp@keithp.com>
5745
5746 commit 31fd32cd75f4f22458f0dc82823934672e16b988
5747 Author: Keith Packard <keithp@keithp.com>
5748 Date:   Fri Feb 6 21:50:47 2015 -0800
5749
5750     altoslib: Use 'stateless' for Monitor Idle
5751     
5752     This reflects the lack of flight state progression during Monitor Idle
5753     and ensures that the GPS 'ready' indicator will light after 10 solid
5754     GPS fixes.
5755     
5756     Signed-off-by: Keith Packard <keithp@keithp.com>
5757
5758 commit 449c6731b1977c7623dd006ec2db56f383f8d85a
5759 Author: Keith Packard <keithp@keithp.com>
5760 Date:   Fri Feb 6 20:45:28 2015 -0800
5761
5762     altoslib: Support TeleGPS for Monitor Idle
5763     
5764     TeleGPS has ADC and GPS values, so build the necessary ADC parser and
5765     then hook up GPS parsing.
5766     
5767     Signed-off-by: Keith Packard <keithp@keithp.com>
5768
5769 commit 58f06706383418ebfa56d88ba51411e6185e09df
5770 Author: Keith Packard <keithp@keithp.com>
5771 Date:   Fri Feb 6 20:40:05 2015 -0800
5772
5773     altosuilib: Don't show 'Sats in view' for TeleGPS eeprom graphing
5774     
5775     We don't log the visible sats from TeleGPS, only the basic GPS
5776     info. Have AltosFlightStats track whether sat info is present, then
5777     use that to elide the Sats In View graph entry as needed.
5778     
5779     Signed-off-by: Keith Packard <keithp@keithp.com>
5780
5781 commit 35ad1833b10595564de84c88f44a214b1c134ccf
5782 Author: Keith Packard <keithp@keithp.com>
5783 Date:   Fri Feb 6 20:36:44 2015 -0800
5784
5785     altosuilib: EEProm download from TeleGPS doesn't have states
5786     
5787     As TeleGPS doesn't have flight states, the EEProm download progress
5788     bar shouldn't show 'state invalid', and it should use a different
5789     scale for each block.
5790     
5791     Fix this by having AltosConfigData know which devices have state based
5792     on their log format, then mark the progress bar state limits as
5793     'invalid/invalid' instead of 'boost/landed'. Then have the progress
5794     bar use that to set a more reasonable scale for each block.
5795     
5796     Signed-off-by: Keith Packard <keithp@keithp.com>
5797
5798 commit 66e7a8081c07d0d96a31ae34963d430f06dccdfb
5799 Author: Keith Packard <keithp@keithp.com>
5800 Date:   Fri Feb 6 04:45:17 2015 -0800
5801
5802     altoslib: Store MS5607 data in AltosConfigData for use by AltosMs5607
5803     
5804     When doing 'Monitor Idle', we fetch new config data each iteration and
5805     pass that to each of the readers, including ms5607. Instead of
5806     re-fetching the config data there, just store the ms5607 parameters
5807     when we fetch it the first time and copy it over.
5808     
5809     Signed-off-by: Keith Packard <keithp@keithp.com>
5810
5811 commit 14d524782af4f06d7f3722dcc852772ec493c2cc
5812 Author: Keith Packard <keithp@keithp.com>
5813 Date:   Fri Feb 6 03:36:10 2015 -0800
5814
5815     Package TeleDongle-v3.0 firmware with TeleGPS and AltosUI apps
5816     
5817     Signed-off-by: Keith Packard <keithp@keithp.com>
5818
5819 commit df47839824dd4e708c22fbf8f4a3054b9c45b9c3
5820 Author: Keith Packard <keithp@keithp.com>
5821 Date:   Fri Feb 6 03:34:30 2015 -0800
5822
5823     altosuilib: New teledongle and telebt devices are not pair-programmed
5824     
5825     Only list telebt-v1 and teledongle-v0 as pair-programmed devices so
5826     that newer versions go through the self-programming process
5827     
5828     Signed-off-by: Keith Packard <keithp@keithp.com>
5829
5830 commit 21ff52befb27decc4b23458315620c47d7a07b21
5831 Author: Keith Packard <keithp@keithp.com>
5832 Date:   Fri Feb 6 03:33:28 2015 -0800
5833
5834     micropeak: Install Windows AltusMetrum driver bits
5835     
5836     Make AltOS-based µPUSB devices work with MicroPeak
5837     
5838     Signed-off-by: Keith Packard <keithp@keithp.com>
5839
5840 commit a3f26f6d0c7574b8cdaecbccd7cfe89aaeb736b0
5841 Author: Keith Packard <keithp@keithp.com>
5842 Date:   Fri Feb 6 03:32:27 2015 -0800
5843
5844     micropeak: Support both FTDI and Altus Metrum USB IDs
5845     
5846     The windows driver only returns FTDI devices when
5847     altos_ftdi_list_start is invoked, so we need to call both that and the
5848     regular altos_list_start to get all of the devices.
5849     
5850     Signed-off-by: Keith Packard <keithp@keithp.com>
5851
5852 commit cc707432c6eaedb9587bb63ac570146b356b6bfd
5853 Author: Keith Packard <keithp@keithp.com>
5854 Date:   Fri Feb 6 03:31:07 2015 -0800
5855
5856     micropeak: Fix file association registry install on Windows
5857     
5858     Need to invoke DisableX64FSRedirection before setting file association
5859     registry entries or Windows won't find our application.
5860     
5861     Signed-off-by: Keith Packard <keithp@keithp.com>
5862
5863 commit 1fc5c8625f649b43d93f23a5fa1ba16773f2d0db
5864 Author: Keith Packard <keithp@keithp.com>
5865 Date:   Fri Feb 6 03:03:58 2015 -0800
5866
5867     windows: Look for current Java version in \SOFTWARE\Wow6432Node
5868     
5869     I have no idea what this is, but I found the Java version down in
5870     there...
5871     
5872     Signed-off-by: Keith Packard <keithp@keithp.com>
5873
5874 commit 83d3d967f576a57285d40e77c4a17303edeef4f1
5875 Author: Keith Packard <keithp@keithp.com>
5876 Date:   Fri Feb 6 03:03:00 2015 -0800
5877
5878     Add 'keithp-fat' target for uploading temporary builds to keithp's machine
5879     
5880     This lets me quickly prepare a new test version for Windows/Mac in a
5881     single command.
5882     
5883     Signed-off-by: Keith Packard <keithp@keithp.com>
5884
5885 commit 7a7d60d72e2e742fbc364489721f356806966c03
5886 Author: Keith Packard <keithp@keithp.com>
5887 Date:   Fri Feb 6 01:29:56 2015 -0800
5888
5889     libaltos: Use more SetupDi API to get Windows 7 listing devices
5890     
5891     My Windows 7 box doesn't include 'SymbolicName' in the registry, but
5892     SetupDiGetDeviceInstanceId *does* return something that includes
5893     vid/pid/serial, so use that in preference.
5894     
5895     Signed-off-by: Keith Packard <keithp@keithp.com>
5896
5897 commit 98db372758470cdaf7b517d670a7ce9186c787bc
5898 Author: Keith Packard <keithp@keithp.com>
5899 Date:   Thu Feb 5 22:25:35 2015 -0800
5900
5901     Update docs for 1.6
5902     
5903     Signed-off-by: Keith Packard <keithp@keithp.com>
5904
5905 commit 9fac8b639d2142c90eb95771cda1f6559e987db2
5906 Author: Keith Packard <keithp@keithp.com>
5907 Date:   Fri Jan 16 22:09:26 2015 +1300
5908
5909     altos/lpc: Double buffer USB data transfers
5910     
5911     This allocates twice the space in the USB memory so that transactions
5912     can be double buffered without using separate CPU memory.
5913     
5914     Signed-off-by: Keith Packard <keithp@keithp.com>
5915     
5916     Conflicts:
5917         src/lpc/ao_usb_lpc.c
5918
5919 commit 0671b3c8c24c9f33be77a10315c4669f33c516d7
5920 Author: Keith Packard <keithp@keithp.com>
5921 Date:   Thu Feb 5 16:08:44 2015 -0800
5922
5923     altos/lpc: Clean up USB endpoint access functions
5924     
5925     The USB device endpoints can have two pointers in them, but we use
5926     only the first. Fix the access functions to take an index as to which
5927     we want so that we can disable the other address registers with them
5928     instead of requiring open-coded access.
5929     
5930     Signed-off-by: Keith Packard <keithp@keithp.com>
5931
5932 commit a01ce949611b0c18df54c3f3877a43d27699c258
5933 Author: Keith Packard <keithp@keithp.com>
5934 Date:   Thu Feb 5 15:34:05 2015 -0800
5935
5936     altos/easymini-v1.0: Shrink stack to deal with USB changes
5937     
5938     Reverting the USB double buffering means using more RAM, need to
5939     shrink the EasyMini stack to accomodate that.
5940     
5941     Signed-off-by: Keith Packard <keithp@keithp.com>
5942
5943 commit 2bde76fe852d7908a968168580be4cd4dc0333d6
5944 Author: Keith Packard <keithp@keithp.com>
5945 Date:   Thu Feb 5 15:01:03 2015 -0800
5946
5947     altos/teledongle-v3.0: Shrink stacks to 320 bytes to fit in ram
5948     
5949     The old USB code had static in/out buffers in ram
5950     
5951     Signed-off-by: Keith Packard <keithp@keithp.com>
5952
5953 commit 5bf39f674b3d5ee98b55f42562a5ba1a9328ff07
5954 Author: Keith Packard <keithp@keithp.com>
5955 Date:   Thu Feb 5 14:56:13 2015 -0800
5956
5957     Revert LPC usb performance improvements
5958     
5959     There's something screwy going on, sticking garbage in the input
5960     buffer at boot time
5961     
5962     Signed-off-by: Keith Packard <keithp@keithp.com>
5963
5964 commit ef69872c824668146a3876f1f3d0d2e51d3e4c8d
5965 Author: Keith Packard <keithp@keithp.com>
5966 Date:   Thu Feb 5 14:54:27 2015 -0800
5967
5968     Revert "altos/lpc: Fix double-buffered USB changes"
5969     
5970     This reverts commit 41a0604ad1ea1a03e2db7d41731dbadf466b45db.
5971
5972 commit aeca3b46bc1726a06952cc2ff86f50c6d80ed1e1
5973 Author: Keith Packard <keithp@keithp.com>
5974 Date:   Wed Feb 4 22:55:24 2015 -0800
5975
5976     ao-bringup: Add turnon_teledonglev3
5977     
5978     TeleDongle v3 uses the LPC11U14 processor which has no on-chip eeprom,
5979     so we must reflash the device to set the default radio calibration value.
5980     
5981     Signed-off-by: Keith Packard <keithp@keithp.com>
5982
5983 commit bc41ab47b928b837724f8bc6b84d0b5b47c25df3
5984 Author: Keith Packard <keithp@keithp.com>
5985 Date:   Wed Feb 4 20:33:04 2015 -0800
5986
5987     altos: Rename teledongle-v1.9 as teledongle-v3.0
5988     
5989     No hardware changes from the 1.9 prototypes to the 3.0 final version.
5990     
5991     Signed-off-by: Keith Packard <keithp@keithp.com>
5992
5993 commit dbafa16cfa897b2a5c6cf455cf8675e83eb0d7d6
5994 Author: Keith Packard <keithp@keithp.com>
5995 Date:   Wed Feb 4 20:30:15 2015 -0800
5996
5997     altos/telebt-v3.0: Set initial radio cal to a sensible value
5998     
5999     CC1200 uses a different xtal than CC1120, so the default calibration
6000     needs to change. This value hit 434.550 on SN 2407, so it seems like a
6001     reasonable place to start.
6002     
6003     Signed-off-by: Keith Packard <keithp@keithp.com>
6004
6005 commit be443d8d50ad8f59a74bf2f4e810a7359ff72132
6006 Author: Keith Packard <keithp@keithp.com>
6007 Date:   Sun Feb 1 16:57:14 2015 +0100
6008
6009     altos/telebt-v3.0: Add monitor bits
6010     
6011     Will be useful to actually be able to receive telemetry
6012     
6013     Signed-off-by: Keith Packard <keithp@keithp.com>
6014
6015 commit 6eb145d48cfcabf757093433bd2314a80e490a17
6016 Author: Keith Packard <keithp@keithp.com>
6017 Date:   Sun Feb 1 16:46:40 2015 +0100
6018
6019     altos/usbtrng-v2.0: Select PA11/PA12 mapping config value
6020     
6021     Signed-off-by: Keith Packard <keithp@keithp.com>
6022
6023 commit 8f9e192e9d1c6fab9843939ff9117f6bb3725943
6024 Author: Keith Packard <keithp@keithp.com>
6025 Date:   Sun Feb 1 16:44:52 2015 +0100
6026
6027     altos/stmf0: Support PA11/PA12 remapping
6028     
6029     Small pin-count versions of the STMF0 can remap PA11/PA12 on the same
6030     pins as PA9/PA10. These are used by USB, so have the USB driver deal
6031     with remapping them.
6032     
6033     Signed-off-by: Keith Packard <keithp@keithp.com>
6034
6035 commit 466d3e977ca279f97944141fcc12c04f4f58212e
6036 Author: Keith Packard <keithp@keithp.com>
6037 Date:   Sun Feb 1 16:44:07 2015 +0100
6038
6039     altos/telebt-v3.0: Turn red LED off after initialization
6040     
6041     This lets the user know the device successfully initialized.
6042     
6043     Signed-off-by: Keith Packard <keithp@keithp.com>
6044
6045 commit 845ae016d700c37948e053ead5f7e2778356fda3
6046 Author: Keith Packard <keithp@keithp.com>
6047 Date:   Sun Feb 1 16:43:06 2015 +0100
6048
6049     altos/telebt-v3.0: Fix stdio setup for BTM
6050     
6051     Make sure the BTM module is allowed to be included in stdio, but delay
6052     adding that until the BT link is running.
6053     
6054     Signed-off-by: Keith Packard <keithp@keithp.com>
6055
6056 commit a138e05ae6241a6743ca9f64528124f5f6c8e0ee
6057 Author: Keith Packard <keithp@keithp.com>
6058 Date:   Sun Feb 1 16:42:01 2015 +0100
6059
6060     altos: Always include a check for stdio overflow
6061     
6062     For some reason, the check for running out of space to record stdio
6063     devices was disabled when only one device was expected.
6064     
6065     Signed-off-by: Keith Packard <keithp@keithp.com>
6066
6067 commit 870428a909025988a8cd834755ea166e2d1e34ca
6068 Author: Keith Packard <keithp@keithp.com>
6069 Date:   Sun Feb 1 16:39:17 2015 +0100
6070
6071     altos/btm: Add fancier debug. Pull serial reset port low.
6072     
6073     Adds an interactive debugging mode to help diagnose BTM issues.
6074     
6075     Discovered that the serial reset pin on the BTM needs to be pulled low
6076     for the device to work correctly.
6077     
6078     Leave the bt link interrupt disabled until things are initialized.
6079     
6080     Signed-off-by: Keith Packard <keithp@keithp.com>
6081
6082 commit 44a503a8cf3778cad5469c592e8ccbae58e44b97
6083 Author: Keith Packard <keithp@keithp.com>
6084 Date:   Sun Feb 1 16:36:51 2015 +0100
6085
6086     altos/stm: Add ability to delay STDIO usage for serial ports
6087     
6088     Bluetooth needs to delay adding the serial port to stdio until the
6089     link is up and running. The cc1111 serial driver had
6090     DELAY_SERIAL_*_STDIN bits which have been added to the STM serial driver.
6091     
6092     Signed-off-by: Keith Packard <keithp@keithp.com>
6093
6094 commit 252211e9e54a1e6f4efe2df6382ce60c909de70c
6095 Author: Keith Packard <keithp@keithp.com>
6096 Date:   Fri Jan 30 14:04:50 2015 +0100
6097
6098     And, also add the TeleBT v3.0 flash loader Makefile
6099     
6100     Signed-off-by: Keith Packard <keithp@keithp.com>
6101
6102 commit bfa5c70a827ac8be23ca48797edc14e13461d6ac
6103 Author: Keith Packard <keithp@keithp.com>
6104 Date:   Fri Jan 30 14:03:55 2015 +0100
6105
6106     Oops, forgot the TeleBT-v3.0 Makefile
6107     
6108     git doesn't warn about files named 'Makefile' because they're supposed
6109     to be generated...
6110     
6111     Signed-off-by: Keith Packard <keithp@keithp.com>
6112
6113 commit 8ca1f234586225caea1040bc229b63491dadc1cb
6114 Author: Keith Packard <keithp@keithp.com>
6115 Date:   Tue Jan 27 20:41:15 2015 -0800
6116
6117     altos/stmf0: Re-implement fast ADC code for stmf0
6118     
6119     This creates a ring buffer for ADC data so that ADC fetching can run
6120     in parallel with other activities.
6121     
6122     Signed-off-by: Keith Packard <keithp@keithp.com>
6123
6124 commit 3749426af1e900a1b3354922fdd7e8b3bfa38084
6125 Author: Keith Packard <keithp@keithp.com>
6126 Date:   Tue Jan 27 17:18:42 2015 -0800
6127
6128     altos/usbtrng-v2.0: Use stmf042 hardware CRC unit
6129     
6130     Switch from software to hardware for CRC computation. I think this
6131     must be faster, right?
6132     
6133     Signed-off-by: Keith Packard <keithp@keithp.com>
6134
6135 commit a95d6776dea86cdc4bdc3512505ba7e75365c127
6136 Author: Keith Packard <keithp@keithp.com>
6137 Date:   Tue Jan 27 16:55:27 2015 -0800
6138
6139     altos/stmf0: Add CRC driver
6140     
6141     Sets up the stm32f0 CRC hardware, exposing inline functions to access
6142     it. DMA access is possible, but usbtrng can't use that.
6143     
6144     Signed-off-by: Keith Packard <keithp@keithp.com>
6145
6146 commit 79f3434013650fe4e3d76e5eb56a10000ee34249
6147 Author: Keith Packard <keithp@keithp.com>
6148 Date:   Tue Jan 27 09:36:19 2015 -0800
6149
6150     altos/stmf0: Remove remaining stm32l bits from stm32f0 code
6151     
6152     These were left over from the stm32f0 initial implementation work; now
6153     it's more useful to list only the bits which are valid.
6154     
6155     Signed-off-by: Keith Packard <keithp@keithp.com>
6156
6157 commit bf08397202860a73417cd1711012eb3e33f308c3
6158 Author: Keith Packard <keithp@keithp.com>
6159 Date:   Mon Jan 26 22:23:19 2015 -0800
6160
6161     ao-tools: Add ao-usbtrng to dump RNG data for testing
6162     
6163     ao-usbtrng reads a specified number of kilobytes of random data from
6164     a random number generator.
6165     
6166     Signed-off-by: Keith Packard <keithp@keithp.com>
6167
6168 commit ee91e1da606c8a8fade278a3aeae9c1cc9014b84
6169 Author: Keith Packard <keithp@keithp.com>
6170 Date:   Mon Jan 26 22:22:00 2015 -0800
6171
6172     altos/stm: Fix typo in stm32l.h
6173     
6174     This crept in while working on the stmf0 bits. oops.
6175     
6176     Signed-off-by: Keith Packard <keithp@keithp.com>
6177
6178 commit ac1a58af4d281a9bc3572dc503982a94e439a4c1
6179 Author: Keith Packard <keithp@keithp.com>
6180 Date:   Mon Jan 26 22:16:18 2015 -0800
6181
6182     altos/usbtrng-v2.0: Add random output command
6183     
6184     Read chunks of random ADC data, do some CRC16 computations to de-bias
6185     and merge 4 bytes of input data into 2 bytes of output data, then dump
6186     that out over USB.
6187     
6188     Signed-off-by: Keith Packard <keithp@keithp.com>
6189
6190 commit 729bb7a405460db8d44c9ff6ee903b28c7499a02
6191 Author: Keith Packard <keithp@keithp.com>
6192 Date:   Mon Jan 26 22:14:57 2015 -0800
6193
6194     altos/stmf0: Add ADC and DMA APIs
6195     
6196     The ADC api is what USBtrng wants; a way to repeatedly read a single
6197     ADC input as fast as possible.
6198     
6199     Signed-off-by: Keith Packard <keithp@keithp.com>
6200
6201 commit a01effc2f64c757c907e0f4937b4d3710b97bde0
6202 Author: Keith Packard <keithp@keithp.com>
6203 Date:   Mon Jan 26 22:12:40 2015 -0800
6204
6205     altos/stmf0: Add faster USB path
6206     
6207     This adds a way to allocate private USB buffers for sending data
6208     without needing to copy it again. It requires ensuring that all
6209     accesses are 16 bits aligned to 16 bit boundaries.
6210     
6211     Signed-off-by: Keith Packard <keithp@keithp.com>
6212
6213 commit e1d5bcb1968e280b8ebdf6c8b12e8a87167fd890
6214 Author: Keith Packard <keithp@keithp.com>
6215 Date:   Mon Jan 26 22:10:47 2015 -0800
6216
6217     altos/stmf0: Fix linker scripts to make ao_boot work
6218     
6219     The flash loader ended up assuming ao_boot was at the start of ram,
6220     while the application stuck it after the interrupt table (where it
6221     needs to go).
6222     
6223     Signed-off-by: Keith Packard <keithp@keithp.com>
6224
6225 commit 32c68670af9f8aa690c64d64502e559c0df0c1db
6226 Author: Keith Packard <keithp@keithp.com>
6227 Date:   Sun Jan 25 19:58:38 2015 -0800
6228
6229     ao-tools: Add --wait option to ao-usbload
6230     
6231     This waits forever for USB writes to complete, instead of timing out
6232     after five seconds. Useful when debugging the device.
6233     
6234     Signed-off-by: Keith Packard <keithp@keithp.com>
6235
6236 commit 02b07a202839d6e68b3f0db7f8965478661db140
6237 Author: Keith Packard <keithp@keithp.com>
6238 Date:   Sun Jan 25 19:37:05 2015 -0800
6239
6240     altos: Add flash-loader to usbtrng-v2.0
6241     
6242     Uses the new STM32F042 flash loading bits.
6243     
6244     Signed-off-by: Keith Packard <keithp@keithp.com>
6245
6246 commit df881bce8576f091b2d8cb53b8ce8a43aeedecde
6247 Author: Keith Packard <keithp@keithp.com>
6248 Date:   Sun Jan 25 19:35:19 2015 -0800
6249
6250     altos: Add self-flash support for STM32F042 processor
6251     
6252     Also moves the usual address for applications out of the way of the
6253     flash loader.
6254     
6255     Signed-off-by: Keith Packard <keithp@keithp.com>
6256
6257 commit 02e1058fa52ee7c867ea6c9031ebb9e21d14889c
6258 Author: Keith Packard <keithp@keithp.com>
6259 Date:   Sun Jan 25 16:43:48 2015 -0800
6260
6261     altos: USBtrng v2.0 hardware bringup
6262     
6263     Gets the USB connection running and blinks the LEDs.
6264     
6265     Signed-off-by: Keith Packard <keithp@keithp.com>
6266
6267 commit 02f03df6d089cafae99f8ce15dcbd87f6e78d749
6268 Author: Keith Packard <keithp@keithp.com>
6269 Date:   Sun Jan 25 16:42:39 2015 -0800
6270
6271     altos: Initial STMF04x support
6272     
6273     Basic clock configuration, OS support, LED and USB drivers.
6274     
6275     Signed-off-by: Keith Packard <keithp@keithp.com>
6276
6277 commit 0e7d1c89fea98eabca738f10cbfebec631be3bb7
6278 Author: Keith Packard <keithp@keithp.com>
6279 Date:   Sat Jan 24 11:18:59 2015 -0800
6280
6281     altos: Add support for TeleBT v3.0
6282     
6283     Add support to the BTM driver for non-CC1111 interrupts
6284     Add HW flow control to STM serial driver
6285     
6286     Signed-off-by: Keith Packard <keithp@keithp.com>
6287
6288 commit 41a0604ad1ea1a03e2db7d41731dbadf466b45db
6289 Author: Keith Packard <keithp@keithp.com>
6290 Date:   Thu Jan 22 21:31:45 2015 -0800
6291
6292     altos/lpc: Fix double-buffered USB changes
6293     
6294     These got merged when we were down in Auckland, but before they'd been
6295     finished. Transmitting worked fine, but receiving was mis-configuring
6296     the OUT buffer size in the hardware.
6297     
6298     Signed-off-by: Keith Packard <keithp@keithp.com>
6299
6300 commit 291eec859606b73b43072cd2debfbb92659e0d95
6301 Author: Keith Packard <keithp@keithp.com>
6302 Date:   Thu Jan 22 20:34:43 2015 -0800
6303
6304     altos: Get rid of some accidental debug code
6305     
6306     I was debugging the accelerometer calibration code and left some
6307     printfs in it, which made TM run out of flash space.
6308     
6309     Signed-off-by: Keith Packard <keithp@keithp.com>
6310
6311 commit e05e0c6b71a1df65f188e00622e9632eb27510fd
6312 Author: Keith Packard <keithp@keithp.com>
6313 Date:   Fri Jan 16 22:09:26 2015 +1300
6314
6315     Set version to 1.5.9.1
6316
6317 commit 2a053d3d157e00b6a6406f4f78ddb8e298b6c4b7
6318 Author: Keith Packard <keithp@keithp.com>
6319 Date:   Mon Dec 22 17:27:09 2014 -0800
6320
6321     altos/lpc: Switch LPC SPI driver to interrupt-driven
6322     
6323     This improves performance for SPI transfers, while allowing other
6324     tasks to get work done during longer SPI transfers.
6325     
6326     Signed-off-by: Keith Packard <keithp@keithp.com>
6327
6328 commit 213a6604ec225e843f30244e6f94d0ebb3d27e46
6329 Author: Keith Packard <keithp@keithp.com>
6330 Date:   Mon Dec 22 17:11:51 2014 -0800
6331
6332     altos: Adjust CC1200 RSSI reporting value
6333     
6334     On the test setup, we were about 13dB off, so tweak the settings to
6335     suit. This result wasn't tested; it's just a rough offset until we get
6336     a production run of TeleDongle boards back to do more systematic
6337     measurements.
6338     
6339     Signed-off-by: Keith Packard <keithp@keithp.com>
6340
6341 commit 014dcc1f179237dc247fafa4a2cff91809260681
6342 Author: Keith Packard <keithp@keithp.com>
6343 Date:   Mon Dec 22 17:10:33 2014 -0800
6344
6345     altos: Document cc115l power measured at RF setting 0x03 as -31.75dBm
6346     
6347     We built a custom TeleGPS load for radio sensitivity measurements with
6348     the lowest documented power level setting (0x03), and measured the
6349     power out at that value of -31.75dBm on the test board.
6350     
6351     Signed-off-by: Keith Packard <keithp@keithp.com>
6352
6353 commit cf09ee2a4b093c56b64260c3db3f5e07143aa888
6354 Author: Keith Packard <keithp@keithp.com>
6355 Date:   Tue Dec 9 21:44:53 2014 -0800
6356
6357     ao-bringup: Clear pending output before setting frequency.
6358     
6359     Maybe this will unwedge things
6360     
6361     Signed-off-by: Keith Packard <keithp@keithp.com>
6362
6363 commit 5b7ec0c69343db3793c0317939b5eff1f2d04752
6364 Author: Keith Packard <keithp@keithp.com>
6365 Date:   Sat Dec 6 15:08:53 2014 -0800
6366
6367     micropeak: Support µPUSB with our own USB ids
6368     
6369     This matches the new µPUSB id as well as the FTDI USB id.
6370     
6371     Signed-off-by: Keith Packard <keithp@keithp.com>
6372
6373 commit 7e52ef59082cb2afdba498233c429321c37a6ac3
6374 Author: Keith Packard <keithp@keithp.com>
6375 Date:   Sat Dec 6 15:08:29 2014 -0800
6376
6377     altoslib: Add usbtrng, usbrelay and mpusb USB ids
6378     
6379     Signed-off-by: Keith Packard <keithp@keithp.com>
6380
6381 commit 7339d2379713b5b7e4c4fe6bad89ed93f9d39e82
6382 Merge: d1f9121 b6462ca
6383 Author: Bdale Garbee <bdale@gag.com>
6384 Date:   Sat Dec 6 15:39:53 2014 -0700
6385
6386     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
6387
6388 commit d1f9121593fe30b924223e89ef4d596b5bec2b25
6389 Author: Bdale Garbee <bdale@gag.com>
6390 Date:   Sat Dec 6 15:39:35 2014 -0700
6391
6392     improve test procedures for TeleMega
6393
6394 commit b6462ca3a7e99fe390ec97f94c23d36fab8c294d
6395 Author: Keith Packard <keithp@keithp.com>
6396 Date:   Sun Nov 23 18:56:40 2014 -0800
6397
6398     altos/cc1200: With PQT wide open, we can't use PQT_REACHED for start
6399     
6400     Because we're allowing even signals only weakly correlated with the
6401     preamble through to sync detection, we can't use the PQT_REACHED
6402     symbol to tell when a packet header has been seen. Instead, just look
6403     for SYNC_FOUND.
6404     
6405     Signed-off-by: Keith Packard <keithp@keithp.com>
6406
6407 commit 0e3eeaf59688dac92eb3a27d589923126cb34e00
6408 Author: Keith Packard <keithp@keithp.com>
6409 Date:   Sun Nov 23 18:50:57 2014 -0800
6410
6411     altos/cc1200: Open up preamble detect to improve sensitivity
6412     
6413     Increase soft decision PQT value to max (15) to ensure that we detect
6414     even weak packets.
6415     
6416     Signed-off-by: Keith Packard <keithp@keithp.com>
6417
6418 commit eabeb76a2a9acb624ae364c4f0f315bfc3549d98
6419 Author: Keith Packard <keithp@keithp.com>
6420 Date:   Sun Nov 23 18:31:15 2014 -0800
6421
6422     altos/cc1200: Wait for packet to be placed in FIFO during receive
6423     
6424     This changes the receive code to use MCU_STATUS, waiting for
6425     MARC_STATUS1 to indicate that the packet is in the fifo before reading
6426     it out.
6427     
6428     It also fixes the receive timeout code to keep receiving if the
6429     preamble or sync have been seen when the timeout fires. This makes
6430     TeleLCO able to use short timeouts during scanning while still
6431     successfully receiving packets.
6432     
6433     Signed-off-by: Keith Packard <keithp@keithp.com>
6434
6435 commit 2163f6e6b341b7840f03e89d568699b8ea186435
6436 Author: Keith Packard <keithp@keithp.com>
6437 Date:   Sun Nov 16 16:39:18 2014 -0800
6438
6439     altos/teledongle-v1.8: Make this the same as teledongle v1.9
6440     
6441     Remove RSSI LED blinking, add CRC error LED
6442     
6443     Signed-off-by: Keith Packard <keithp@keithp.com>
6444
6445 commit 54f7ab842a8cba3003cd5a9deb2515151263ca2e
6446 Author: Keith Packard <keithp@keithp.com>
6447 Date:   Sun Nov 16 16:38:12 2014 -0800
6448
6449     altos: Allow TeleMega to be built without MPU6000
6450     
6451     Robert Braibish's board has a dead MPU6000; this fix lets the TeleMega
6452     firmware build without that driver so the rest of the board could be verified.
6453     
6454     Signed-off-by: Keith Packard <keithp@keithp.com>
6455
6456 commit f16ea9abfaac9eee3b0935c586e383ae046d6cf5
6457 Author: Keith Packard <keithp@keithp.com>
6458 Date:   Sun Nov 16 16:37:15 2014 -0800
6459
6460     altosui: Remove duplicate AltosUIPreferencesBackend.java
6461     
6462     There's a copy in altosuilib
6463     
6464     Signed-off-by: Keith Packard <keithp@keithp.com>
6465
6466 commit abdf3177293c57e659017b64819c13f11c126011
6467 Author: Keith Packard <keithp@keithp.com>
6468 Date:   Sun Nov 16 13:41:27 2014 -0800
6469
6470     altos/microsplash: fix .gitignore to ignore resulting binary
6471
6472 commit 97a321692c2e41a1d3f77fb541780ada945eff52
6473 Author: Keith Packard <keithp@keithp.com>
6474 Date:   Sun Nov 16 13:40:15 2014 -0800
6475
6476     Add AltosDroid release note for version 1.5
6477
6478 commit 47956ac01397c0a7fafc6b0a4840113186924b2e
6479 Author: Keith Packard <keithp@keithp.com>
6480 Date:   Sun Nov 16 13:17:55 2014 -0800
6481
6482     altosdroid: East and West were flipped in all GPS output
6483     
6484     East is positive, West is negative
6485     
6486     Signed-off-by: Keith Packard <keithp@keithp.com>
6487
6488 commit 5aae1446026a08bf8f09c56b960545eff30a8bd1
6489 Author: Keith Packard <keithp@keithp.com>
6490 Date:   Sat Nov 15 22:52:42 2014 -0800
6491
6492     altosdroid: Save AltosState and restore at startup
6493     
6494     Instead of re-parsing the old logfile, save the current state in the
6495     preferences database and restore at restart of the
6496     TelemetryService. This makes the state get restored even before the BT
6497     connection is recovered.
6498     
6499     Signed-off-by: Keith Packard <keithp@keithp.com>
6500
6501 commit 52ce23327bd81e2d40a1817442e75bd6b60ffe95
6502 Author: Keith Packard <keithp@keithp.com>
6503 Date:   Sat Nov 15 22:50:31 2014 -0800
6504
6505     altoslib: add AltosPreferences state save/restore interfaces
6506     
6507     This serializes an entire AltosState object and stores it in the
6508     preferences database for later retrieval. AltosDroid uses this to
6509     recover the old state data when restarting.
6510     
6511     Signed-off-by: Keith Packard <keithp@keithp.com>
6512
6513 commit a488da3ca72fe0778b2d79a8cac935621d1d789d
6514 Author: Keith Packard <keithp@keithp.com>
6515 Date:   Sat Nov 15 22:49:06 2014 -0800
6516
6517     altosdroid: TabMap needs to expose () constructor
6518     
6519     Otherwise we get an exception at startup time for some reason.
6520     
6521     Signed-off-by: Keith Packard <keithp@keithp.com>
6522
6523 commit deda23963586eb07a32f9a3c83a0355178e19340
6524 Author: Keith Packard <keithp@keithp.com>
6525 Date:   Sat Nov 15 22:48:15 2014 -0800
6526
6527     altoslib: Add getBytes/putBytes interface to AltosPreferencesBackend
6528     
6529     This lets us store arbitrary binary data in the preferences database
6530     
6531     Signed-off-by: Keith Packard <keithp@keithp.com>
6532
6533 commit e5dd00ef0014364fc059970cc020f209b3b16cf8
6534 Author: Keith Packard <keithp@keithp.com>
6535 Date:   Sat Nov 15 22:46:01 2014 -0800
6536
6537     altosdroid: Don't display MISSING flight number
6538     
6539     Just check and clear the entry if we end up seeing that value
6540     
6541     Signed-off-by: Keith Packard <keithp@keithp.com>
6542
6543 commit 60edcfe410e7fa848813d6c1ed8dc9808887d041
6544 Author: Keith Packard <keithp@keithp.com>
6545 Date:   Sat Nov 15 16:03:32 2014 -0800
6546
6547     altoslib: Make AltosState serializable
6548     
6549     This involved making every class it references serializable as well
6550     
6551     Signed-off-by: Keith Packard <keithp@keithp.com>
6552
6553 commit 4d4fee0b0091a1b6257a06f62b1078778cdb417f
6554 Author: Keith Packard <keithp@keithp.com>
6555 Date:   Mon Nov 10 14:41:17 2014 -0800
6556
6557     altoslib: Missing headers for mag sensor in CSV output
6558     
6559     Kelsey Black <nmonic@gmail.com> reported that the TeleMega CSV output
6560     was missing the header labels for the mag sensor data.
6561     
6562     Signed-off-by: Keith Packard <keithp@keithp.com>
6563
6564 commit 437eba2ff27b2b7dfd0f363819b9a43ab8b28ead
6565 Author: Keith Packard <keithp@keithp.com>
6566 Date:   Thu Nov 6 20:04:47 2014 -0800
6567
6568     altos: Reset interrupt flags before TX in CC1200 driver
6569     
6570     Failing to reset the flags set during interrupt leads to
6571     short-circuiting transmission and not a lot of packets going out.
6572     
6573     Signed-off-by: Keith Packard <keithp@keithp.com>
6574
6575 commit 7f742824673e5e6034defdb09b66d4d56eb8d4fe
6576 Author: Keith Packard <keithp@keithp.com>
6577 Date:   Thu Nov 6 16:05:49 2014 -0800
6578
6579     altos/teledongle-v1.9: Switch to NXP processor as on prototype boards
6580     
6581     Signed-off-by: Keith Packard <keithp@keithp.com>
6582
6583 commit 6a082d9b5ed169b9d4153885f3535987e5ae5d84
6584 Author: Keith Packard <keithp@keithp.com>
6585 Date:   Thu Nov 6 16:04:56 2014 -0800
6586
6587     altos/lpc: Disable JTAG when using pins for GPIO
6588     
6589     JTAG is enabled by default, making those pins not support GPIO unless
6590     specifically configured.
6591     
6592     Signed-off-by: Keith Packard <keithp@keithp.com>
6593
6594 commit 58db263cc835be0abb972654c2d7369718c88b37
6595 Author: Keith Packard <keithp@keithp.com>
6596 Date:   Thu Nov 6 16:04:14 2014 -0800
6597
6598     altos/lpc: Declare SPI send parameters as const
6599     
6600     This matches STM
6601     
6602     Signed-off-by: Keith Packard <keithp@keithp.com>
6603
6604 commit d3dd45b060c996153ff8195bd371e9e1f3b15efb
6605 Author: Keith Packard <keithp@keithp.com>
6606 Date:   Thu Nov 6 16:02:47 2014 -0800
6607
6608     altos: Use other TeleDongle LED for CRC-invalid packet reporting
6609     
6610     Instead of blinking out some fake-o RSSI indication, just blink the
6611     red LED when a packet with a bad CRC is received.
6612     
6613     Signed-off-by: Keith Packard <keithp@keithp.com>
6614
6615 commit 2313cdacefb2139bc68cd98e782c54d706af0704
6616 Author: Keith Packard <keithp@keithp.com>
6617 Date:   Thu Nov 6 16:02:07 2014 -0800
6618
6619     altosuilib: GPS errors are recorded in floating point, not integers
6620     
6621     Fix the format used to present them in the info table.
6622     
6623     Signed-off-by: Keith Packard <keithp@keithp.com>
6624
6625 commit 2f0ff9675017655846a8abc617b4dc9a3666d0b9
6626 Author: Keith Packard <keithp@keithp.com>
6627 Date:   Thu Nov 6 16:01:24 2014 -0800
6628
6629     altos: Use AO_SPO_SPEED_FAST for CC1200
6630     
6631     This asks for the fastest available SPI speed, instead of fixing it to
6632     8MHz, which may not be supported on every architecture.
6633     
6634     Signed-off-by: Keith Packard <keithp@keithp.com>
6635
6636 commit 80a0397dde2f787fb20fd2520b274b826c68ed5a
6637 Author: Keith Packard <keithp@keithp.com>
6638 Date:   Thu Nov 6 16:00:06 2014 -0800
6639
6640     altos: Stop attempting to ramp power on CC115L
6641     
6642     The PA register on the 115L isn't in any way monotonic, making the old
6643     code broken. Just rempve it instead of fixing it; we don't ramp
6644     anywhere else...
6645     
6646     Signed-off-by: Keith Packard <keithp@keithp.com>
6647
6648 commit f2e5ffd839fe5be99359e4c86a96f03148bac698
6649 Author: Keith Packard <keithp@keithp.com>
6650 Date:   Thu Nov 6 15:58:42 2014 -0800
6651
6652     altos: Declare port register type only in arch header
6653     
6654     Instead of defaulting to 8 bits, explicitly require declaration of the
6655     type of the port register for each architecture.
6656     
6657     Signed-off-by: Keith Packard <keithp@keithp.com>
6658
6659 commit f2060d6ca222a04608e598baf59757f12ea2ec70
6660 Author: Keith Packard <keithp@keithp.com>
6661 Date:   Thu Nov 6 13:27:29 2014 -0800
6662
6663     Move teledongle 1.9 to 1.8; there's a new 1.9
6664     
6665     1.9 is now the lpc11u14-based form-factor prototype board.
6666     
6667     Signed-off-by: Keith Packard <keithp@keithp.com>
6668
6669 commit b67556949aa080fc5e70771e972de880e44eca12
6670 Author: Keith Packard <keithp@keithp.com>
6671 Date:   Wed Nov 5 22:11:44 2014 -0800
6672
6673     altos: Rename microwater to microsplash
6674     
6675     Signed-off-by: Keith Packard <keithp@keithp.com>
6676
6677 commit b0e903a76276e33f531eade42ac721c9490c6758
6678 Author: Keith Packard <keithp@keithp.com>
6679 Date:   Thu Oct 30 21:59:45 2014 -0700
6680
6681     altosui: Pop up 'Connecting' dialog during Monitor Idle
6682     
6683     This was a bit harder than expected as I had to wire up a way to shut
6684     down the whole monitor idle window when you clicked on the cancel button.
6685     
6686     Signed-off-by: Keith Packard <keithp@keithp.com>
6687
6688 commit ef00182c79bd7a56fbc5d782cb8f4aa0079bb86f
6689 Author: Keith Packard <keithp@keithp.com>
6690 Date:   Sat Oct 25 21:14:25 2014 -0700
6691
6692     altos: Increase CC1200 SPI data rate to 8MHz
6693     
6694     This got set to 125kHz to make debugging with a logic analyzer easier
6695     and never changed back to a reasonable speed.
6696     
6697     Signed-off-by: Keith Packard <keithp@keithp.com>
6698
6699 commit 4d51570ed8776461d084726149923c5be43d622e
6700 Author: Keith Packard <keithp@keithp.com>
6701 Date:   Sat Oct 25 19:56:25 2014 -0700
6702
6703     altos: Fix up telemetry delay computations
6704     
6705     With RDF, APRS and telemetry all being sent at varying rates,
6706     computing when to send the next radio data is not as simple as sending
6707     telemetry and then figuring out whether to send RDF and/or APRS.
6708     
6709     Fix this by computing times for the next telemetry/rdf/aprs packet,
6710     and only sending each when that time has passed. Compute the delay
6711     until the next radio activity as the minimum time to any transmission.
6712     
6713     This also adds code to the config bits to reset the radio times
6714     whenever something changes that might affect which radio data to send
6715     next.
6716     
6717     Signed-off-by: Keith Packard <keithp@keithp.com>
6718
6719 commit c831f1ffb378c20b7513d209d60cdd5dee9db85b
6720 Author: Keith Packard <keithp@keithp.com>
6721 Date:   Sat Oct 25 17:44:48 2014 -0700
6722
6723     altos: Perform cc1200 calibration less often. Tweak radio params
6724     
6725     This performs calibration after every 4 operations, or when the
6726     frequency changes. This reduces the time it takes to get to receive
6727     mode.
6728     
6729     This also makes the sync and preamble qualifiers more strict to reject
6730     bad packets.
6731     
6732     Signed-off-by: Keith Packard <keithp@keithp.com>
6733
6734 commit 3f7263f57b1b697d92ed6c3d62956e5bdfc11f24
6735 Author: Keith Packard <keithp@keithp.com>
6736 Date:   Sat Oct 25 11:20:44 2014 -0700
6737
6738     altos: Remove old AO_SEND_ALL_BARO bits
6739     
6740     This was used for testing the original TeleMini which couldn't log
6741     data at full speed.
6742     
6743     Signed-off-by: Keith Packard <keithp@keithp.com>
6744
6745 commit ae4be19f8ab0899a879a10aec28dc381f44dd2c7
6746 Author: Keith Packard <keithp@keithp.com>
6747 Date:   Sat Oct 25 10:21:30 2014 -0700
6748
6749     altos: Build TeleDongle v1.9 by default
6750     
6751     Signed-off-by: Keith Packard <keithp@keithp.com>
6752
6753 commit 51ef3fad6435c0b21945d48fbbaa5a4c092c4960
6754 Author: Keith Packard <keithp@keithp.com>
6755 Date:   Sat Oct 25 10:20:07 2014 -0700
6756
6757     altos: Increase PQT value for cc1200 improving sensitivity
6758     
6759     The PQT value indicates how 'good' the preamble is; higher values
6760     allow a lower quality of preamble to pass the test, permitting more
6761     packets to be decoded.
6762     
6763     Signed-off-by: Keith Packard <keithp@keithp.com>
6764
6765 commit 9102183b40f0b32d4fb6d24502b79a6431184310
6766 Author: Keith Packard <keithp@keithp.com>
6767 Date:   Sat Oct 25 10:17:48 2014 -0700
6768
6769     altos: Sort out ao_gps_print altitude fetching
6770     
6771     ao_gps_print is used by both teledongle/telebt and the host-based GPS
6772     test code. The first instance uses the old internal GPS structure,
6773     containing just a 16-bit altitude while the second uses an
6774     ao_telemetry structure, which contains 32 bits split into two
6775     members.
6776     
6777     Signed-off-by: Keith Packard <keithp@keithp.com>
6778
6779 commit cb83b5432e1320726ad496ded78cced7274618b0
6780 Author: Keith Packard <keithp@keithp.com>
6781 Date:   Tue Oct 7 05:36:18 2014 +0200
6782
6783     altos/teledongle-v1.9: Add remaining code to complete the project
6784     
6785     This turns the prototype board into a full teledongle
6786     
6787     Signed-off-by: Keith Packard <keithp@keithp.com>
6788
6789 commit 4a3fe79266a77f8fc001117f49db1d2f14f9e6b6
6790 Author: Keith Packard <keithp@keithp.com>
6791 Date:   Tue Oct 7 05:34:06 2014 +0200
6792
6793     altos: Complete cc1200 driver
6794     
6795     Deal with differences between cc1120 and cc1200, including built-in
6796     packet support and various register changes.
6797     
6798     This now works to send and receive telemetry, as well as send APRS and
6799     RDF.
6800     
6801     Signed-off-by: Keith Packard <keithp@keithp.com>
6802
6803 commit 7fea8b245cdccc1ec77aa559433952f339676473
6804 Author: Keith Packard <keithp@keithp.com>
6805 Date:   Tue Oct 7 05:35:10 2014 +0200
6806
6807     altos: Expose telemetry altitude macros even without GPS
6808     
6809     This allows for APRS testing in the new teledongle code
6810     
6811     Signed-off-by: Keith Packard <keithp@keithp.com>
6812
6813 commit 484b530a16a54ca8fde412c3f466bfe7eed978cd
6814 Author: Keith Packard <keithp@keithp.com>
6815 Date:   Tue Oct 7 05:32:00 2014 +0200
6816
6817     altos: Mark STM ao_spi_send as taking const pointer
6818     
6819     We don't write to this, so let it be const for type checking
6820     
6821     Signed-off-by: Keith Packard <keithp@keithp.com>
6822
6823 commit c17dff05b70d98e3193e8e68cc9599f3a30270b5
6824 Author: Keith Packard <keithp@keithp.com>
6825 Date:   Fri Oct 24 19:10:45 2014 -0700
6826
6827     ao-tools/ao-send-telem: Add verbose, fake and rate options
6828     
6829     Verbose dumps some data while sending packets.
6830     Fake sends constructed packets, once every 500ms.
6831     Rate sets the transmit bit rate.
6832     
6833     Signed-off-by: Keith Packard <keithp@keithp.com>
6834
6835 commit e2562ee43b8558df0836217ea3a187b36e2669b3
6836 Author: Keith Packard <keithp@keithp.com>
6837 Date:   Wed Oct 15 16:10:11 2014 -0700
6838
6839     altosuilib: Try to detect the architecture when loading JNI lib
6840     
6841     Look at sun.arch.data.model and os.arch to try and load the right
6842     libaltos file the first time.
6843     
6844     Signed-off-by: Keith Packard <keithp@keithp.com>
6845
6846 commit 88df7cd314269fa1debe226b49b7e4e9dc238d8e
6847 Author: Keith Packard <keithp@keithp.com>
6848 Date:   Fri Oct 24 21:21:19 2014 -0700
6849
6850     altoslib: synchronize access to serial debug output list
6851     
6852     This list is access by both the receiver and the monitor task, so it
6853     needs to be locked to prevent collisions.
6854     
6855     Signed-off-by: Keith Packard <keithp@keithp.com>
6856
6857 commit 221824b038bf18ca43a38c82d18b0ae9586ba565
6858 Author: Bdale Garbee <bdale@gag.com>
6859 Date:   Thu Oct 9 13:11:16 2014 -0600
6860
6861     document pyro current limits in an appendix
6862
6863 commit ffda6989e856e66a1bea253e82cb70f51ada3e7a
6864 Author: Keith Packard <keithp@keithp.com>
6865 Date:   Sun Oct 5 00:07:10 2014 -0700
6866
6867     altos: Add prototype TeleDongle v1.9 code
6868     
6869     Lights up the hardware, sends carrier and RDF tones. A bit more cc1200
6870     work to be done still.
6871     
6872     Signed-off-by: Keith Packard <keithp@keithp.com>
6873
6874 commit 27a467d802a80a33ea20eb5cda2558d03caa2c00
6875 Author: Keith Packard <keithp@keithp.com>
6876 Date:   Sun Oct 5 00:03:28 2014 -0700
6877
6878     altos: Copy cc1120 driver to cc1200 driver and hack a bit
6879     
6880     The cc1200 is similar to the cc1120, although many registers have
6881     changed.
6882     
6883     This driver can send a bare carrier and an RDF tone, but does not yet
6884     receive or transmit telemetry data.
6885     
6886     Signed-off-by: Keith Packard <keithp@keithp.com>
6887
6888 commit 62628c8b429d06ee834f0b6511c430cbeaab9303
6889 Author: Keith Packard <keithp@keithp.com>
6890 Date:   Sat Oct 4 00:30:54 2014 -0700
6891
6892     altos: Fix syntax error with ao_log_mega change.
6893     
6894     Missed a semi-colon.
6895     
6896     Signed-off-by: Keith Packard <keithp@keithp.com>
6897
6898 commit 00ae706dab6e8fddef4c5730a17c433a022228b7
6899 Author: Keith Packard <keithp@keithp.com>
6900 Date:   Sat Oct 4 00:11:13 2014 -0700
6901
6902     altoslib: Compute tilt angle from eeprom data
6903     
6904     This copies the computation of tilt angle from the firmware so that
6905     post-flight analysis can also show the data.
6906     
6907     This change also renames all of the imu values to make them easier to
6908     understand:
6909     
6910         accel   gyro    axis
6911     
6912         along   roll    length of the board
6913         across  pitch   across the board
6914         through yaw     through the board.
6915     
6916     Signed-off-by: Keith Packard <keithp@keithp.com>
6917
6918 commit a757fd5af53f5721a949181372548afa4757d6c9
6919 Author: Keith Packard <keithp@keithp.com>
6920 Date:   Sat Oct 4 00:10:03 2014 -0700
6921
6922     altosui: Update 'Imperial Units' checkbox when units change
6923     
6924     If you have two graphs running, make sure the imperial units
6925     checkboxes agree.
6926     
6927     Signed-off-by: Keith Packard <keithp@keithp.com>
6928
6929 commit 656d8fe17532ca6c7d1d43996f187df2f14f5395
6930 Author: Keith Packard <keithp@keithp.com>
6931 Date:   Sat Oct 4 00:07:39 2014 -0700
6932
6933     altoslib: Deal with new Mega log format that has 32-bit gyro cal
6934     
6935     This adds parsing for the new log format type to get all 32 bits of
6936     the gyro calibration data.
6937     
6938     Signed-off-by: Keith Packard <keithp@keithp.com>
6939
6940 commit 9521dc63671b69065d27fc1ccba6d20cc90643cb
6941 Author: Keith Packard <keithp@keithp.com>
6942 Date:   Sat Oct 4 00:04:39 2014 -0700
6943
6944     altos: Record 32-bits for gyro calibration values
6945     
6946     The gyro ground calibration values are scaled by 512 to provide a bit
6947     more precision for the computations. This means they don't fit in 16
6948     bits, so change the format of the flight log record. Also change the
6949     reported format so that AltosUI has a chance of figuring it out.
6950     
6951     Signed-off-by: Keith Packard <keithp@keithp.com>
6952
6953 commit 95d9248da78f86240dbe77e2c206420dc509c9cf
6954 Author: Keith Packard <keithp@keithp.com>
6955 Date:   Mon Sep 29 12:57:27 2014 -0700
6956
6957     altosui: Check for map and stats table when changing units/fonts in graph
6958     
6959     AltosGraphUI wasn't making sure the map and stats tables were present
6960     before attempting to adjust font size and units.
6961     
6962     Signed-off-by: Keith Packard <keithp@keithp.com>
6963
6964 commit 40c5535b65a75374fb1dbbd994c29324db814f5b
6965 Author: Keith Packard <keithp@keithp.com>
6966 Date:   Mon Sep 29 12:56:04 2014 -0700
6967
6968     altos: Handle antenna down in ao_flight_test
6969     
6970     Parse the Pad orientation config value and flip the accelerometer
6971     value back around in antenna down configuration.
6972     
6973     Signed-off-by: Keith Packard <keithp@keithp.com>
6974
6975 commit b97a125a9f8bd9619833647a9b6aa6329103e136
6976 Author: Keith Packard <keithp@keithp.com>
6977 Date:   Fri Sep 26 22:58:13 2014 -0700
6978
6979     ao-bringup: Auto-select programmer for teledongle turnon
6980     
6981     Bdale's programmer is SN 100, Keith's is SN 186. Use the username to
6982     figure out which one to use.
6983     
6984     Signed-off-by: Keith Packard <keithp@keithp.com>
6985
6986 commit b4eba3f3a58a9c35e3699ff14405b997c1318d91
6987 Author: Keith Packard <keithp@keithp.com>
6988 Date:   Fri Sep 26 22:53:39 2014 -0700
6989
6990     altos: Make sure we drop the SPI mutex when aborting cc1120 recv
6991     
6992     The cc1120 receive code is 'twisty', in that it acquires the SPI mutex
6993     in the middle of an interrupt handler so that it can quickly start the
6994     radio when the signal comes in. This means we have to be careful to
6995     drop that mutex in all paths which leave the receive code, including
6996     when the packet receive is aborted mid-way through the process.
6997     
6998     Signed-off-by: Keith Packard <keithp@keithp.com>
6999
7000 commit 22661ba69b8919116092382f1f5aa0dc79d02cc9
7001 Author: Bdale Garbee <bdale@gag.com>
7002 Date:   Sat Sep 13 17:56:51 2014 -0600
7003
7004     store cal value correctly even when we didn't need to change it
7005
7006 commit b0eb63205223e2982d0ded08503c3f128420270f
7007 Author: Keith Packard <keithp@keithp.com>
7008 Date:   Sat Sep 13 15:59:18 2014 -0700
7009
7010     altosdroid: Update notebook to reflect current status
7011     
7012     Signed-off-by: Keith Packard <keithp@keithp.com>
7013
7014 commit 9dc426756742fb967fdd21e1fcec54edeb4b12ac
7015 Author: Keith Packard <keithp@keithp.com>
7016 Date:   Sat Sep 13 15:52:56 2014 -0700
7017
7018     altosui: Bring up main window when doing --replay or --graph
7019     
7020     This shows the main window when replaying or graphing files so that
7021     you can interact with that, changing the global configuration or doing
7022     other stuff.
7023     
7024     Signed-off-by: Keith Packard <keithp@keithp.com>
7025
7026 commit 75d5368cb2a95f3f7385952669a14765460f549d
7027 Author: Keith Packard <keithp@keithp.com>
7028 Date:   Sat Sep 13 15:51:50 2014 -0700
7029
7030     altosui: Fix --replay to run in realtime after boost
7031     
7032     I added the ability to rapidly replay files for AltosDroid to recover
7033     from a crash, but didn't change AltosUI to use realtime mode again.
7034     
7035     Signed-off-by: Keith Packard <keithp@keithp.com>
7036
7037 commit 04b5cc37659b1b3d6b62f1ef17b17c0492434cba
7038 Author: Bdale Garbee <bdale@gag.com>
7039 Date:   Sat Sep 13 16:37:42 2014 -0600
7040
7041     reflect filename changes in LLC repo
7042
7043 commit 93d1cedc94358ebf5c2af537a25a242f6c19954c
7044 Author: Keith Packard <keithp@keithp.com>
7045 Date:   Sat Sep 13 15:23:40 2014 -0700
7046
7047     altosdroid: Automatically sign the released version if the key is available
7048     
7049     Look in ~/altusmetrumllc for release.keystore and Passphrase and
7050     enable building and signing of the release binary.
7051     
7052     Signed-off-by: Keith Packard <keithp@keithp.com>
7053
7054 commit 2731486c12678a7d3bd7ec79e74a2fcaf20845bd
7055 Author: Keith Packard <keithp@keithp.com>
7056 Date:   Sat Sep 13 13:38:31 2014 -0700
7057
7058     altosdroid: Update version code and name for 1.5
7059     
7060     Signed-off-by: Keith Packard <keithp@keithp.com>
7061
7062 commit e151c144fcdb1da96e715f29c049dc4869e1d53d
7063 Author: Keith Packard <keithp@keithp.com>
7064 Date:   Sat Sep 13 13:00:58 2014 -0700
7065
7066     Mark master branch as past the 1.5 point
7067     
7068     Signed-off-by: Keith Packard <keithp@keithp.com>
7069
7070 commit ff7c006e50515040d43399899fac26a3fe26d8a7
7071 Author: Bdale Garbee <bdale@gag.com>
7072 Date:   Sat Sep 13 12:31:08 2014 -0600
7073
7074     updated to reflect changes from 1.5 release
7075
7076 commit 20d640ec504afbfdb69dba1b241d84af1e62abed
7077 Author: Keith Packard <keithp@keithp.com>
7078 Date:   Fri Sep 12 20:58:26 2014 -0700
7079
7080     ao-bringup: Improve igniter testing. Add TeleMega and TeleMetrum testing.
7081     
7082     The script lets you re-try each one when they fail, which is nice if
7083     you're hand-holding the setup.
7084     
7085     The TeleMetrum and TeleMega tests are adapted from the EasyMega tests
7086     and are hooked up to the turnon scripts.
7087     
7088     Signed-off-by: Keith Packard <keithp@keithp.com>
7089
7090 commit e0077866138a1e29ede7181e39f04860b866543a
7091 Author: Keith Packard <keithp@keithp.com>
7092 Date:   Fri Sep 12 20:57:05 2014 -0700
7093
7094     ao-tools/ao-test-igniter: Remove bogus printf
7095     
7096     This must have been left over from testing; it prints "device (null)",
7097     which isn't very useful.
7098     
7099     Signed-off-by: Keith Packard <keithp@keithp.com>
7100
7101 commit 6681d31929266fec9711b3d89a4f074cd2afcc6e
7102 Author: Keith Packard <keithp@keithp.com>
7103 Date:   Fri Sep 12 20:56:29 2014 -0700
7104
7105     ao-tools/ao-test-gps: Improve output formatting
7106     
7107     Add a newline before printing out the flags and sats at exit time
7108     
7109     Signed-off-by: Keith Packard <keithp@keithp.com>
7110
7111 commit f2d045570d2cda0abde67a68506cb3fc2e119ec3
7112 Author: Keith Packard <keithp@keithp.com>
7113 Date:   Fri Sep 12 17:22:37 2014 -0700
7114
7115     ao-bringup: Use C version of ao-test-gps in test-telegps
7116     
7117     Signed-off-by: Keith Packard <keithp@keithp.com>
7118
7119 commit d0e597789ac298b108ea04cc1a2c999bcf14bc9c
7120 Author: Keith Packard <keithp@keithp.com>
7121 Date:   Fri Sep 12 17:22:03 2014 -0700
7122
7123     ao-tools: Add ao-test-gps program
7124     
7125     This waits for GPS to report lock
7126     
7127     Signed-off-by: Keith Packard <keithp@keithp.com>
7128
7129 commit def036794f1460a5457e6b86350712c336e296d6
7130 Author: Keith Packard <keithp@keithp.com>
7131 Date:   Fri Sep 12 16:38:59 2014 -0700
7132
7133     ao-bringup: Use C version of test-flash for telegps
7134     
7135     Signed-off-by: Keith Packard <keithp@keithp.com>
7136
7137 commit 1630a8e458f174d6df1aa30ff30e3f02a10bdbf7
7138 Author: Keith Packard <keithp@keithp.com>
7139 Date:   Thu Sep 11 19:59:58 2014 -0700
7140
7141     altosui: Ignore built .desktop file
7142     
7143     Signed-off-by: Keith Packard <keithp@keithp.com>
7144
7145 commit 807e62ccebc83eb6427a63431d06effa074e5e76
7146 Author: Keith Packard <keithp@keithp.com>
7147 Date:   Thu Sep 11 19:56:13 2014 -0700
7148
7149     altos: Make sure we don't beep out continuity twice in idle mode
7150     
7151     If the battery voltage report takes longer than the initialiation
7152     sequence, we could get to the state reporting after the state had
7153     switched from startup to idle. This would result in continuity being
7154     reported the first time through the loop. Then, as the state had
7155     already changed, we'd pass through the while test and go back to
7156     report continuity a second time.
7157     
7158     Fixed by using the state remembered before beeping out the voltage to
7159     decide whether to report the continuity.
7160     
7161     Signed-off-by: Keith Packard <keithp@keithp.com>
7162
7163 commit d7ad490a33900a788b15d1600ebaa2a71e6f35ff
7164 Author: Keith Packard <keithp@keithp.com>
7165 Date:   Thu Sep 11 15:57:21 2014 -0700
7166
7167     altos: Add smaller altitude table file to .gitignore
7168     
7169     Signed-off-by: Keith Packard <keithp@keithp.com>
7170
7171 commit 7ad8921b164103629b246c25860297454aa7ec6b
7172 Author: Keith Packard <keithp@keithp.com>
7173 Date:   Thu Sep 11 15:56:14 2014 -0700
7174
7175     altos/test: Add TMv2 test program to .gitignore
7176
7177 commit 0cedc27e22a9fbc9ccfe1b403c84d728bb23220d
7178 Author: Keith Packard <keithp@keithp.com>
7179 Date:   Thu Sep 11 15:00:25 2014 -0700
7180
7181     altos: Fix ability to disable telemetry by setting interval to 0
7182     
7183     For non-zero telemetry intervals, the radio code limits the value
7184     based on the data rate. However, a zero interval means that telemetry
7185     should be entirely disabled, so that value should be left alone when
7186     checking.
7187     
7188     Signed-off-by: Keith Packard <keithp@keithp.com>
7189
7190 commit 6dafd7bf947d892e430cd565eb92a3366abb3604
7191 Author: Keith Packard <keithp@keithp.com>
7192 Date:   Thu Sep 11 14:23:29 2014 -0700
7193
7194     telegps: Was mis-configuring the 'Configure Device' dialog
7195     
7196     Make sure we show 'rate_label' instead of showing 'radio_enable_label'
7197     twice.
7198     
7199     Signed-off-by: Keith Packard <keithp@keithp.com>
7200
7201 commit 368c7d583380b4453f432d5a965a1e4c45a92f92
7202 Author: Keith Packard <keithp@keithp.com>
7203 Date:   Thu Sep 11 14:14:07 2014 -0700
7204
7205     altoslib: Stop re-loading previous flight when starting telemetry monitoring
7206     
7207     This feature is necessary on AltosDroid because there's no other UI
7208     for reloading an old flight. It's not useful on the desktop where you
7209     really just want to see new telemetry; old telemetry is availbale
7210     through the 'graph flight' or 'replay' mechanisms.
7211     
7212     AltosDroid uses a different class for reading telemetry data, so we
7213     can just remove this feature from altoslib at this point.
7214     
7215     Signed-off-by: Keith Packard <keithp@keithp.com>
7216
7217 commit 2ee937b603b181bb24768eb4d0e2f918a5377fd3
7218 Author: Bdale Garbee <bdale@gag.com>
7219 Date:   Wed Sep 10 01:29:56 2014 -0600
7220
7221     use dh_installmime, which requires telling configure to stay out of the way
7222
7223 commit 22e68da2cb3b0b42708876f1dde52dbfd0ce4bf7
7224 Author: Bdale Garbee <bdale@gag.com>
7225 Date:   Wed Sep 10 00:26:10 2014 -0600
7226
7227     another build dep
7228
7229 commit 615b69b19557a9683eeb0475b30a053a35ca51ac
7230 Merge: a72b768 0365493
7231 Author: Bdale Garbee <bdale@gag.com>
7232 Date:   Wed Sep 10 01:30:37 2014 -0600
7233
7234     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
7235
7236 commit 036549343416183f973d00a86d897d4a368c1d6f
7237 Author: Keith Packard <keithp@keithp.com>
7238 Date:   Wed Sep 10 00:03:53 2014 -0700
7239
7240     configure: Add --disable-install-shared-mime-info option
7241     
7242     This inhibits the installation of the shared mime info data file and
7243     updating of the shared mime database. Necessary if you want to use a
7244     distribution-specific shared mime installation hook, like dh_installmime
7245     
7246     Signed-off-by: Keith Packard <keithp@keithp.com>
7247
7248 commit 1992a1e3046a5414ce8d394e1cd8e5e6f6338d29
7249 Author: Keith Packard <keithp@keithp.com>
7250 Date:   Tue Sep 9 23:43:10 2014 -0700
7251
7252     .desktop: Use %F instead of %f in .desktop files
7253     
7254     %F is a list of files, %f is a single file. All of our tools can
7255     handle lists of files, so make the .desktop file reflect that.
7256     
7257     Signed-off-by: Keith Packard <keithp@keithp.com>
7258
7259 commit a72b7683606d3e741043011c929482a0a168a5c9
7260 Author: Bdale Garbee <bdale@gag.com>
7261 Date:   Tue Sep 9 23:44:45 2014 -0600
7262
7263     more build dependencies for processing icons
7264
7265 commit 1fb200d18cc385230b3af574816ec354682cc5c9
7266 Author: Keith Packard <keithp@keithp.com>
7267 Date:   Tue Sep 9 23:00:14 2014 -0700
7268
7269     icons: Use DESTDIR when updating mime/icon caches
7270     
7271     This is done in install-data-hook and needs to explicitly use DESTDIR
7272     
7273     Signed-off-by: Keith Packard <keithp@keithp.com>
7274
7275 commit a8c799c48a52bf13466536db627b66bfe2a435cd
7276 Author: Keith Packard <keithp@keithp.com>
7277 Date:   Tue Sep 9 09:38:03 2014 -0700
7278
7279     altoslib/altosuilib: clean all versions of the .jar file
7280     
7281     When we switch libary versions, we want to remove the old ones; just
7282     have 'make clean' remove all versions of the libaries.
7283     
7284     Signed-off-by: Keith Packard <keithp@keithp.com>
7285
7286 commit cef3be371cb3a9e481c2bd6abdf22c51953773f1
7287 Author: Keith Packard <keithp@keithp.com>
7288 Date:   Tue Sep 9 09:37:13 2014 -0700
7289
7290     altoslib/altosuilib: Add EasyMega support
7291     
7292     This makes flashing find the right files, and Monitor Idle show all of
7293     the state data.
7294     
7295     Signed-off-by: Keith Packard <keithp@keithp.com>
7296
7297 commit 08a82617c53718055d97df4fa60f3e5051d65383
7298 Author: Keith Packard <keithp@keithp.com>
7299 Date:   Tue Sep 9 09:09:22 2014 -0700
7300
7301     altos/easymega: Set USB PID for EasyMega to 0x0028
7302     
7303     It was using 0x0023, which is for TeleMega. 0x0028 is what's listed in
7304     usbvidpid.h.
7305     
7306     Signed-off-by: Keith Packard <keithp@keithp.com>
7307
7308 commit 9d3ab4c78f79d659ce800def77bc441c95fa15be
7309 Author: Keith Packard <keithp@keithp.com>
7310 Date:   Tue Sep 9 09:02:51 2014 -0700
7311
7312     altoslib: Fix idle monitor parsing of MMA655x state
7313     
7314     There's no ':' after 'MMA655X value' in the output, and the parser
7315     returns 'true' on success, not false.
7316     
7317     With this, 'Monitor Idle' now reports correct accelerometer readings.
7318     
7319     Signed-off-by: Keith Packard <keithp@keithp.com>
7320
7321 commit 2b7ba0a5be70ae1d661afb2592ce8a6bf660c793
7322 Author: Keith Packard <keithp@keithp.com>
7323 Date:   Tue Sep 9 09:01:42 2014 -0700
7324
7325     Tag version 1.4.9.3
7326     
7327     This should be the final firmware version for 1.5
7328     
7329     Signed-off-by: Keith Packard <keithp@keithp.com>
7330
7331 commit 445d61c3810154193aebbf0f08f075ac8e107baf
7332 Author: Keith Packard <keithp@keithp.com>
7333 Date:   Sat Sep 6 22:56:25 2014 -0700
7334
7335     altosui: Include EasyMega firmware in fat release
7336     
7337     Signed-off-by: Keith Packard <keithp@keithp.com>
7338
7339 commit f0d2d34f84980ab45ecedae17546f4d71e020c5e
7340 Merge: 8c212cd 6c812f1
7341 Author: Bdale Garbee <bdale@gag.com>
7342 Date:   Sat Sep 6 23:42:47 2014 -0600
7343
7344     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
7345
7346 commit 6c812f10761ec4ebf13e29ccef1d6c2c864f1158
7347 Author: Keith Packard <keithp@keithp.com>
7348 Date:   Sat Sep 6 22:28:13 2014 -0700
7349
7350     doc: Update for version 1.5 release
7351     
7352     Add stuff about EasyMega and telemetry rate configuration. Update
7353     screen shots as needed.
7354     
7355     Signed-off-by: Keith Packard <keithp@keithp.com>
7356
7357 commit d83afa9320c24056469984873af0a3c70bee0962
7358 Author: Keith Packard <keithp@keithp.com>
7359 Date:   Sat Sep 6 20:44:30 2014 -0700
7360
7361     altos: Scale packet master receive delay by baud rate
7362     
7363     Increase the time we wait for return packets based on the remote
7364     protocol baud rate.
7365     
7366     Signed-off-by: Keith Packard <keithp@keithp.com>
7367
7368 commit e7515e3a88d53c50dd9b962cc8f43ce5376ccd0b
7369 Author: Keith Packard <keithp@keithp.com>
7370 Date:   Sat Sep 6 20:43:32 2014 -0700
7371
7372     altoslib: Increase timeouts when using low baud rate remote protocol
7373     
7374     When using 2400 or 9600 baud remote link rates, we need to increase
7375     the packet timeout from 500ms to much longer values to avoid annoying
7376     the user with timeout warnings.
7377     
7378     Signed-off-by: Keith Packard <keithp@keithp.com>
7379
7380 commit 46f08f8709c538f3fee8e166598f0bb930df6e3c
7381 Author: Keith Packard <keithp@keithp.com>
7382 Date:   Sat Sep 6 20:41:58 2014 -0700
7383
7384     altoslib: Update local callsign/baud rate when using remote protocol
7385     
7386     We've had code to synchronously update the local and remote radio
7387     frequencies when doing configuration over the remote link. This patch
7388     adds the same code when changing the call sign and baud rate.
7389     
7390     Signed-off-by: Keith Packard <keithp@keithp.com>
7391
7392 commit f395bcaa620490954d4a42de9b4870bc12bedc91
7393 Author: Keith Packard <keithp@keithp.com>
7394 Date:   Sat Sep 6 20:39:37 2014 -0700
7395
7396     altos: Reduce deviation at 2400/9600 baud
7397     
7398     There's no reason to use 20.5kHz deviation at 2400 and 9600 baud, and
7399     if we get a better receiver, we'll want to use narrower deviation to
7400     have less bandwidth sucking noise into the radio. The new values are
7401     (nominally) 5.125kHz deviation for 9600 baud and 1.5kHz deviation for
7402     2400 baud.
7403     
7404     Signed-off-by: Keith Packard <keithp@keithp.com>
7405
7406 commit 8c212cd5bfa03f71a31d84bd0051314e77d88461
7407 Merge: e9714e3 dd26ec2
7408 Author: Bdale Garbee <bdale@gag.com>
7409 Date:   Sat Sep 6 13:41:36 2014 -0600
7410
7411     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
7412     
7413     Conflicts:
7414         ao-bringup/turnon_telemega
7415
7416 commit e9714e34091abe657aa1b30aeda9466331aa39c1
7417 Author: Bdale Garbee <bdale@gag.com>
7418 Date:   Sat Sep 6 13:40:59 2014 -0600
7419
7420     tweaking test scripts
7421
7422 commit dd26ec2e706bdd29090759deeb90090a0e3b74f0
7423 Author: Keith Packard <keithp@keithp.com>
7424 Date:   Sat Sep 6 00:39:41 2014 -0700
7425
7426     altosdroid: Mark completed items as 'done'
7427     
7428     Frequency display
7429     Re-load data on restart
7430     Auto re-connect to TBT at correct freq
7431     
7432     Signed-off-by: Keith Packard <keithp@keithp.com>
7433
7434 commit 18671803d078aa798b603c67b741c3ba4374f41d
7435 Author: Keith Packard <keithp@keithp.com>
7436 Date:   Sat Sep 6 00:14:26 2014 -0700
7437
7438     altosdroid: Add imperial unit support
7439     
7440     Provides a menu entry to switch units, changes all value displays to
7441     use the AltosLib units conversion code.
7442     
7443     Signed-off-by: Keith Packard <keithp@keithp.com>
7444
7445 commit 2b2ebd2fee46158abd1ae050cd6d1040ead849a0
7446 Author: Keith Packard <keithp@keithp.com>
7447 Date:   Fri Sep 5 23:10:07 2014 -0700
7448
7449     altosdroid: Update tab contents before switching
7450     
7451     Make sure the new tab contents are updated before switching tabs so
7452     that the user doesn't see old stuff.
7453     
7454     Signed-off-by: Keith Packard <keithp@keithp.com>
7455
7456 commit 08bbb1c3de73c9aaf920b11247eae544df6eac0c
7457 Author: Keith Packard <keithp@keithp.com>
7458 Date:   Fri Sep 5 22:06:21 2014 -0700
7459
7460     altosdroid: Ignore TelemetryService messages after service shutdown
7461     
7462     Messages may get delivered after the service has been shut down;
7463     ignore those.
7464     
7465     Signed-off-by: Keith Packard <keithp@keithp.com>
7466
7467 commit 101ac21f05a69bdeb07d423aa18017eca04fc47f
7468 Author: Keith Packard <keithp@keithp.com>
7469 Date:   Thu Sep 4 11:28:40 2014 -0700
7470
7471     altosdroid: add new TelemetryState.java
7472     
7473     Signed-off-by: Keith Packard <keithp@keithp.com>
7474
7475 commit 2b03aca995b0151d7e820775f6a9d4afec462633
7476 Author: Keith Packard <keithp@keithp.com>
7477 Date:   Wed Sep 3 22:59:09 2014 -0700
7478
7479     altosui: Don't mark altimeter dirty when opening pyro panel
7480     
7481     Skip setting the UI dirty when filling in the pyro firing time value.
7482     
7483     Signed-off-by: Keith Packard <keithp@keithp.com>
7484
7485 commit be38fb88d11bda1ba1caca38220773d3abcede19
7486 Author: Keith Packard <keithp@keithp.com>
7487 Date:   Wed Sep 3 22:58:22 2014 -0700
7488
7489     altos: Allow negative values for pyro configuration data
7490     
7491     All of the integer pyro configuration parameters may be negative, so
7492     parse that correctly.
7493     
7494     Signed-off-by: Keith Packard <keithp@keithp.com>
7495
7496 commit 3842735e303f0bf6f46ed8cb659c92d8bb9bd137
7497 Author: Keith Packard <keithp@keithp.com>
7498 Date:   Wed Sep 3 22:32:49 2014 -0700
7499
7500     altosdroid: Use single object to pass data to UI
7501     
7502     Instead of having separate messages for each piece of telemetry state,
7503     package the whole mess up in one object and send it for any
7504     change. This simplifies tracking within the UI by avoiding corner
7505     cases during reconnect.
7506     
7507     Signed-off-by: Keith Packard <keithp@keithp.com>
7508
7509 commit adc46e2f1346d98ef4f6c2351fef95fbc8ddf831
7510 Author: Keith Packard <keithp@keithp.com>
7511 Date:   Wed Sep 3 22:12:15 2014 -0700
7512
7513     altos/telefire: Add firing length to manual pad command
7514     
7515     This adds an optional length of time (in 1/10s of a second) to the
7516     ao_pad_manual function to enable testing of igniters without needing
7517     to use TeleLCO.
7518     
7519     Signed-off-by: Keith Packard <keithp@keithp.com>
7520
7521 commit b838a974d0dad43ff02060d8d913d9369eb20e96
7522 Author: Keith Packard <keithp@keithp.com>
7523 Date:   Mon Sep 1 18:25:00 2014 -0500
7524
7525     altosui: Fix 'pad' screen for TeleGPS
7526     
7527     Don't report pad position for TeleGPS
7528     
7529     Signed-off-by: Keith Packard <keithp@keithp.com>
7530
7531 commit 7735cee871d02215517cb9d91cd552f003ca6a50
7532 Author: Keith Packard <keithp@keithp.com>
7533 Date:   Mon Sep 1 18:23:42 2014 -0500
7534
7535     altoslib: Catch a couple null pointers in AltosConfigTD
7536     
7537     When messing with TD, I hit a couple of paths that could try to
7538     dereference null pointers. Check for those.
7539     
7540     Signed-off-by: Keith Packard <keithp@keithp.com>
7541
7542 commit 57f0ae384f3c206ea777dc7c93b594ae3901f354
7543 Author: Keith Packard <keithp@keithp.com>
7544 Date:   Mon Sep 1 18:21:49 2014 -0500
7545
7546     altoslib: Ignore extra AO_LOG_FLIGHT records from TeleGPS
7547     
7548     TeleGPS was inserting a spurious AO_LOG_FLIGHT record each time it
7549     turned on, which confused altoslib quite a bit.
7550     
7551     Signed-off-by: Keith Packard <keithp@keithp.com>
7552
7553 commit a4202b4180e77e2a39ca071d3b8b8256ff0fc7b5
7554 Author: Keith Packard <keithp@keithp.com>
7555 Date:   Mon Sep 1 18:12:29 2014 -0500
7556
7557     altos: Don't add AO_LOG_FLIGHT to existing GPS logs
7558     
7559     When appending to a TeleGPS log, don't stick another flight value into
7560     the log. That just confuses the ground station software.
7561     
7562     Signed-off-by: Keith Packard <keithp@keithp.com>
7563
7564 commit aa7dd289ee72f7a49a08ce0229c4e0e0404499d0
7565 Author: Keith Packard <keithp@keithp.com>
7566 Date:   Sun Aug 31 00:28:15 2014 -0500
7567
7568     altosdroid: reload previous log file at connect time
7569     
7570     Use the saved logfile to re-load the previous state at startup time.
7571     
7572     Signed-off-by: Keith Packard <keithp@keithp.com>
7573
7574 commit 00a3eace5ea885205270137f190538b010fd679f
7575 Author: Keith Packard <keithp@keithp.com>
7576 Date:   Sun Aug 31 00:27:54 2014 -0500
7577
7578     altosdroid: Add missing preferences backend file
7579     
7580     Signed-off-by: Keith Packard <keithp@keithp.com>
7581
7582 commit a5e348905a510bb2dcf6d7734f5681fb8338cd87
7583 Author: Keith Packard <keithp@keithp.com>
7584 Date:   Sun Aug 31 00:11:28 2014 -0500
7585
7586     altoslib: create logfiles preference object. check link in existing_data
7587     
7588     The logfiles preference hash wasn't getting created, resulting in
7589     crashes.
7590     
7591     When there was no link, don't try to load existing data.
7592     
7593     Signed-off-by: Keith Packard <keithp@keithp.com>
7594
7595 commit bc3fbcb35090be3856284ccf4d908ebf39d02bec
7596 Author: Keith Packard <keithp@keithp.com>
7597 Date:   Sun Aug 31 00:08:33 2014 -0500
7598
7599     altosdroid: Add quit. Restart. Show freq in title.
7600     
7601     Add a quit button to menu.
7602     When restarting, reconnect to previous device.
7603     When connecting, set the freq/rate to previous values.
7604     
7605     Signed-off-by: Keith Packard <keithp@keithp.com>
7606
7607 commit 0b70ea04e807c69a987d5976ab217f9f65fb1e09
7608 Author: Keith Packard <keithp@keithp.com>
7609 Date:   Fri Aug 29 22:33:36 2014 -0500
7610
7611     altosdroid: fixup fetching active device address
7612     
7613     Signed-off-by: Keith Packard <keithp@keithp.com>
7614
7615 commit 0014addf3356bad1eff76cffc396fb120308646c
7616 Author: Keith Packard <keithp@keithp.com>
7617 Date:   Fri Aug 29 22:08:43 2014 -0500
7618
7619     altoslib: TeleMega telemetry pyro voltages are uint8
7620     
7621     Using int8 means that voltages over about 6V are reported incorrectly.
7622     
7623     Signed-off-by: Keith Packard <keithp@keithp.com>
7624
7625 commit 810f9a4f79b0480973d84595140d3f8948ce26d9
7626 Author: Keith Packard <keithp@keithp.com>
7627 Date:   Fri Aug 29 15:22:43 2014 -0500
7628
7629     altosdroid: start restoring from log data on startup
7630     
7631     Remember which flight was last being received and reload that file
7632     
7633     Signed-off-by: Keith Packard <keithp@keithp.com>
7634
7635 commit 5872bd10df14b47de0e541bff16d9220af0558aa
7636 Author: Keith Packard <keithp@keithp.com>
7637 Date:   Fri Aug 29 15:12:38 2014 -0500
7638
7639     altos: Make sure pyro remains valid during delay
7640     
7641     Keep checking pyro status while waiting for delay to expire to make
7642     sure nothing changes. Disable pyro channel if something does.
7643     
7644     Signed-off-by: Keith Packard <keithp@keithp.com>
7645
7646 commit 54994d02a5ca5bb91512f31748a48a0140d3a640
7647 Author: Keith Packard <keithp@keithp.com>
7648 Date:   Thu Aug 28 19:52:30 2014 -0700
7649
7650     ao-bringup: Test EasyMega boards
7651
7652 commit 3c9cb4836edd4811fcdbb6ebbd25eb507a2ef5b1
7653 Author: Keith Packard <keithp@keithp.com>
7654 Date:   Mon Aug 18 10:57:26 2014 -0700
7655
7656     ao-bringup: Use ao-cal-accel instead of cal-accel in turnon scripts
7657     
7658     Signed-off-by: Keith Packard <keithp@keithp.com>
7659
7660 commit fac03ae9762f2af95b1ce5d99894173f9d9146f0
7661 Author: Keith Packard <keithp@keithp.com>
7662 Date:   Mon Aug 18 10:53:04 2014 -0700
7663
7664     Add ao-tools/ao-cal-accel
7665     
7666     This C version may be more reliable than the nickle version
7667     
7668     Signed-off-by: Keith Packard <keithp@keithp.com>
7669
7670 commit b357544dd64f5b0f209c6cc6cb4fa392a2c3e1fa
7671 Author: Bdale Garbee <bdale@gag.com>
7672 Date:   Mon Aug 18 11:25:32 2014 -0600
7673
7674     turn echo back on after accel cal in turnon_telemetrum so rest is easier
7675
7676 commit 44e389c31e5958c1a050fbe0dce5d7971a9d6a86
7677 Author: Keith Packard <keithp@keithp.com>
7678 Date:   Sun Aug 17 21:03:12 2014 -0700
7679
7680     altos: Add telerepeat-v1.0
7681     
7682     This uses TeleBT hardware to provide a telemetry repeater, receiving
7683     packets on one frequency and re-transmitting them on another.
7684     
7685     Signed-off-by: Keith Packard <keithp@keithp.com>
7686
7687 commit 5a51efd7f9b49ffadc91ccaf7a0d69566301c009
7688 Author: Keith Packard <keithp@keithp.com>
7689 Date:   Thu Jun 26 16:29:37 2014 -0700
7690
7691     altosui: Make Windows java test "smarter"
7692     
7693     Or at least have it try more options, and then finally ask the user
7694     before downloading and installing java
7695     
7696     Signed-off-by: Keith Packard <keithp@keithp.com>
7697
7698 commit bb7522acf040f41740ecd059e3d5d2480b652420
7699 Author: Keith Packard <keithp@keithp.com>
7700 Date:   Sun Aug 17 20:59:45 2014 -0700
7701
7702     telegps-v1.0: Provide one log and append to it
7703     
7704     Instead of creating per-flight logs, create a single log and append
7705     data to it each time TeleGPS is powered on. This avoids potentially
7706     running out of log space just because the device is powered off/on.
7707     
7708     Signed-off-by: Keith Packard <keithp@keithp.com>
7709
7710 commit 1530c24cc75cdf9ba87c7e153ff28bf7beb4384c
7711 Author: Keith Packard <keithp@keithp.com>
7712 Date:   Sun Aug 17 20:57:16 2014 -0700
7713
7714     cc1111: Wait for internal flash write to complete
7715     
7716     This ensures that we don't try to start another write too soon.
7717     
7718     Signed-off-by: Keith Packard <keithp@keithp.com>
7719
7720 commit 80e20b241359452028298567c76b2f644da5ad23
7721 Author: Keith Packard <keithp@keithp.com>
7722 Date:   Sun Aug 17 20:56:22 2014 -0700
7723
7724     Use -ldl when testing whether -m32 and -m64 builds work
7725     
7726     We only need -ldl, and not -lbluetooth now that libaltos uses dlopen
7727     on the bluetooth library
7728     
7729     Signed-off-by: Keith Packard <keithp@keithp.com>
7730
7731 commit 830f31fd6dc280e7a63ba689b7a48beff5c49072
7732 Author: Keith Packard <keithp@keithp.com>
7733 Date:   Sun Aug 17 20:55:34 2014 -0700
7734
7735     ao-tools/ao-send-telem: Support sending TM v2 and Tm v2 telemetry
7736     
7737     Add state tracking so the telemetry sending code works.
7738     
7739     Signed-off-by: Keith Packard <keithp@keithp.com>
7740
7741 commit 629b29b2718c174be9c811f224d0acf73fba4aff
7742 Author: Keith Packard <keithp@keithp.com>
7743 Date:   Sun Aug 17 20:54:44 2014 -0700
7744
7745     altoslib: Remove some debug printfs
7746     
7747     Signed-off-by: Keith Packard <keithp@keithp.com>
7748
7749 commit ef1dd370564b99da033109f2fb5f7bf29711a13f
7750 Author: Keith Packard <keithp@keithp.com>
7751 Date:   Sun Aug 17 20:53:31 2014 -0700
7752
7753     altoslib: Improve performance of AltosLib.hexbytes
7754     
7755     On an android device, this function was spending quite a bit of time
7756     calling hexbyte. Open code the conversion to improve performance.
7757     
7758     Signed-off-by: Keith Packard <keithp@keithp.com>
7759
7760 commit ee9f68ec877e3e5a67179f8c8abafbccc80eb804
7761 Author: Keith Packard <keithp@keithp.com>
7762 Date:   Sun Aug 17 20:51:36 2014 -0700
7763
7764     altoslib: Close serial port when AltosFlash fails to detect a target
7765     
7766     AltosDebug.check_connection raises an exception when the link fails,
7767     but the AltosFlash constructor didn't close the serial port in this
7768     case, causing the serial port to appear to be busy.
7769     
7770     Signed-off-by: Keith Packard <keithp@keithp.com>
7771
7772 commit 76fd424e4624cb376ac2cf84b01b77599756680a
7773 Author: Keith Packard <keithp@keithp.com>
7774 Date:   Sun Aug 17 20:50:38 2014 -0700
7775
7776     altoslib: Handle link timeout in AltosDebug.read_memory
7777     
7778     link.get_reply returns null on a link error; don't crash in
7779     read_memory when this happens.
7780     
7781     Signed-off-by: Keith Packard <keithp@keithp.com>
7782
7783 commit 935f769fee351545622e223a283fca64608ca410
7784 Author: Keith Packard <keithp@keithp.com>
7785 Date:   Sun Aug 17 20:49:27 2014 -0700
7786
7787     altoslib: Parse 'Log fixed:' configuration value
7788     
7789     TeleGPS holds a single flight record and constantly appends data to it
7790     instead of having separate flight records on the board. It reports
7791     'Log fixed: 1' to let AltosLib know that the size of the per-flight
7792     log is not configurable.
7793     
7794     Signed-off-by: Keith Packard <keithp@keithp.com>
7795
7796 commit 59dfe661fcb504f390d9726378c676f2b5b005f3
7797 Author: Keith Packard <keithp@keithp.com>
7798 Date:   Sun Aug 17 20:48:23 2014 -0700
7799
7800     altosdroid: Skip updating hidden UI elements
7801     
7802     Instead of updating everything in the UI, only update the visible UI
7803     elements to save a bunch of computation.
7804     
7805     Signed-off-by: Keith Packard <keithp@keithp.com>
7806
7807 commit b1f1844aa514893228080704da3b3ccf855bda1e
7808 Author: Keith Packard <keithp@keithp.com>
7809 Date:   Sun Aug 17 20:46:48 2014 -0700
7810
7811     altosdroid: Add telemetry rate support
7812     
7813     Provides a menu to select the receiver telemetry bit rate
7814     
7815     Signed-off-by: Keith Packard <keithp@keithp.com>
7816
7817 commit e935ebe55705cb0506aac0859583d54fd8e5ca46
7818 Author: Keith Packard <keithp@keithp.com>
7819 Date:   Thu Aug 14 19:03:29 2014 -0700
7820
7821     altos: Report additional pyro channels via beeper
7822     
7823     Send a beep for each additional pyro channel, low for no igniter, mid
7824     for igniter. Does not change the reporting for the apogee/main channels.
7825     
7826     Signed-off-by: Keith Packard <keithp@keithp.com>
7827
7828 commit c4dd29fcbbb93e991993a0aa444748dba4ee7dde
7829 Author: Keith Packard <keithp@keithp.com>
7830 Date:   Tue Jul 22 14:18:06 2014 -0700
7831
7832     altos: Document which TeleFire alarm pins are which
7833     
7834     Signed-off-by: Keith Packard <keithp@keithp.com>
7835
7836 commit d8e2b661e895fc59ded002a02191dcccce75f548
7837 Author: Keith Packard <keithp@keithp.com>
7838 Date:   Sat Jul 19 22:35:30 2014 -0700
7839
7840     altos: Have MicroKite just start recording at startup
7841     
7842     This avoids having MicroKite try to detect boost and has it just start
7843     recording data immediately.
7844     
7845     Signed-off-by: Keith Packard <keithp@keithp.com>
7846
7847 commit 59976c44d1b6ee6505cfa4efd9a26ec4302f6c33
7848 Author: Bdale Garbee <bdale@gag.com>
7849 Date:   Thu Aug 14 18:16:14 2014 -0600
7850
7851     change easymega from v0.1 to v1.0, tweak to build on master, add to Makefile
7852
7853 commit 4828be0ca5252ac9cd6061209385dcd6c4c57965
7854 Merge: 17e894d 165b7dc
7855 Author: Bdale Garbee <bdale@gag.com>
7856 Date:   Thu Aug 14 17:08:36 2014 -0600
7857
7858     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
7859
7860 commit 165b7dcf6fba90b15ff32b891cba4b9111c1965b
7861 Author: Keith Packard <keithp@keithp.com>
7862 Date:   Wed Jul 16 17:13:25 2014 -0700
7863
7864     altoslib: Handle TeleGPS files for KML export
7865     
7866     TeleGPS files had state values that couldn't be converted to colors,
7867     which resulted in a truncated file that wasn't much use for anything.
7868     
7869     Signed-off-by: Keith Packard <keithp@keithp.com>
7870
7871 commit 17e894d1b65231d07df009bc4e8ca92864ccf790
7872 Author: Bdale Garbee <bdale@gag.com>
7873 Date:   Tue Jul 15 23:15:50 2014 -0600
7874
7875     update turnon tools
7876
7877 commit ec7ceb607f5ba7e1ed5cfd32b7a452a5f364b095
7878 Author: Keith Packard <keithp@keithp.com>
7879 Date:   Tue Jul 15 00:44:14 2014 -0700
7880
7881     linux-fat: Fix up fat linux install icons, mime types and .desktop files
7882     
7883     use the standard xdg utilities to install mime type and .desktop
7884     files. The standard xdg icon installer doesn't handle svg icons, so we
7885     have to do those manually.
7886     
7887     With this patch, xfce, gnome3 and kde4 all place the applications in
7888     user-visible menus, display correct file icons and launch correct
7889     applications for our file types.
7890     
7891     Signed-off-by: Keith Packard <keithp@keithp.com>
7892
7893 commit fb914d37018a585a879161483609d3c0be556d1e
7894 Author: Keith Packard <keithp@keithp.com>
7895 Date:   Mon Jul 14 02:32:03 2014 -0700
7896
7897     altosuilib: Fix minor scan UI nits
7898     
7899     Wasn't computing geometry correctly and overlapped the 2400 baud entry
7900     with the list of scan results.
7901     
7902     Was not saving the telemetry rate/telemetry style when switching to
7903     monitor mode, which caused the new monitor to come up with the wrong values.
7904     
7905     Signed-off-by: Keith Packard <keithp@keithp.com>
7906
7907 commit 54b58e925e27e87bf2903678f87b7544ee2e8167
7908 Author: Keith Packard <keithp@keithp.com>
7909 Date:   Mon Jul 14 00:46:41 2014 -0700
7910
7911     Set version to 1.4.9.2
7912
7913 commit 9e9151c3b4bb9ce329e1b44440a7aceb9f39b9a0
7914 Author: Keith Packard <keithp@keithp.com>
7915 Date:   Mon Jul 14 00:45:13 2014 -0700
7916
7917     altoslib: Parse eeprom 'altitude-32' fields
7918     
7919     This lets us tell if the altimeter supports 32-bit GPS altitudes in
7920     the eeprom log.
7921     
7922     Signed-off-by: Keith Packard <keithp@keithp.com>
7923
7924 commit 0fd867f504dd7df62e95da98ded511bb7b9e4c66
7925 Author: Keith Packard <keithp@keithp.com>
7926 Date:   Sun Jul 13 20:44:39 2014 -0700
7927
7928     altos/test: Build TeleMetrumV2 flight test variant
7929     
7930     Parses TeleMetrumV2 eeprom files and runs the TeleMetrumV2 flight code.
7931     
7932     Signed-off-by: Keith Packard <keithp@keithp.com>
7933
7934 commit 50aec54bdc35962145eff9b465f9cd7b3d9fea0b
7935 Author: Keith Packard <keithp@keithp.com>
7936 Date:   Sun Jul 13 20:43:27 2014 -0700
7937
7938     altos: Make ao_gps_print deal with telem containing 32-bit altitude values
7939     
7940     ao_gps_print is used with new telem packets from a few places; use
7941     AO_TELEMETRY_LOCATION_ALTITUDE when necessary.
7942     
7943     Signed-off-by: Keith Packard <keithp@keithp.com>
7944
7945 commit 6c3d09bf40f2af6e8722f33a70b41e5d94ceaf9f
7946 Author: Keith Packard <keithp@keithp.com>
7947 Date:   Sun Jul 13 20:42:41 2014 -0700
7948
7949     altos: Interrupt radio receive when changing data rate
7950     
7951     This aborts any pending radio receive when changing the data rate so
7952     that the radio can be reprogrammed to receive at the correct rate.
7953     
7954     Signed-off-by: Keith Packard <keithp@keithp.com>
7955
7956 commit 5d1adc6775a66633661af747bc4176e06f97630f
7957 Author: Keith Packard <keithp@keithp.com>
7958 Date:   Sun Jul 13 20:41:36 2014 -0700
7959
7960     ao-tools: Add a few GPS telem/eeprom constants
7961     
7962     These make it possible to encode/decode GPS data from telemetry and
7963     eeprom files
7964     
7965     Signed-off-by: Keith Packard <keithp@keithp.com>
7966
7967 commit 6c9daa4f471ac90ffce3bfe8876c9008f79a5b7f
7968 Author: Keith Packard <keithp@keithp.com>
7969 Date:   Sun Jul 13 20:40:40 2014 -0700
7970
7971     ao-tools: Provide altitude to temperature conversion function
7972     
7973     This takes altitude and computes the 'normal' temperature for
7974     that.
7975     
7976     Signed-off-by: Keith Packard <keithp@keithp.com>
7977
7978 commit e447e1e5c90d3fc1be9c5a1c966c7c688a87ba18
7979 Author: Keith Packard <keithp@keithp.com>
7980 Date:   Sun Jul 13 11:06:29 2014 -0700
7981
7982     ao-tools: Add TMv2 and Tgps log formats to cc.h
7983     
7984     Signed-off-by: Keith Packard <keithp@keithp.com>
7985
7986 commit a60ba449ec237ad3b8dade9dcea603b349dbccb1
7987 Author: Keith Packard <keithp@keithp.com>
7988 Date:   Sat Jul 12 23:52:05 2014 -0700
7989
7990     altos/telefire,telelco: Add HAS_RADIO_RATE to launch system software
7991     
7992     This lets us set the rate to a lower value to improve range. 9600 baud
7993     works great; 2400 baud makes the initial search take a long time.
7994     
7995     Signed-off-by: Keith Packard <keithp@keithp.com>
7996
7997 commit fa155693282746861b227afd6cbccc83dfd1bbed
7998 Author: Keith Packard <keithp@keithp.com>
7999 Date:   Thu Jul 10 21:27:30 2014 -0700
8000
8001     telegps: Missing function in TeleGPSConfigUI
8002     
8003     set_altitude_32 was added to the abstract class but not here.
8004     
8005     Signed-off-by: Keith Packard <keithp@keithp.com>
8006
8007 commit 405626971b47d4d4031312232bf13ad3d4bace7f
8008 Author: Keith Packard <keithp@keithp.com>
8009 Date:   Thu Jul 10 21:13:49 2014 -0700
8010
8011     libaltos: typo in libaltos broke the build
8012     
8013     When converting this to use dlopen, I mis-typed the name hci_read_remote_name
8014     
8015     Signed-off-by: Keith Packard <keithp@keithp.com>
8016
8017 commit 5f5b03879d9daa68a56498b45ae87a804cb1926b
8018 Author: Keith Packard <keithp@keithp.com>
8019 Date:   Thu Jul 10 18:43:31 2014 -0700
8020
8021     altosui: Don't show bluetooth UI bits on mac/windows
8022     
8023     This just confuses people into thinking that bluetooth is supported on
8024     those machines.
8025     
8026     Signed-off-by: Keith Packard <keithp@keithp.com>
8027
8028 commit aac3fdce54233993c91d326df3732a7c448ac54a
8029 Author: Keith Packard <keithp@keithp.com>
8030 Date:   Thu Jul 10 18:42:37 2014 -0700
8031
8032     libaltos: Bind to libbluetooth at runtime on demand
8033     
8034     This lets us reliably start and run without libbluetooth present.
8035     
8036     Signed-off-by: Keith Packard <keithp@keithp.com>
8037
8038 commit 59702e5ff8d0522b0aa9dcca863309eaafbcda09
8039 Author: Keith Packard <keithp@keithp.com>
8040 Date:   Thu Jul 10 17:27:43 2014 -0700
8041
8042     altoslib: Extend telemetry heights from 16 to 32 bits
8043     
8044     Uses the GPS data and/or previous kalman data to compute the upper 16
8045     bits of the truncated telemetry altitude value.
8046     
8047     Signed-off-by: Keith Packard <keithp@keithp.com>
8048
8049 commit 6dc58c63d202e918f16d5fbe9b188d422edcdd9c
8050 Author: Keith Packard <keithp@keithp.com>
8051 Date:   Thu Jul 10 17:26:19 2014 -0700
8052
8053     altosui: Fix the 'Graph' button on the landed tab
8054     
8055     It hasn't been getting enabled since the state tabs were rewritten.
8056     
8057     Signed-off-by: Keith Packard <keithp@keithp.com>
8058
8059 commit 013e9ccfbe76dc46e8c69ea314950bed83d9a39f
8060 Author: Keith Packard <keithp@keithp.com>
8061 Date:   Thu Jul 10 17:18:38 2014 -0700
8062
8063     altos: Use 32-bits for flight state data (alt/speed/accel)
8064     
8065     Stores 32-bits for all of the flight parameters. Uses 64-bit
8066     intermediates for kalman computation.
8067     
8068     Signed-off-by: Keith Packard <keithp@keithp.com>
8069
8070 commit 31ae24b5da3e198e7555ea3768d3cbdec3a28a5f
8071 Author: Keith Packard <keithp@keithp.com>
8072 Date:   Thu Jul 10 17:15:09 2014 -0700
8073
8074     altos: Record pdop value in TeleMetrumV2 log
8075     
8076     There's only one byte free, so we'll record the pdop value
8077     
8078     Signed-off-by: Keith Packard <keithp@keithp.com>
8079
8080 commit 47e62bb26984f6c84660c1d0451f77c2d6ad7e5a
8081 Author: Keith Packard <keithp@keithp.com>
8082 Date:   Thu Jul 10 17:13:09 2014 -0700
8083
8084     altos: Scale DOP values by 10 in GPS drivers
8085     
8086     sky traq was scaling by 5, ublox was scaling by 100.
8087     
8088     Signed-off-by: Keith Packard <keithp@keithp.com>
8089
8090 commit ed2a08c50d6b8ebcc8c1d2f15e73c1f2a1e25041
8091 Author: Keith Packard <keithp@keithp.com>
8092 Date:   Thu Jul 10 17:10:49 2014 -0700
8093
8094     altoslib: Handle wide GPS altitude values in eeprom and telemetry
8095     
8096     Detect when the wider data is present and handle it correctly
8097     
8098     Signed-off-by: Keith Packard <keithp@keithp.com>
8099
8100 commit 34d5be68ca23e8beb05db9a480faef63ecc911d0
8101 Author: Keith Packard <keithp@keithp.com>
8102 Date:   Thu Jul 10 17:07:48 2014 -0700
8103
8104     altos: Extend GPS altitudes to at least 24 bits everywhere
8105     
8106     Telemetry gets a special 'mode' flag indicating that 24-bit data is
8107     present; log files get new data and log readers are expected to detect
8108     that via the firmware version number.
8109     
8110     Signed-off-by: Keith Packard <keithp@keithp.com>
8111
8112 commit 0d044af0c5025a63026d05adcab68f265f179668
8113 Author: Keith Packard <keithp@keithp.com>
8114 Date:   Thu Jul 10 16:19:52 2014 -0700
8115
8116     altosuilib: Allow for unitless axes in graphs
8117     
8118     DOP values have no units.
8119     
8120     Signed-off-by: Keith Packard <keithp@keithp.com>
8121
8122 commit a2f44fa867b17a0f1c1ee9aa9b99ecaa102a361b
8123 Author: Keith Packard <keithp@keithp.com>
8124 Date:   Thu Jul 10 16:19:34 2014 -0700
8125
8126     altosuilib: Add GPS DOP values to info table
8127     
8128     Signed-off-by: Keith Packard <keithp@keithp.com>
8129
8130 commit 61cbad00b68d9f4f2fed7b76132433e263966952
8131 Author: Keith Packard <keithp@keithp.com>
8132 Date:   Thu Jul 10 16:19:17 2014 -0700
8133
8134     altosuilib: Add GPS DOP values to graph
8135     
8136     Signed-off-by: Keith Packard <keithp@keithp.com>
8137
8138 commit 9dafabd77676e08da4067cd405b6f03bf8d8ff85
8139 Author: Keith Packard <keithp@keithp.com>
8140 Date:   Thu Jul 10 16:17:56 2014 -0700
8141
8142     altoslib: Ensure CSV output is consistent
8143     
8144     Scan entire flight to figure out which columns to include before
8145     outputing header or data. Limit data output to values which are valid.
8146     
8147     Signed-off-by: Keith Packard <keithp@keithp.com>
8148
8149 commit b8fa4e9a077e8e04b922d0c434c139ad0a57ee66
8150 Author: Keith Packard <keithp@keithp.com>
8151 Date:   Thu Jul 10 16:15:52 2014 -0700
8152
8153     altoslib: Clean up GPS DOP support in AltosState
8154     
8155     Parse out hdop/pdop/vdop from telem and eeprom. Deal with legacy
8156     eeprom files that have dop/100 instead of dop/10 values.
8157     
8158     Clear state DOP values to MISSING at startup
8159     
8160     Signed-off-by: Keith Packard <keithp@keithp.com>
8161
8162 commit 6f2a4c610dfacbf500650db0eeeca6623bb49c5c
8163 Author: Keith Packard <keithp@keithp.com>
8164 Date:   Thu Jul 10 00:26:55 2014 -0700
8165
8166     micropeak/altosui/telegps: Fix icon file names
8167     
8168     The icon file names are now structured to have an organization name
8169     and application name component. This should avoid collisions with
8170     other packages when the icon files are installed in a shared
8171     directory, as on Linux. Within the Java .jar file, the new names need
8172     to be correctly referenced or we won't find them.
8173     
8174     Signed-off-by: Keith Packard <keithp@keithp.com>
8175
8176 commit 1684291ba9a4f3bc2828e7b079ac27efcba6a163
8177 Author: Keith Packard <keithp@keithp.com>
8178 Date:   Tue Jul 8 23:47:09 2014 -0700
8179
8180     altos/telemini-v2.0: Enable beep config and radio rate config
8181     
8182     use the smaller pa to altitude table to make room for the new code
8183     
8184     Signed-off-by: Keith Packard <keithp@keithp.com>
8185
8186 commit d926ccfbd4596eb3f981d2fcf8f6fc6ccc427db6
8187 Author: Keith Packard <keithp@keithp.com>
8188 Date:   Tue Jul 8 23:46:24 2014 -0700
8189
8190     altos: Add smaller pa to altitude table for TeleMini
8191     
8192     TeleMini doesn't have space for the larger table, and the smaller one
8193     isn't that much less accurate at lower altitudes.
8194     
8195     Signed-off-by: Keith Packard <keithp@keithp.com>
8196
8197 commit 1a55cbe1923280f7009c13d5eb5b2ccac89219c2
8198 Author: Keith Packard <keithp@keithp.com>
8199 Date:   Tue Jul 8 23:45:10 2014 -0700
8200
8201     altos/telemini-v2.0: Add memory decorations to new telemetry variables
8202     
8203     This lets TeleMini-v2.0 compile.
8204     
8205     Signed-off-by: Keith Packard <keithp@keithp.com>
8206
8207 commit 95f3a2825377bdb6737446df051c069d58f42d08
8208 Author: Keith Packard <keithp@keithp.com>
8209 Date:   Tue Jul 8 23:43:31 2014 -0700
8210
8211     altosui: Hide inactive altimeter configuration entries
8212     
8213     Instead of disabling them, just hide them so that entries that do not
8214     apply to a particular device won't get shown at all.
8215     
8216     Signed-off-by: Keith Packard <keithp@keithp.com>
8217
8218 commit 78db9e350db104da87e0fe4b72aa41bf6cf45e1d
8219 Author: Keith Packard <keithp@keithp.com>
8220 Date:   Sun Jul 6 20:10:21 2014 -0700
8221
8222     Bump version to 1.4.9.1 -- on the way to 1.5
8223
8224 commit d1527a5457210eb914312cf8857bfb88982a8462
8225 Author: Keith Packard <keithp@keithp.com>
8226 Date:   Sun Jul 6 12:35:13 2014 -0700
8227
8228     Add support for the "kite" micropeak variant
8229     
8230     This uses a 100m 'launch detect' altitude and logs data every 19.2s
8231     instead of every .192s.
8232     
8233     Signed-off-by: Keith Packard <keithp@keithp.com>
8234
8235 commit f02cc3eec53e9d703837dad55ec2e6625b192588
8236 Author: Keith Packard <keithp@keithp.com>
8237 Date:   Sat Jul 5 00:16:57 2014 -0700
8238
8239     telegps: Support variable telemetry rate
8240     
8241     Add combo box to monitoring window and device configuration.
8242     
8243     Signed-off-by: Keith Packard <keithp@keithp.com>
8244
8245 commit efb86669b5a74f244e2218f3385db633c36208af
8246 Author: Keith Packard <keithp@keithp.com>
8247 Date:   Fri Jul 4 23:41:16 2014 -0700
8248
8249     altosui: Support telemetry data rates
8250     
8251     Add combo box to flight UI and flight hardware configuration UIs
8252     Add telemetry rate to the TD/TBT config dialog
8253     
8254     Signed-off-by: Keith Packard <keithp@keithp.com>
8255
8256 commit 9557a24b02911a93d74ee29ce359e40266cb4fed
8257 Author: Keith Packard <keithp@keithp.com>
8258 Date:   Fri Jul 4 23:57:42 2014 -0700
8259
8260     altosuilib: Add telemetry rate to Scan UI
8261     
8262     Let the user scan for multiple data rates as well as telemetry formats
8263     and frequencies
8264     
8265     Signed-off-by: Keith Packard <keithp@keithp.com>
8266
8267 commit 55e6558fa7cb23fb1363a86c83fbd6abf67ea324
8268 Author: Keith Packard <keithp@keithp.com>
8269 Date:   Wed Jul 2 22:48:13 2014 -0700
8270
8271     altoslib: Support multiple telemetry rates
8272     
8273     Altos now supports 2400 and 9600 baud in addition to the classic 38400
8274     baud rate. Add support to altoslib for these as well
8275     
8276     Signed-off-by: Keith Packard <keithp@keithp.com>
8277
8278 commit 292cb8380b478542555b5f370e8252eafa2f74ac
8279 Author: Keith Packard <keithp@keithp.com>
8280 Date:   Sat Jul 5 00:04:06 2014 -0700
8281
8282     altos: Rework packet receive for cc1120
8283     
8284     Instead of blocking on PQT, just set up the receiver to start going
8285     and when the first bit interrupt comes in, grab the SPI bus if
8286     possible and configure it for reception. This improves sensitivity in
8287     the radio by a significant amount while making the code conceptually a
8288     bit nicer.
8289     
8290     Signed-off-by: Keith Packard <keithp@keithp.com>
8291
8292 commit e0ee2ac6bc68b73e13bf34fac3ffd4a3b79dce98
8293 Author: Keith Packard <keithp@keithp.com>
8294 Date:   Wed Jul 2 22:34:48 2014 -0700
8295
8296     altos: Add telemetry rate support to CC1120 driver
8297     
8298     This supports the new 2400 and 9600 baud rates
8299     
8300     Signed-off-by: Keith Packard <keithp@keithp.com>
8301
8302 commit 91461251f3aa8e1b37a3456f8fb94ab16bc0bec2
8303 Author: Keith Packard <keithp@keithp.com>
8304 Date:   Fri Jul 4 23:42:30 2014 -0700
8305
8306     altos: Packet reception tuning for cc1120 driver
8307     
8308     This adjusts the cc1120 receive parameters to increase sensitivity at
8309     the expense of reporting many more invalid packets to the UI.
8310     
8311     Signed-off-by: Keith Packard <keithp@keithp.com>
8312
8313 commit 8935e29e5aa9c01cd00b275a35dd7b99c00980c3
8314 Author: Keith Packard <keithp@keithp.com>
8315 Date:   Wed Jul 2 22:41:20 2014 -0700
8316
8317     altos: Add 2400 and 9600 baud telemetry support to cc115l driver
8318     
8319     Signed-off-by: Keith Packard <keithp@keithp.com>
8320
8321 commit aba1703a1cff3da001d64bf2d15a591816e3350e
8322 Author: Keith Packard <keithp@keithp.com>
8323 Date:   Wed Jul 2 22:31:59 2014 -0700
8324
8325     altos/cc1111: Add 2400 and 9600 baud telemetry rate support
8326     
8327     Signed-off-by: Keith Packard <keithp@keithp.com>
8328
8329 commit c20ddde2f9eb0ad8dbb982e9d0cbe91639160a34
8330 Author: Keith Packard <keithp@keithp.com>
8331 Date:   Wed Jul 2 22:30:23 2014 -0700
8332
8333     altos/cc1111: Adjust receive parameters to improve sensitivity
8334     
8335     This removes the packet quality test and carrier sense tests when
8336     deciding whether to start decoding a packet. This lets more bad
8337     packets through, but the CRC check catches those and now we're
8338     regularly receiving packets down to -110 or even -112 dBm. Before this
8339     change, we'd rarely see packets as low as -105dBm
8340     
8341     Signed-off-by: Keith Packard <keithp@keithp.com>
8342
8343 commit ea5887027e7a39da2b7d84a142d74950b7a24703
8344 Author: Keith Packard <keithp@keithp.com>
8345 Date:   Sat Jul 5 00:09:25 2014 -0700
8346
8347     altos: Call ao_telemetry_reset_interval when telemetry rate changes
8348     
8349     This lets the radio code adjust the telemetry packet sending pattern
8350     when the data rate changes.
8351     
8352     Signed-off-by: Keith Packard <keithp@keithp.com>
8353
8354 commit 214a38eb2b084baec526aa42016eddb954038639
8355 Author: Keith Packard <keithp@keithp.com>
8356 Date:   Wed Jul 2 22:44:07 2014 -0700
8357
8358     altos: Add config support for 2400 and 9600 baud telemetry rates
8359     
8360     Signed-off-by: Keith Packard <keithp@keithp.com>
8361
8362 commit 0605b5a1cdff5cfd71fc9ef3161a62d74a1124b4
8363 Author: Keith Packard <keithp@keithp.com>
8364 Date:   Wed Jul 2 22:42:10 2014 -0700
8365
8366     altos: Add defines for 2400 and 9600 baud telemetry rates
8367     
8368     Signed-off-by: Keith Packard <keithp@keithp.com>
8369
8370 commit f8567a7be7ccd5dcc57ab65e63efe45e62008127
8371 Author: Keith Packard <keithp@keithp.com>
8372 Date:   Fri Jul 4 23:26:57 2014 -0700
8373
8374     altos: Reduce configuration data telemetry to once per 5 seconds
8375     
8376     This data is constant, so we don't need to send it very often. Once
8377     every five seconds should be plenty.
8378     
8379     Signed-off-by: Keith Packard <keithp@keithp.com>
8380
8381 commit 657d455a2fad36193e6b3a7037d9ba7f09ae1168
8382 Author: Keith Packard <keithp@keithp.com>
8383 Date:   Wed Jul 2 22:46:07 2014 -0700
8384
8385     altos: Use TeleMetrum v1.9 board for MegaDongle experiments
8386     
8387     This configures the MegaDongle v0.1 directory to use the pin
8388     assignments in TeleMetrum v1.9 boards.
8389     
8390     Signed-off-by: Keith Packard <keithp@keithp.com>
8391
8392 commit 48508479b0f6f8d6e73db1cae8ee8acdaba022d8
8393 Author: Keith Packard <keithp@keithp.com>
8394 Date:   Wed Jul 2 22:45:01 2014 -0700
8395
8396     altos: Stop sticking cc1111 firmware in src directory
8397     
8398     This just clutters src.
8399     
8400     Signed-off-by: Keith Packard <keithp@keithp.com>
8401
8402 commit 500353ec83af0da7fce3d67f2707f4725b1f50ba
8403 Author: Keith Packard <keithp@keithp.com>
8404 Date:   Wed Jul 2 22:42:43 2014 -0700
8405
8406     altos: ao_rssi subsystem needs to use AO_LED_TYPE instead of uint8_t
8407     
8408     Signed-off-by: Keith Packard <keithp@keithp.com>
8409
8410 commit cb15cb8db5ef570b57f89d4e58734554542f99ff
8411 Author: Keith Packard <keithp@keithp.com>
8412 Date:   Fri Jul 4 23:22:20 2014 -0700
8413
8414     altosuilib: Remove debug printfs from map cache
8415     
8416     Just annoying
8417     
8418     Signed-off-by: Keith Packard <keithp@keithp.com>
8419
8420 commit 2e99ff2c99f5d4a2fa196507e794c690665ab39e
8421 Author: Keith Packard <keithp@keithp.com>
8422 Date:   Fri Jul 4 23:20:51 2014 -0700
8423
8424     altoslib: Preserve receiver_serial across state reset for new transmitter
8425     
8426     When the transmitter serial or flight number changes, we re-init the
8427     state information, but we want to preserve the receiver serial number
8428     so that the log file has that in the name
8429     
8430     Signed-off-by: Keith Packard <keithp@keithp.com>
8431
8432 commit d6e64790287d684cb9b70c67fa270825932cc020
8433 Author: Keith Packard <keithp@keithp.com>
8434 Date:   Wed Jun 25 13:50:54 2014 -0700
8435
8436     altoslib: Disable telemetry while getting config data
8437     
8438     We're seeing some log files created without a suitable -via- number
8439     included. My hypothesis is that incoming telemetry is getting
8440     interleaved with the configuration data containing the serial
8441     number. This change simply disables telemetry while retrieving the
8442     configuration data to try and keep that from happening.
8443     
8444     Signed-off-by: Keith Packard <keithp@keithp.com>
8445
8446 commit 98c3c3f7edd58358939f7dacf5b8f4c336712f5b
8447 Author: Keith Packard <keithp@keithp.com>
8448 Date:   Fri Jul 4 23:38:53 2014 -0700
8449
8450     altosui/telegps: Undo the frequency/telemetry menu changes
8451     
8452     Using menus for these items isn't what we want; we want to show the
8453     current value on the screen, which is what a combo box is for. Switch
8454     back to those and remove the frequency and telemetry config from the
8455     TeleGPS menu bar so that Mac OS X is happy.
8456     
8457     Signed-off-by: Keith Packard <keithp@keithp.com>
8458
8459 commit 505c6a1f8b8d68fe6f74dcb4428c860157fae3de
8460 Author: Bdale Garbee <bdale@gag.com>
8461 Date:   Wed Jun 25 13:37:56 2014 -0600
8462
8463     note need to push the updated repo with production binaries during release
8464
8465 commit 75db560e2c9fbb2889db507acc93e889bf15bc2a
8466 Author: Bdale Garbee <bdale@gag.com>
8467 Date:   Tue Jun 24 22:43:04 2014 -0600
8468
8469     Windows sucks, hard .. make sure filenames are legal in .mdwn files
8470
8471 commit 61ca8493566d5ea0da379970ab94f80a462dd368
8472 Author: Bdale Garbee <bdale@gag.com>
8473 Date:   Tue Jun 24 22:35:43 2014 -0600
8474
8475     update Releasing file based on learnings from 1.4.1 release
8476
8477 commit 424112349d54bb6360403683f8012b83f49220be
8478 Author: Keith Packard <keithp@keithp.com>
8479 Date:   Tue Jun 24 20:57:29 2014 -0700
8480
8481     telegps: Disable tracker config when not available
8482     
8483     Tracker motion and interval were both left enabled even when the
8484     device being configured didn't support them. Disable them like other
8485     elements.
8486     
8487     Signed-off-by: Keith Packard <keithp@keithp.com>
8488
8489 commit 7427f8bac7b3743ce0ab990612bf7168b95e22f9
8490 Author: Keith Packard <keithp@keithp.com>
8491 Date:   Tue Jun 24 20:52:34 2014 -0700
8492
8493     altosui: Don't show the tracker motion value when switching units
8494     
8495     The tracker value was left enabled when hidden; the logic for deciding
8496     whether to update it with new information used only the enabled state,
8497     not the visible state. Set both states when hiding it to keep things
8498     more consistent
8499     
8500     Signed-off-by: Keith Packard <keithp@keithp.com>
8501
8502 commit 6cb5955ab5aa3b42a507c4a02812cb5569b8562b
8503 Author: Keith Packard <keithp@keithp.com>
8504 Date:   Fri Jun 20 11:56:58 2014 -0700
8505
8506     Add note about including Google maps API key
8507     
8508     Signed-off-by: Keith Packard <keithp@keithp.com>
8509
8510 commit f95b0e03c75d09e8ff4dbf9083cd3c8a30fdc4e6
8511 Author: Keith Packard <keithp@keithp.com>
8512 Date:   Fri Jun 20 11:51:11 2014 -0700
8513
8514     Add 1.4.1 release notes
8515     
8516     Signed-off-by: Keith Packard <keithp@keithp.com>
8517
8518 commit b2c5f7d10265794a5778546f2e3eca7d763eab56
8519 Author: Keith Packard <keithp@keithp.com>
8520 Date:   Tue Jun 24 20:31:50 2014 -0700
8521
8522     Clean all .desktop files, ignore them too
8523     
8524     All .desktop files are built from .desktop.in files, so just remove
8525     all of them in make clean, and ignore all of them in .gitignore.
8526     This makes the rename less painful.
8527     
8528     Signed-off-by: Keith Packard <keithp@keithp.com>
8529
8530 commit d1065424d144b8dab949db7e57140ffdf244bd48
8531 Author: Bdale Garbee <bdale@gag.com>
8532 Date:   Tue Jun 24 21:22:26 2014 -0600
8533
8534     need the api key in Bdale's root too
8535
8536 commit bd440afc2a6e37b74fffcf1b977e149485095316
8537 Merge: 5d4f912 a0ccab8
8538 Author: Bdale Garbee <bdale@gag.com>
8539 Date:   Tue Jun 24 21:17:53 2014 -0600
8540
8541     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
8542
8543 commit a0ccab8e4235934538a03f8be3b37aa1bbd6b144
8544 Author: Keith Packard <keithp@keithp.com>
8545 Date:   Tue Jun 24 20:15:38 2014 -0700
8546
8547     altosuilib: Mark 'Configure AltosUI' window with maps key status
8548     
8549     This lets us check a build to make sure it has a maps key
8550     
8551     Signed-off-by: Keith Packard <keithp@keithp.com>
8552
8553 commit 5d4f912bcc6784f975c82f7b0ed8dc360e60aae8
8554 Author: Bdale Garbee <bdale@gag.com>
8555 Date:   Tue Jun 24 21:12:59 2014 -0600
8556
8557     make sure to use Google Maps API key for official builds
8558
8559 commit 048ce00ea0d1d2744552942559aa1da2431ab954
8560 Author: Keith Packard <keithp@keithp.com>
8561 Date:   Tue Jun 24 18:26:04 2014 -0700
8562
8563     icon: Generate altusmetrum.xpm and install it
8564     
8565     This is for the debian menu, still a required part of a debian package.
8566     
8567     Signed-off-by: Keith Packard <keithp@keithp.com>
8568
8569 commit dbff6dd42f8b6fb90c8d3f07bde48a6be0bfddf0
8570 Author: Keith Packard <keithp@keithp.com>
8571 Date:   Tue Jun 24 18:25:31 2014 -0700
8572
8573     altosuilib: Outline map lines and distance value with white
8574     
8575     This makes the value and line visible on dark backgrounds
8576     
8577     Signed-off-by: Keith Packard <keithp@keithp.com>
8578
8579 commit ade2cc9abb8ca403a9ae5d1f9c145ab72ce94919
8580 Author: Keith Packard <keithp@keithp.com>
8581 Date:   Tue Jun 24 18:24:02 2014 -0700
8582
8583     altosuilib: Make map cache size configurable
8584     
8585     Systems with sufficient memory can get smoother map scrolling by
8586     making the cache larger. Would be nice to do this automatically?
8587     
8588     Signed-off-by: Keith Packard <keithp@keithp.com>
8589
8590 commit 97269bb90c1602a1f8c54fc7b6c34383a0370621
8591 Author: Keith Packard <keithp@keithp.com>
8592 Date:   Tue Jun 24 15:58:35 2014 -0700
8593
8594     Bump version to 1.4.1.1
8595
8596 commit 309d91d25099bebda21e165165efa9ce86cb0a47
8597 Author: Keith Packard <keithp@keithp.com>
8598 Date:   Tue Jun 24 15:57:13 2014 -0700
8599
8600     altos/ao_flight_test: Get the Tmega version compiling again
8601     
8602     A few changes broke this recently.
8603     
8604     Signed-off-by: Keith Packard <keithp@keithp.com>
8605
8606 commit 443bbb09468df7c1a10f2c76996c92380d8b8c23
8607 Author: Keith Packard <keithp@keithp.com>
8608 Date:   Tue Jun 24 15:56:11 2014 -0700
8609
8610     altos: Add optional debugging to print out pyro firing status
8611     
8612     This dumps pyro check failures for ao_flight_test so you can see why
8613     pyro charges aren't firing.
8614     
8615     Signed-off-by: Keith Packard <keithp@keithp.com>
8616
8617 commit 0a19073649570016db28d5e2a4a225273732adb5
8618 Author: Keith Packard <keithp@keithp.com>
8619 Date:   Sun Jun 22 21:13:54 2014 -0700
8620
8621     ao-bringup: Use the C tools to test EasyMini
8622     
8623     I think my USB driver in the kernel is broken; the nickle versions of
8624     these  tools did very strange things and never worked.
8625     
8626     Signed-off-by: Keith Packard <keithp@keithp.com>
8627
8628 commit fc3364de2b6cdfff53f5c38b3ae52ae5601ff3b7
8629 Author: Keith Packard <keithp@keithp.com>
8630 Date:   Sun Jun 22 21:12:37 2014 -0700
8631
8632     ao-tools: Add ao-test-baro, ao-test-igniter and ao-test-flash
8633     
8634     C versions of the test programs used to validate hardware prior to ship
8635     
8636     Signed-off-by: Keith Packard <keithp@keithp.com>
8637
8638 commit 6cc2d671c0e335fbedb0e97699f8f273502c6807
8639 Author: Keith Packard <keithp@keithp.com>
8640 Date:   Sun Jun 22 21:06:24 2014 -0700
8641
8642     altosui/telegps: Expose configurable APRS SSID
8643     
8644     Signed-off-by: Keith Packard <keithp@keithp.com>
8645
8646 commit 3f3382126bf1122b1a78abe8458af5ec112a1f95
8647 Author: Keith Packard <keithp@keithp.com>
8648 Date:   Sun Jun 22 21:05:05 2014 -0700
8649
8650     altos: Make APRS SSID configurable
8651     
8652     This uses the low-digit from the serial number by default, but lets
8653     the user change it if desired.
8654     
8655     Signed-off-by: Keith Packard <keithp@keithp.com>
8656
8657 commit ca1c62ca3ea016a1a5baa4520e484c102280c3e3
8658 Author: Keith Packard <keithp@keithp.com>
8659 Date:   Sat Jun 21 18:27:42 2014 -0700
8660
8661     altosui: Add Ignitor tab to Monitor Idle mode
8662     
8663     Oops; missed adding this when I included it in the Monitor Flight window.
8664     
8665     Signed-off-by: Keith Packard <keithp@keithp.com>
8666
8667 commit 602d6a2424a5c16e22febf6b4e6b3816022261c7
8668 Author: Keith Packard <keithp@keithp.com>
8669 Date:   Fri Jun 20 00:41:17 2014 -0700
8670
8671     altos/aprs: Encode last serial number in SSID. Transmit serial in comment
8672     
8673     This makes it a lot easier to tell which device is sending
8674     information, and to receive data from multiple devices on the same
8675     receiver.
8676     
8677     Signed-off-by: Keith Packard <keithp@keithp.com>
8678
8679 commit 3016ee5f21ec66bf9230b90ab1420b8fad628f8d
8680 Author: Keith Packard <keithp@keithp.com>
8681 Date:   Fri Jun 20 00:40:10 2014 -0700
8682
8683     altosuilib: Wrap radio frequency menu in JMenuBar when used in config
8684     
8685     The device config dialogs place the radio frequency menu inside a
8686     dialog box; it needs to be inside a MenuBar to work properly, so
8687     create one to hold it.
8688     
8689     Signed-off-by: Keith Packard <keithp@keithp.com>
8690
8691 commit 1b0f56ddb2b85b68232c22a7a8b8744cb9ad76f9
8692 Author: Keith Packard <keithp@keithp.com>
8693 Date:   Thu Jun 19 14:33:27 2014 -0700
8694
8695     Rename icon files to fit XDG specifications. Add file icons. Add mime types
8696     
8697     Our SVG icons now follow XDG standards by including a vendor
8698     prefix. The new file type icons include application-vnd.altusmetrum as
8699     a prefix so that they match the mime types declared.
8700     
8701     Signed-off-by: Keith Packard <keithp@keithp.com>
8702
8703 commit 37856672c57f2fd91184c2391a201bbbdc48545e
8704 Author: Keith Packard <keithp@keithp.com>
8705 Date:   Thu Jun 19 10:25:07 2014 -0700
8706
8707     linux: .desktop files must begin with organization name
8708     
8709     The spec requires that .desktop files start with the organization
8710     name, so I've renamed all of them to altusmetrum-<application>.desktop
8711     
8712     Signed-off-by: Keith Packard <keithp@keithp.com>
8713
8714 commit 1d773cb8921848c99f12b8cd9840cb0267b66e1f
8715 Author: Keith Packard <keithp@keithp.com>
8716 Date:   Wed Jun 18 20:35:12 2014 -0700
8717
8718     windows: Missed adding 'refresh-sh.nsh'
8719     
8720     This script forces windows explorer to reload icons.
8721     
8722     Signed-off-by: Keith Packard <keithp@keithp.com>
8723
8724 commit 7767a045d446ea2bc5fe1ec98d89274155f956c4
8725 Author: Keith Packard <keithp@keithp.com>
8726 Date:   Wed Jun 18 16:18:05 2014 -0700
8727
8728     macosx: Respond to apple messages in all apps
8729     
8730     This connects the callbacks in AltosUIFrame to actually do something
8731     useful with them.
8732     
8733     Signed-off-by: Keith Packard <keithp@keithp.com>
8734
8735 commit d5bdb1c5974788b9569897435808fd01b04b0c4d
8736 Author: Keith Packard <keithp@keithp.com>
8737 Date:   Wed Jun 18 16:14:44 2014 -0700
8738
8739     altosuilib: Hook up apple messages to callbacks
8740     
8741     This supports open, quit and preferences. I'm leaving 'about' to the
8742     existing stuff until I decide it's worth the effort to create a fancy
8743     about dialog.
8744     
8745     Signed-off-by: Keith Packard <keithp@keithp.com>
8746
8747 commit e3eab18682e77c5394918448409d383a28ba23ad
8748 Author: Keith Packard <keithp@keithp.com>
8749 Date:   Wed Jun 18 14:16:36 2014 -0700
8750
8751     altosui: Ship TeleMetrum v2.0 firmware with AltosUI
8752     
8753     Signed-off-by: Keith Packard <keithp@keithp.com>
8754
8755 commit fac94c593285eacda57de257fa2be0548341b567
8756 Author: Keith Packard <keithp@keithp.com>
8757 Date:   Wed Jun 18 14:15:27 2014 -0700
8758
8759     macosx: Define icons for our file types on OS X
8760     
8761     Adds definitions to the Info.plist files shipped to specify which
8762     icons to show for .telem, .eeprom and .mpd files. Note that the
8763     applications don't respond to open apple events, so double clicking on
8764     a file only starts the application.
8765     
8766     Signed-off-by: Keith Packard <keithp@keithp.com>
8767
8768 commit 5871225a0c442cf5afa41a444ff8bfb8f4002721
8769 Author: Keith Packard <keithp@keithp.com>
8770 Date:   Wed Jun 18 02:16:51 2014 -0700
8771
8772     windows installer: Create file associations for Windows.
8773     
8774     This makes icons appear for the files in the file manager, and lets
8775     you double-click on the files to open the appropriate application.
8776     
8777     Signed-off-by: Keith Packard <keithp@keithp.com>
8778
8779 commit c93c4efefee0dbf6d193466efd6761d9a1849ae9
8780 Author: Keith Packard <keithp@keithp.com>
8781 Date:   Wed Jun 18 02:15:04 2014 -0700
8782
8783     icon: Construct .exe files to hold windows icons for file associations
8784     
8785     It appears that creating an executable with an icon resource is the
8786     only way to display icons for files. Fortunately, that's not all that
8787     hard.
8788     
8789     Signed-off-by: Keith Packard <keithp@keithp.com>
8790
8791 commit 3f4e765c05ddbae83ca0c0176572cd698f285d08
8792 Author: Keith Packard <keithp@keithp.com>
8793 Date:   Tue Jun 17 20:46:33 2014 -0700
8794
8795     Fix java version detection and downloading
8796     
8797     Move java stuff to a common include file, java.nsh
8798     
8799     Let any version no older than 1.6 serve by using ${VersionCompare}
8800     
8801     Use version 6 downloads as those don't require a click-through agreement.
8802     
8803     Signed-off-by: Keith Packard <keithp@keithp.com>
8804
8805 commit 495e84540943cccb6d1cb965a772021f7dc5f639
8806 Author: Keith Packard <keithp@keithp.com>
8807 Date:   Tue Jun 17 00:08:03 2014 -0700
8808
8809     Sign our .inf file with the comodo key. Update signing-driver
8810     
8811     I've tested this on Windows 7 and it appears to work. No idea if it
8812     works on Windows 8 yet.
8813     
8814     Signed-off-by: Keith Packard <keithp@keithp.com>
8815
8816 commit b397e4ff45f054acb1347ffa5468950febc431f7
8817 Author: Keith Packard <keithp@keithp.com>
8818 Date:   Mon Jun 16 23:03:49 2014 -0700
8819
8820     altos/micropeak: Add load script template
8821     
8822     Signed-off-by: Keith Packard <keithp@keithp.com>
8823
8824 commit c8078d352a7f54a4a97d25af080155d3f875536a
8825 Author: Keith Packard <keithp@keithp.com>
8826 Date:   Mon Jun 16 22:49:34 2014 -0700
8827
8828     java: Bump java library versions for next release
8829     
8830     Prepare for future release by bumping java versions now
8831     
8832     Signed-off-by: Keith Packard <keithp@keithp.com>
8833
8834 commit 75766b0e7ee30fb3bfbf90ecb68f7758bac6eeba
8835 Author: Keith Packard <keithp@keithp.com>
8836 Date:   Mon Jun 16 22:48:25 2014 -0700
8837
8838     altosui: Fix ground station configure frequency list
8839     
8840     Fix the API to match the switch to a menu, wrap in a menu bar to make
8841     it work.
8842     
8843     Signed-off-by: Keith Packard <keithp@keithp.com>
8844
8845 commit ed38b1b596062b2232fa78a3181f6eaf5818b651
8846 Author: Keith Packard <keithp@keithp.com>
8847 Date:   Mon Jun 16 21:58:13 2014 -0700
8848
8849     altosuilib: Move menu bars into the Mac OS X top bar
8850     
8851     Setting these properties causes the top menu bar to get placed into
8852     the Mac OS X window system menu bar
8853     
8854     Signed-off-by: Keith Packard <keithp@keithp.com>
8855
8856 commit e612693e33ef3b0e22db0656792992fa6e961ff2
8857 Author: Keith Packard <keithp@keithp.com>
8858 Date:   Mon Jun 16 21:57:35 2014 -0700
8859
8860     altosui/telegps: Use menus for frequency list and telemetry formats
8861     
8862     This will let us move them into the Mac OS X menu bar, as well as
8863     making them look a bit nicer.
8864     
8865     Signed-off-by: Keith Packard <keithp@keithp.com>
8866
8867 commit 6579e4cae8fea65780f1c4677f29c1fc17ca41e2
8868 Author: Keith Packard <keithp@keithp.com>
8869 Date:   Mon Jun 16 15:59:09 2014 -0700
8870
8871     altos/micropeak: Create a script to load firmware.
8872     
8873     The micropeak-load script flashes micropeak with firmware from
8874     whatever directory it is sitting in. A 'publish' target in the source
8875     directory copies the script and hex to ~/altusmetrumllc/Binaries
8876     
8877     Signed-off-by: Keith Packard <keithp@keithp.com>
8878
8879 commit 31beeb0882d27cbc05e28118611feec4ae43d9da
8880 Author: Keith Packard <keithp@keithp.com>
8881 Date:   Mon Jun 16 11:02:49 2014 -0700
8882
8883     doc: Add instructions for flash recovery technique
8884     
8885     The flash recovery section explained which pins to connect, but lacked
8886     explicit instructions on how to make it work.
8887
8888 commit f167d348b147e89d269ad35806e39f28cf104afb
8889 Author: Bdale Garbee <bdale@gag.com>
8890 Date:   Sun Jun 15 18:41:25 2014 -0600
8891
8892     notes updated for TeleGPS and 1.4 release learnings
8893
8894 commit 9ab3a1de95b705783c31a7e16447f52c10b6b480
8895 Author: Bdale Garbee <bdale@gag.com>
8896 Date:   Sun Jun 15 17:44:42 2014 -0600
8897
8898     turn-on support for TeleGPS
8899
8900 commit b40351d5cb9802133f443d4f5150958b03b9e8f0
8901 Author: Bdale Garbee <bdale@gag.com>
8902 Date:   Sun Jun 15 17:43:50 2014 -0600
8903
8904     tagging 1.4 release
8905
8906 commit 97a7cbaee806965ca7c696fb02f6e1d24b026b9b
8907 Author: Bdale Garbee <bdale@gag.com>
8908 Date:   Sun Jun 15 17:43:06 2014 -0600
8909
8910     add release to revision history
8911
8912 commit 79c3dc334d79eacd63bbbbec046fc2c31266560c
8913 Author: Bdale Garbee <bdale@gag.com>
8914 Date:   Sun Jun 15 17:40:27 2014 -0600
8915
8916     tweaks
8917
8918 commit a6c61fb993d3fd15183f8755d9058f05c606c9c0
8919 Merge: 0634119 4384899
8920 Author: Keith Packard <keithp@keithp.com>
8921 Date:   Sun Jun 15 16:31:01 2014 -0700
8922
8923     Merge remote-tracking branch 'origin/master'
8924
8925 commit 0634119df45bf8d8a040b47bdfc6d9801b5e069a
8926 Author: Keith Packard <keithp@keithp.com>
8927 Date:   Sun Jun 15 16:24:28 2014 -0700
8928
8929     micropeak: Deal with 64-bit windows
8930     
8931     Install 64-bit version of java. Install our bits in the 64-bit app directory
8932     
8933     Signed-off-by: Keith Packard <keithp@keithp.com>
8934
8935 commit b6eb1ac1b777b6c11e8f24c5ab5915b224101d40
8936 Author: Keith Packard <keithp@keithp.com>
8937 Date:   Sun Jun 15 16:16:59 2014 -0700
8938
8939     Add notes about windows driver signing in the 'signing-driver' file
8940     
8941     Signed-off-by: Keith Packard <keithp@keithp.com>
8942
8943 commit 6277827520df4df5ecda58898e5f99035f90282c
8944 Author: Keith Packard <keithp@keithp.com>
8945 Date:   Sun Jun 15 16:11:49 2014 -0700
8946
8947     altosui: Ship telegps firmware
8948     
8949     Signed-off-by: Keith Packard <keithp@keithp.com>
8950
8951 commit 3b5651d311d4268a130996e71afc11b508e59637
8952 Author: Keith Packard <keithp@keithp.com>
8953 Date:   Sun Jun 15 16:10:15 2014 -0700
8954
8955     windows: Sign altusmetrum.inf with altusmetrum.cat
8956     
8957     This .cat file will need to be updated when we get our 'real'
8958     signature.
8959     
8960     Signed-off-by: Keith Packard <keithp@keithp.com>
8961
8962 commit ef6998c2d052bf639f257b71baefacf3a652506f
8963 Author: Keith Packard <keithp@keithp.com>
8964 Date:   Sun Jun 15 16:06:42 2014 -0700
8965
8966     icon: Add drop-shadows to the SVG files; stop generating in the png versions
8967     
8968     Now everyone gets drop shadows.
8969     
8970     Signed-off-by: Keith Packard <keithp@keithp.com>
8971
8972 commit 43848991defaeb7fae994101675b0056f9d9a2ed
8973 Author: Bdale Garbee <bdale@gag.com>
8974 Date:   Sun Jun 15 17:29:49 2014 -0600
8975
8976     update Releasing document to include TeleGPS firmware files in those copied
8977
8978 commit 90e03dfc8534fc4fc25f6a5ee9ec109b98baa238
8979 Author: Bdale Garbee <bdale@gag.com>
8980 Date:   Sun Jun 15 17:28:02 2014 -0600
8981
8982     document mounting hole size for TeleGPS
8983
8984 commit 44fc36b3f74386f0055eac4d9b9d201e6fff0847
8985 Author: Keith Packard <keithp@keithp.com>
8986 Date:   Sun Jun 15 16:08:27 2014 -0700
8987
8988     altosui: Deal with 64-bit windows
8989     
8990     Get a 64-bit java version installed
8991     
8992     Signed-off-by: Keith Packard <keithp@keithp.com>
8993
8994 commit 1a563026409ccff5dea6f89e567accb09bc4b5f6
8995 Author: Keith Packard <keithp@keithp.com>
8996 Date:   Sun Jun 15 14:09:09 2014 -0700
8997
8998     telegps: Deal with 64-bit windows differently on install
8999     
9000     Download a 64-bit version of java as needed, install in 64-bit paths
9001     instead of 32-bit paths.
9002     
9003     Signed-off-by: Keith Packard <keithp@keithp.com>
9004
9005 commit abf731b3d79b66d9da62496cebf157f2888a4c93
9006 Author: Keith Packard <keithp@keithp.com>
9007 Date:   Sun Jun 15 12:39:49 2014 -0700
9008
9009     windows: Rename telemetrum.inf to altusmetrum.inf
9010     
9011     Use the corporate name for this file
9012     
9013     Signed-off-by: Keith Packard <keithp@keithp.com>
9014
9015 commit 8073007292875169a6304824ae52039ce6564813
9016 Author: Keith Packard <keithp@keithp.com>
9017 Date:   Sat Jun 14 22:29:01 2014 -0700
9018
9019     telegps: Include telegps firmware in windows package
9020     
9021     This was disabled when the firmware wasn't ready yet
9022     
9023     Signed-off-by: Keith Packard <keithp@keithp.com>
9024
9025 commit 6cad0b783f654864f0d6d8726c74605f108db3e0
9026 Author: Keith Packard <keithp@keithp.com>
9027 Date:   Sat Jun 14 22:23:10 2014 -0700
9028
9029     altosuilib: Remove some debugging printfs
9030     
9031     Signed-off-by: Keith Packard <keithp@keithp.com>
9032
9033 commit 823ef386f9dc5c5df197936f4254921f2e0282b0
9034 Author: Keith Packard <keithp@keithp.com>
9035 Date:   Sat Jun 14 20:08:40 2014 -0700
9036
9037     altoslib: AltosFlightStatsTable: another editable text field that shouldn't be
9038     
9039     Signed-off-by: Keith Packard <keithp@keithp.com>
9040
9041 commit 5392ee3c5328f8384ed30a2d147e4be96075e064
9042 Author: Keith Packard <keithp@keithp.com>
9043 Date:   Sat Jun 14 18:51:25 2014 -0700
9044
9045     altosuilib: Serialize access to async tile notify function in preload
9046     
9047     This ensures that we see each tile getting downloaded and don't
9048     mis-count, which would result in wedging the process
9049     
9050     Signed-off-by: Keith Packard <keithp@keithp.com>
9051
9052 commit 23708b4760250f55e8e3b1a0141df9a9ee17a936
9053 Author: Keith Packard <keithp@keithp.com>
9054 Date:   Sat Jun 14 18:34:09 2014 -0700
9055
9056     icon: Make the icon shadows a bit less harsh
9057     
9058     Signed-off-by: Keith Packard <keithp@keithp.com>
9059
9060 commit 4e3318645d08dda483aced97450b344629902c4d
9061 Author: Keith Packard <keithp@keithp.com>
9062 Date:   Sat Jun 14 18:11:28 2014 -0700
9063
9064     debian: Build requires /usr/bin/convert now
9065     
9066     This is provided by either graphicsmagick or imagemagick
9067     
9068     Signed-off-by: Keith Packard <keithp@keithp.com>
9069
9070 commit 382e27de3472489f8f26c8c0868732d67754ecf5
9071 Author: Keith Packard <keithp@keithp.com>
9072 Date:   Sat Jun 14 18:09:31 2014 -0700
9073
9074     telegps/micropeak: Ship built Mac OSX icons
9075     
9076     Signed-off-by: Keith Packard <keithp@keithp.com>
9077
9078 commit 33da986161c38936cff82fe43046f0bcd5e24d8e
9079 Author: Keith Packard <keithp@keithp.com>
9080 Date:   Sat Jun 14 18:07:39 2014 -0700
9081
9082     icon: Build resolutions needed for Java bits too
9083     
9084     Signed-off-by: Keith Packard <keithp@keithp.com>
9085
9086 commit 66c4a091bb6a294f9d406e75f3634492c886d139
9087 Author: Keith Packard <keithp@keithp.com>
9088 Date:   Sat Jun 14 18:06:36 2014 -0700
9089
9090     altosui: Build MacOSX icon from svg
9091     
9092     Signed-off-by: Keith Packard <keithp@keithp.com>
9093
9094 commit b825ea71ebcc4a8da3e339ab3e21b0ad47f2e48f
9095 Author: Keith Packard <keithp@keithp.com>
9096 Date:   Sat Jun 14 18:02:51 2014 -0700
9097
9098     icon: Build windows ico files, clean built files
9099     
9100     Signed-off-by: Keith Packard <keithp@keithp.com>
9101
9102 commit 4ec960b705b87b15d015abb2a9a3e23eee414f1d
9103 Author: Keith Packard <keithp@keithp.com>
9104 Date:   Sat Jun 14 17:51:46 2014 -0700
9105
9106     icon: Create all icons from .svg files
9107     
9108     Remove images from repository, leaving only the svg files and build
9109     instructions
9110     
9111     Signed-off-by: Keith Packard <keithp@keithp.com>
9112
9113 commit 951fda701ed31f4d8390c130215597e8f63e837e
9114 Author: Keith Packard <keithp@keithp.com>
9115 Date:   Sat Jun 14 16:26:22 2014 -0700
9116
9117     altosuilib: Make graph enable buttons be CheckBoxes instead of RadioButtons
9118     
9119     aj noticed.
9120     
9121     Signed-off-by: Keith Packard <keithp@keithp.com>
9122
9123 commit 8e00f59be582de86cef28b33ce5523f39d3dc933
9124 Author: Keith Packard <keithp@keithp.com>
9125 Date:   Sat Jun 14 16:05:51 2014 -0700
9126
9127     telegps: Fix Mac icon file name
9128     
9129     Signed-off-by: Keith Packard <keithp@keithp.com>
9130
9131 commit 92943bf4536d4167edd097e61de5e6b4f29130f8
9132 Author: Keith Packard <keithp@keithp.com>
9133 Date:   Sat Jun 14 15:44:20 2014 -0700
9134
9135     micropeak: Make statistics entries un-editable
9136     
9137     Otherwise you can actually type in the various fields.x
9138     
9139     Signed-off-by: Keith Packard <keithp@keithp.com>
9140
9141 commit 1fc3032d688cbb7c09c1dffde30cc815f3594e29
9142 Author: Keith Packard <keithp@keithp.com>
9143 Date:   Sat Jun 14 15:20:07 2014 -0700
9144
9145     alotsuilib: Remove old "mega" and "mini" file extensions from data chooser
9146     
9147     We never shipped AltosUI which stored mega/mini files in different extensions
9148     
9149     Signed-off-by: Keith Packard <keithp@keithp.com>
9150
9151 commit c11b2f5caa3fbe2bc977e716ec1c3ccee9e75884
9152 Author: Keith Packard <keithp@keithp.com>
9153 Date:   Sat Jun 14 14:41:13 2014 -0700
9154
9155     altosui/telegps: Switch to AltosUIIndicator and AltosUIFlightTab
9156     
9157     Removes replicated code across all flight tabs
9158     
9159     Signed-off-by: Keith Packard <keithp@keithp.com>
9160
9161 commit f5887a3e7cf993e23dbb1e0f6b9ebece78c34413
9162 Author: Keith Packard <keithp@keithp.com>
9163 Date:   Sat Jun 14 14:40:24 2014 -0700
9164
9165     altosuilib: Add AltosUIFlightTab class
9166     
9167     This covers most of the common functions for all flight status display tabs.
9168     
9169     Signed-off-by: Keith Packard <keithp@keithp.com>
9170
9171 commit 8250777e6e869bcee9781691caa1f2a7cfb33b43
9172 Author: Keith Packard <keithp@keithp.com>
9173 Date:   Sat Jun 14 14:39:26 2014 -0700
9174
9175     altosuilib: Add more options to AltosUIIndicator to suit AltosUI
9176     
9177     This makes AltosUIIndicator capable of displaying most stuff in AltosUI
9178     
9179     Signed-off-by: Keith Packard <keithp@keithp.com>
9180
9181 commit 19273a4a341342ca6b5d65cfc490d92cbf23356f
9182 Author: Keith Packard <keithp@keithp.com>
9183 Date:   Sat Jun 14 14:38:00 2014 -0700
9184
9185     altosuilib: Make sure only one thread is closing serial device
9186     
9187     Multiple closers can cause a crash by freeing the libaltos device twice
9188     
9189     Signed-off-by: Keith Packard <keithp@keithp.com>
9190
9191 commit 2903f0911e79e381c6125022bb84096321c258eb
9192 Author: Keith Packard <keithp@keithp.com>
9193 Date:   Sat Jun 14 14:37:35 2014 -0700
9194
9195     altosuilib: provide getName() for AltosInfoTable
9196     
9197     Signed-off-by: Keith Packard <keithp@keithp.com>
9198
9199 commit 242e968a6982f2ceaa79780cbeec8c4e21321b44
9200 Author: Keith Packard <keithp@keithp.com>
9201 Date:   Sat Jun 14 14:36:49 2014 -0700
9202
9203     altosuilib: In graph, show zero sats in view as 0 instead of MISSING
9204     
9205     Signed-off-by: Keith Packard <keithp@keithp.com>
9206
9207 commit c7553c54765dcc9ac532fe52aae9594b2ad5e560
9208 Author: Keith Packard <keithp@keithp.com>
9209 Date:   Sat Jun 14 14:36:11 2014 -0700
9210
9211     altosuilib: Require all flight display classes to provide a name
9212     
9213     Signed-off-by: Keith Packard <keithp@keithp.com>
9214
9215 commit 14f0faae48849ff6f1e326a294b54c504c730bb9
9216 Author: Keith Packard <keithp@keithp.com>
9217 Date:   Sat Jun 14 14:34:59 2014 -0700
9218
9219     altoslib: When GPS disappears, set range and elevation to MISSING
9220     
9221     Use MISSING instead of bogus values so that displayers can tell what
9222     to do.
9223     
9224     Signed-off-by: Keith Packard <keithp@keithp.com>
9225
9226 commit 451950bba9ee3b25b5d0c6e5f0b55f08a5b29f73
9227 Author: Keith Packard <keithp@keithp.com>
9228 Date:   Sat Jun 14 14:33:58 2014 -0700
9229
9230     altoslib: Add units converters for latitude and longitude
9231     
9232     Makes display of these values consistent across all instances
9233     
9234     Signed-off-by: Keith Packard <keithp@keithp.com>
9235
9236 commit ae7084f5199318dc6582e212492a50cfda1cebb8
9237 Author: Keith Packard <keithp@keithp.com>
9238 Date:   Fri Jun 13 22:36:00 2014 -0700
9239
9240     doc: TeleGPS docs are complete
9241     
9242     All TeleGPS features should now be documented to some degree
9243     
9244     Signed-off-by: Keith Packard <keithp@keithp.com>
9245
9246 commit bfbabfa60f3cedd994f693867bce56aad05be02a
9247 Author: Keith Packard <keithp@keithp.com>
9248 Date:   Fri Jun 13 22:04:57 2014 -0700
9249
9250     telegps: Allow TeleGPS preferences to have a custom title and label
9251     
9252     Don't just inherit the AltosUI ones
9253     
9254     Signed-off-by: Keith Packard <keithp@keithp.com>
9255
9256 commit 536db8d03aedb45698c42418c50a46d609fc98ad
9257 Author: Keith Packard <keithp@keithp.com>
9258 Date:   Fri Jun 13 22:04:35 2014 -0700
9259
9260     doc: Add a bunch more stuff to the telegps docs
9261     
9262     Signed-off-by: Keith Packard <keithp@keithp.com>
9263
9264 commit 9a6a3c34293eac6442f766e13ce148f595e891eb
9265 Author: Keith Packard <keithp@keithp.com>
9266 Date:   Fri Jun 13 21:26:33 2014 -0700
9267
9268     altosuilib: Make map-cache per-window instead of global
9269     
9270     This consumes more memory, but avoids cache conflicts between windows
9271     
9272     Signed-off-by: Keith Packard <keithp@keithp.com>
9273
9274 commit 92895c87bc3d97bf4990f1feda0bd8b07da4c405
9275 Author: Keith Packard <keithp@keithp.com>
9276 Date:   Fri Jun 13 21:25:41 2014 -0700
9277
9278     telegps: Shuffle menu entries around
9279     
9280     I think this makes them a bit more logical
9281     
9282     Signed-off-by: Keith Packard <keithp@keithp.com>
9283
9284 commit fb2d0c1ef98d9df3f64fb756d78392ce63a73435
9285 Author: Keith Packard <keithp@keithp.com>
9286 Date:   Fri Jun 13 15:54:08 2014 -0700
9287
9288     altosdroid: Improve voice for TeleGPS
9289     
9290     This avoids making lots of useless voice announcements for TeleGPS
9291     
9292     Signed-off-by: Keith Packard <keithp@keithp.com>
9293
9294 commit 191ea4a7bbcb22d70c648a9ba746f1061e6f74cb
9295 Author: Keith Packard <keithp@keithp.com>
9296 Date:   Fri Jun 13 15:53:30 2014 -0700
9297
9298     altosdroid: Don't crash when the map is touched
9299     
9300     The map 'canScroll' method was crashing when dereferencing a null
9301     value somewhere. Just check all of them and bail instead of crashing.
9302     
9303     Signed-off-by: Keith Packard <keithp@keithp.com>
9304
9305 commit 3f7e885055f8a97f334e0cd3163b760b174114b6
9306 Author: Keith Packard <keithp@keithp.com>
9307 Date:   Fri Jun 13 15:23:30 2014 -0700
9308
9309     telegps: Add status tab
9310     
9311     This includes pad-relative information, battery voltage and version information
9312     
9313     Signed-off-by: Keith Packard <keithp@keithp.com>
9314
9315 commit 876acbdc22ff93c22836f789e0b6394eb19e0da3
9316 Author: Keith Packard <keithp@keithp.com>
9317 Date:   Fri Jun 13 15:22:25 2014 -0700
9318
9319     altoslib: Correctly save firmware version in AltosState
9320     
9321     It wasn't getting cloned
9322     
9323     Signed-off-by: Keith Packard <keithp@keithp.com>
9324
9325 commit 3bfba8f9dbc1627a317804713f83b9d06566d008
9326 Author: Keith Packard <keithp@keithp.com>
9327 Date:   Fri Jun 13 15:21:28 2014 -0700
9328
9329     altoslib: Add conversion class for voltages
9330     
9331     Provide a common presentation for voltage values
9332     
9333     Signed-off-by: Keith Packard <keithp@keithp.com>
9334
9335 commit 7ed63b6c3d5878a59f52f4114b5b01942735805f
9336 Author: Keith Packard <keithp@keithp.com>
9337 Date:   Fri Jun 13 15:20:20 2014 -0700
9338
9339     altosuilib: Build some common classes for displaying values in flight window
9340     
9341     Right now, all of the flight displays have piles of custom code for
9342     displaying values. These new widgets should be able to replace most of
9343     that.
9344     
9345     Signed-off-by: Keith Packard <keithp@keithp.com>
9346
9347 commit a21dbb05fad2625d17bc2302faa96dc295e6ed7c
9348 Author: Keith Packard <keithp@keithp.com>
9349 Date:   Fri Jun 13 00:28:38 2014 -0700
9350
9351     telegps: Show flight number in monitor window
9352     
9353     This lets the user find the flight by number
9354     
9355     Signed-off-by: Keith Packard <keithp@keithp.com>
9356
9357 commit 8cb41ce9a64029b611b3595c86a4a8e74b952ff4
9358 Author: Keith Packard <keithp@keithp.com>
9359 Date:   Fri Jun 13 00:28:09 2014 -0700
9360
9361     telegps: Disconnect telemetry device when closing monitor window
9362     
9363     Signed-off-by: Keith Packard <keithp@keithp.com>
9364
9365 commit fd9ae83492648c5d39f60bdcff15481efb365701
9366 Author: Keith Packard <keithp@keithp.com>
9367 Date:   Fri Jun 13 00:27:19 2014 -0700
9368
9369     altoslib: Remove telem monitoring when closing log file
9370     
9371     If we don't remove the telemetry monitor, the telemetry device will
9372     still be sending telemetry, which isn't good.
9373     
9374     Signed-off-by: Keith Packard <keithp@keithp.com>
9375
9376 commit 07baa7596b36cf808cd1ee26ff158b1cf8585294
9377 Author: Keith Packard <keithp@keithp.com>
9378 Date:   Fri Jun 13 00:01:46 2014 -0700
9379
9380     altoslib: Call state.set_serial first for telemetry parsing
9381     
9382     If we ever get around to supporting multiple simultaneous remote
9383     devices, we'll need to notice that the serial changed right away
9384     
9385     Signed-off-by: Keith Packard <keithp@keithp.com>
9386
9387 commit f49540acd48292bd9f68ded647561d0e800c619d
9388 Author: Keith Packard <keithp@keithp.com>
9389 Date:   Thu Jun 12 23:59:37 2014 -0700
9390
9391     altos/telegps: Create new flight if current flight is erased
9392     
9393     telegps is unique in that USB may be connected while a flight is
9394     active and sensible things should happen. If a flight is being
9395     recorded and gets erased, then a new flight should be started.
9396     
9397     This is done by hooking in the flight erase code and calling out to
9398     the tracker code to figure out whether to switch to a new flight or not.
9399     
9400     Signed-off-by: Keith Packard <keithp@keithp.com>
9401
9402 commit 8117ba3553789a2bae9beb92fbe9e14e3cc79389
9403 Author: Keith Packard <keithp@keithp.com>
9404 Date:   Thu Jun 12 23:56:07 2014 -0700
9405
9406     altos: Define ao_log_mutex in ao_log.c rather than every log product
9407     
9408     Signed-off-by: Keith Packard <keithp@keithp.com>
9409
9410 commit dcaaf51245b44a440ee8590512f71195c30c16ae
9411 Author: Keith Packard <keithp@keithp.com>
9412 Date:   Thu Jun 12 21:54:13 2014 -0700
9413
9414     altos/telegps: Keep ring of recent GPS positions to detect motion quickly
9415     
9416     Instead of comparing only against the last logged value, keep a ring
9417     and start logging as soon as we move away from the furthest one in the ring.
9418     
9419     Signed-off-by: Keith Packard <keithp@keithp.com>
9420
9421 commit 740d964ab82da8695c04650926afee4a0905011c
9422 Author: Keith Packard <keithp@keithp.com>
9423 Date:   Thu Jun 12 21:53:07 2014 -0700
9424
9425     altos/telegps: Set default log to 496kB for 4 logs
9426     
9427     This leaves space for four flight logs.
9428     
9429     Signed-off-by: Keith Packard <keithp@keithp.com>
9430
9431 commit 77b5c0cc7f085aa3c0fada5d4a943eeaf16cf6e0
9432 Author: Keith Packard <keithp@keithp.com>
9433 Date:   Thu Jun 12 21:52:13 2014 -0700
9434
9435     altos: Show current flight number for TeleGPS
9436     
9437     Signed-off-by: Keith Packard <keithp@keithp.com>
9438
9439 commit bfdaa95cb72c833896076d4e1a4bfe61d9549fed
9440 Author: Keith Packard <keithp@keithp.com>
9441 Date:   Thu Jun 12 15:59:20 2014 -0700
9442
9443     debian: Fix build depends icotool -> icoutils
9444     
9445     Signed-off-by: Keith Packard <keithp@keithp.com>
9446
9447 commit 7e911c2afff78db2e385c6346c90bfcd72a8f3fb
9448 Author: Keith Packard <keithp@keithp.com>
9449 Date:   Thu Jun 12 14:34:02 2014 -0700
9450
9451     altos/telegps: Don't log data when plugged in to USB
9452     
9453     We don't want to accidentally log stuff when you're just trying to
9454     charge the battery.
9455     
9456     Signed-off-by: Keith Packard <keithp@keithp.com>
9457
9458 commit 7d77d83685cbfce5323767bbfae3bd18be175ffc
9459 Author: Keith Packard <keithp@keithp.com>
9460 Date:   Thu Jun 12 14:32:15 2014 -0700
9461
9462     telegps: Don't re-add frequency menu when already present.
9463     
9464     If the receiver disappears, we'll stop tracking, but won't pull the
9465     frequency menu down. Doing that would take a bit of work, and it
9466     doesn't seem worth the effort. As a kludge-around, avoid re-creating
9467     the frequency menu if it's already displayed when we connect to
9468     another device.
9469     
9470     Signed-off-by: Keith Packard <keithp@keithp.com>
9471
9472 commit 8044eb8e23366e91c741060939baff5137f841c7
9473 Author: Keith Packard <keithp@keithp.com>
9474 Date:   Thu Jun 12 14:12:08 2014 -0700
9475
9476     altosui/telegps: Reduce CPU time needed for flight displays
9477     
9478     Don't update displays which aren't shown; track hierarchy changes to
9479     trigger display from most recent state data.
9480     
9481     Don't update values which haven't changed; remember previous values
9482     and compare with new before updating widget contents.
9483     
9484     Signed-off-by: Keith Packard <keithp@keithp.com>
9485
9486 commit e00ffe6ab6197ab48ba8ce3cf71a197f7215649f
9487 Author: Keith Packard <keithp@keithp.com>
9488 Date:   Wed Jun 11 23:28:55 2014 -0700
9489
9490     doc: Add TeleGPS screenshots
9491     
9492     Signed-off-by: Keith Packard <keithp@keithp.com>
9493
9494 commit c7774114f7bc62e2100c7575b1dcf3536ed56343
9495 Author: Keith Packard <keithp@keithp.com>
9496 Date:   Wed Jun 11 23:28:36 2014 -0700
9497
9498     doc: Update altusmetrum docs and screen shots for 1.4
9499     
9500     Signed-off-by: Keith Packard <keithp@keithp.com>
9501
9502 commit 1ed591c7bdf19fe54bbde1827d0717f0ae51e003
9503 Author: Keith Packard <keithp@keithp.com>
9504 Date:   Wed Jun 11 23:27:16 2014 -0700
9505
9506     telegps: Remove 'Flight' from titles
9507     
9508     Signed-off-by: Keith Packard <keithp@keithp.com>
9509
9510 commit 0495f1b5282d8f7449cbbc1dbf99d63818d7c03c
9511 Author: Keith Packard <keithp@keithp.com>
9512 Date:   Wed Jun 11 23:26:36 2014 -0700
9513
9514     altos/telegps: Build .ihx versions for TeleGPS
9515     
9516     Needed to load with java
9517     
9518     Signed-off-by: Keith Packard <keithp@keithp.com>
9519
9520 commit 6f306b267f63d0f59fb77b1ce41c678042dd6802
9521 Author: Keith Packard <keithp@keithp.com>
9522 Date:   Wed Jun 11 23:04:46 2014 -0700
9523
9524     altosuilib: Repaint map when starting line draw
9525     
9526     Starting line draw will remove any existing line, so repaint to get
9527     rid of it
9528     
9529     Signed-off-by: Keith Packard <keithp@keithp.com>
9530
9531 commit efb6a3d5ed12f8061a48a66efcfe066e68eaf792
9532 Author: Keith Packard <keithp@keithp.com>
9533 Date:   Wed Jun 11 23:04:11 2014 -0700
9534
9535     altoslib: Report GPS height when baro height is not available
9536     
9537     Signed-off-by: Keith Packard <keithp@keithp.com>
9538
9539 commit 57272609b0d2890029fdeceeca14da93cebdb471
9540 Author: Keith Packard <keithp@keithp.com>
9541 Date:   Wed Jun 11 21:37:23 2014 -0700
9542
9543     altosui: Don't list tracker parameters when configuring altimeter
9544     
9545     Signed-off-by: Keith Packard <keithp@keithp.com>
9546
9547 commit bfc0c65c9f9ec9547d71016fc897ba35bdb414f8
9548 Author: Keith Packard <keithp@keithp.com>
9549 Date:   Wed Jun 11 20:36:49 2014 -0700
9550
9551     altosuilib: Handle font and units changes in maps and stats table
9552     
9553     Add AltosFontListener and AltosUnitsListener bits as needed
9554     
9555     Signed-off-by: Keith Packard <keithp@keithp.com>
9556
9557 commit 2182c49298e0862a60dea104450d5f74dbeaeeb2
9558 Author: Keith Packard <keithp@keithp.com>
9559 Date:   Wed Jun 11 19:57:24 2014 -0700
9560
9561     doc: Update 1.4 release notes to include a few more changes
9562     
9563     pyro firing time.
9564     flight erase on TeleMega/TeleMetrum v2
9565     
9566     Signed-off-by: Keith Packard <keithp@keithp.com>
9567
9568 commit d744e588b7504f314e39b1407152d11c031673c9
9569 Author: Keith Packard <keithp@keithp.com>
9570 Date:   Wed Jun 11 19:51:37 2014 -0700
9571
9572     altosui: Add pyro firing time configuration
9573     
9574     Signed-off-by: Keith Packard <keithp@keithp.com>
9575
9576 commit fcbfb3aea20e564045fc6a86f978cacabfc73226
9577 Author: Keith Packard <keithp@keithp.com>
9578 Date:   Wed Jun 11 18:58:09 2014 -0700
9579
9580     altosdroid: Altosdroid build doesn't work in parallel, so stop trying
9581     
9582     Signed-off-by: Keith Packard <keithp@keithp.com>
9583
9584 commit c661d5de7d9c8e430211e0f97ab0bf3f09a1a543
9585 Author: Keith Packard <keithp@keithp.com>
9586 Date:   Wed Jun 11 18:53:42 2014 -0700
9587
9588     altos: Re-enable telemini v2.0 builds
9589     
9590     Signed-off-by: Keith Packard <keithp@keithp.com>
9591
9592 commit 18b0f0966dfc4d1a716d4faea6f661bd3594bd94
9593 Author: Keith Packard <keithp@keithp.com>
9594 Date:   Wed Jun 11 18:53:10 2014 -0700
9595
9596     altos/telemini-v2.0: Disable beep frequency config on TeleMini v2.0
9597     
9598     Not enough flash otherwise.
9599     
9600     Signed-off-by: Keith Packard <keithp@keithp.com>
9601
9602 commit ac5b15692874ea3f7b3814250ab49c68786aa982
9603 Author: Keith Packard <keithp@keithp.com>
9604 Date:   Wed Jun 11 18:51:19 2014 -0700
9605
9606     altosuilib: Remove old widget-based map UI
9607     
9608     Signed-off-by: Keith Packard <keithp@keithp.com>
9609
9610 commit 7a70e6fe3a11382d7f6653d19afac9ceb563db3b
9611 Author: Keith Packard <keithp@keithp.com>
9612 Date:   Wed Jun 11 18:50:07 2014 -0700
9613
9614     altos: Disable TeleMini v2.0 build for now
9615
9616 commit a8325483adb8d9ffda62d3f4900cf52bde70ff62
9617 Author: Keith Packard <keithp@keithp.com>
9618 Date:   Wed Jun 11 18:48:11 2014 -0700
9619
9620     altoslib: Use GPS seconds as an additional sort key for TeleGPS eeprom
9621     
9622     Long idle periods with TeleGPS can easily overflow 16 bits of tick
9623     count. Using the GPS seconds provides an additional sort which will
9624     span the tick wrap-around.
9625     
9626     Signed-off-by: Keith Packard <keithp@keithp.com>
9627
9628 commit db2443fdbf65b65703217174303027c439124a83
9629 Author: Keith Packard <keithp@keithp.com>
9630 Date:   Wed Jun 11 18:46:47 2014 -0700
9631
9632     altosuilib: Rewrite map GUI bits
9633     
9634     Use a single large Canvas and draw images on top by hand.
9635     
9636     Signed-off-by: Keith Packard <keithp@keithp.com>
9637
9638 commit ac33ca137551e32235cd2a0304da4b5e7af51a44
9639 Author: Keith Packard <keithp@keithp.com>
9640 Date:   Tue Jun 10 11:36:03 2014 -0700
9641
9642     telegps: Add statistics tab to graph UI
9643     
9644     Signed-off-by: Keith Packard <keithp@keithp.com>
9645
9646 commit 73249dbf16382c91c2a220ff852a4f099fe0de3d
9647 Author: Keith Packard <keithp@keithp.com>
9648 Date:   Tue Jun 10 11:35:30 2014 -0700
9649
9650     altosuilib: Move AltosFlightStatsTable to altosuilib
9651     
9652     So that TeleGPS can share it
9653     
9654     Signed-off-by: Keith Packard <keithp@keithp.com>
9655
9656 commit 9ef32b103c5c312aaa90b6546e504f2edeb1f99a
9657 Author: Keith Packard <keithp@keithp.com>
9658 Date:   Tue Jun 10 11:34:21 2014 -0700
9659
9660     altosuilib: Skip voice announcements for invalid values
9661     
9662     When height and speed values aren't available, don't say anything
9663     
9664     Signed-off-by: Keith Packard <keithp@keithp.com>
9665
9666 commit 90686853e46b7f0df9bdaf671f859819eef926e0
9667 Author: Keith Packard <keithp@keithp.com>
9668 Date:   Tue Jun 10 11:32:57 2014 -0700
9669
9670     altosui: Show "Missing" instead of huge numbers in descent/landed tabs
9671     
9672     Signed-off-by: Keith Packard <keithp@keithp.com>
9673
9674 commit 7bdd0deabaae38ddfecd1ea2ea8deaf9af40b2ac
9675 Author: Keith Packard <keithp@keithp.com>
9676 Date:   Tue Jun 10 11:31:53 2014 -0700
9677
9678     altoslib: Use GPS speed/height values when other sensors are missing
9679     
9680     This lets TeleGPS report height/speed values without needing to
9681     customize every AltosState user to pull out GPS values when the other
9682     sensors aren't present.
9683     
9684     Signed-off-by: Keith Packard <keithp@keithp.com>
9685
9686 commit 6fc58142d2a108c91d257eb0175098bf082834f9
9687 Author: Keith Packard <keithp@keithp.com>
9688 Date:   Tue Jun 10 11:30:36 2014 -0700
9689
9690     altosuilib: Split battery graph enable out from other adc enables
9691     
9692     This lets TeleGPS just show the battery voltage values without also
9693     adding enable lines for the other flight computer ADC values like
9694     ignitor voltages.
9695     
9696     Signed-off-by: Keith Packard <keithp@keithp.com>
9697
9698 commit 9d39bbd22e6cde1bbb39e7b5450f297d47365769
9699 Author: Keith Packard <keithp@keithp.com>
9700 Date:   Tue Jun 10 10:19:43 2014 -0700
9701
9702     altoslib: Check for time going backwards when replaying from file
9703     
9704     Signed-off-by: Keith Packard <keithp@keithp.com>
9705
9706 commit ff13cf1359e1f4ae33b16a5867fd364993566b65
9707 Author: Keith Packard <keithp@keithp.com>
9708 Date:   Tue Jun 10 10:18:44 2014 -0700
9709
9710     altoslib: Add new 'stateless' flight state for TeleGPS
9711     
9712     TeleGPS has no flight state, so add a new 'stateless' state for code
9713     to handle this case differently than any of the existing states
9714     
9715     Signed-off-by: Keith Packard <keithp@keithp.com>
9716
9717 commit 871fb4753a3b54cc2e22309e80e24dfe9cc54511
9718 Author: Keith Packard <keithp@keithp.com>
9719 Date:   Tue Jun 10 10:15:47 2014 -0700
9720
9721     altoslib: TeleGPS no longer logs satellite information
9722     
9723     This doubles the amount of space available to log position information
9724     
9725     Signed-off-by: Keith Packard <keithp@keithp.com>
9726
9727 commit 5f2029bd4e31289fb03e6af39abdbc16f8b8fa78
9728 Author: Keith Packard <keithp@keithp.com>
9729 Date:   Tue Jun 10 10:14:07 2014 -0700
9730
9731     altoslib/altosui/telegps: Switch TeleGPS config to motion/interval
9732     
9733     TeleGPS had configurable boost-detect values; those have been replaced
9734     with a configurable stop-tracking motion limit and logging/telemetry
9735     interval value.
9736     
9737     Signed-off-by: Keith Packard <keithp@keithp.com>
9738
9739 commit ae1174317fc476e39077f7dc257ec08709c6b301
9740 Author: Keith Packard <keithp@keithp.com>
9741 Date:   Tue Jun 10 10:11:03 2014 -0700
9742
9743     altoslib/altosui/telegps: Change log size configuration
9744     
9745     * Use new log-space value provided by firmware when available.
9746     
9747     * Divide that up into 1-8 flights and offer those sizes as options to
9748       the user instead of a fixed set of sizes.
9749     
9750     * Show how many flights each selection will store
9751     
9752     * This also checks values provided by the user
9753     
9754     Signed-off-by: Keith Packard <keithp@keithp.com>
9755
9756 commit 44ca50a2c9404c92cc887a23dfa25b335ebe6198
9757 Author: Keith Packard <keithp@keithp.com>
9758 Date:   Tue Jun 10 09:55:04 2014 -0700
9759
9760     altos: Set TeleGPS default log size to half of avaiable memory
9761     
9762     LPC11U14 doesn't have on-chip config space, so we're consuming a block
9763     of external flash. As a result, only 1984kB are available for
9764     logging. Set the default log size to half of that to store two flights.
9765     
9766     Signed-off-by: Keith Packard <keithp@keithp.com>
9767
9768 commit 9d7f4fb6af0fee843191766858e39a481aeda347
9769 Author: Keith Packard <keithp@keithp.com>
9770 Date:   Tue Jun 10 09:52:15 2014 -0700
9771
9772     altos: Simplify tracker logic, removing boost detect
9773     
9774     This removes the ao_flight_state value from the tracker code and makes
9775     it simply log position information when the device has moved within
9776     the last 10 log intervals. This also changes the configuration
9777     parameters to define what 'motionless' means, and what interval to
9778     configure the GPS receiver for, log data and send telemetry.
9779     
9780     Signed-off-by: Keith Packard <keithp@keithp.com>
9781
9782 commit c5a7889a8da3da64deb0f118656784e0ee3fd511
9783 Author: Keith Packard <keithp@keithp.com>
9784 Date:   Tue Jun 10 09:47:04 2014 -0700
9785
9786     Revert adding state to GPS location packets
9787     
9788     TeleGPS no longer has ao_flight_state
9789     
9790     Signed-off-by: Keith Packard <keithp@keithp.com>
9791
9792 commit f6d633d73a8f826cf2a3128e3e234bd11af49718
9793 Author: Keith Packard <keithp@keithp.com>
9794 Date:   Tue Jun 10 09:44:57 2014 -0700
9795
9796     Revert "ao-tools: Parse TeleGPS state value from gps location packet"
9797     
9798     This reverts commit 428d09294ba0395fedd71346ad00fd90a4cdde97.
9799
9800 commit da9575fce5ff4dfe83522e290973a01c43e4661f
9801 Author: Keith Packard <keithp@keithp.com>
9802 Date:   Tue Jun 10 09:42:43 2014 -0700
9803
9804     altos: Make extra pyro channel firing time configurable
9805     
9806     This adds a 'I' parameter to set the extra pyro channel firing time
9807     (in ticks). This has no effect on the main/drogue channels.
9808     
9809     Signed-off-by: Keith Packard <keithp@keithp.com>
9810
9811 commit 75df97b5f6ade3310618a477b685d39b7fd4666e
9812 Author: Keith Packard <keithp@keithp.com>
9813 Date:   Tue Jun 10 09:37:43 2014 -0700
9814
9815     altos: Report total available log space in version command
9816     
9817     This provides a more accurate means of determining available log space
9818     than guessing whether some portion of the flash chip holds
9819     configuration data.
9820     
9821     Signed-off-by: Keith Packard <keithp@keithp.com>
9822
9823 commit 998eae61ecf56dd6ead4ec6ad82c952ae84170df
9824 Author: Keith Packard <keithp@keithp.com>
9825 Date:   Tue Jun 10 09:36:59 2014 -0700
9826
9827     Revert "altos: Write current flight state to GPS data from GPS drivers"
9828     
9829     This reverts commit db6003d34595fbd103d5b131912b6a797254f1c5.
9830
9831 commit d696b34b4823647e2e91093ba9d5a351d3a52f8a
9832 Author: Keith Packard <keithp@keithp.com>
9833 Date:   Sun Jun 8 16:08:30 2014 -0700
9834
9835     Revert "altoslib: Parse TeleGPS state value from GPS telemetry packet"
9836     
9837     This reverts commit d69547796caf74405f8304d23d4ae318315bbd7b.
9838
9839 commit 5c117621444bc13aebbc7dc618b4a56f620931ac
9840 Author: Keith Packard <keithp@keithp.com>
9841 Date:   Sat Jun 7 22:37:30 2014 -0700
9842
9843     Bump to version 1.3.2.4
9844
9845 commit b33de8ba1e48d8ad0cb78f1c5692bb81da916080
9846 Author: Keith Packard <keithp@keithp.com>
9847 Date:   Sat Jun 7 22:25:17 2014 -0700
9848
9849     altoslib: Recover battery voltage from TeleGPS configuration packet
9850     
9851     TeleGPS stuffs battery voltage in the apogee_delay slot of the
9852     configuration packet. Pull it out from there and stick it into the
9853     current state.
9854     
9855     Signed-off-by: Keith Packard <keithp@keithp.com>
9856
9857 commit 6950506beacb1bcd5b8e54c3935174cf800e9aed
9858 Author: Keith Packard <keithp@keithp.com>
9859 Date:   Sat Jun 7 22:24:08 2014 -0700
9860
9861     altoslib: TeleMega uses 5.6k/10k divider for v_batt
9862     
9863     I suspect the 15 and 27 values are a 'close approximation' for integer
9864     work on the cc1111 devices
9865     
9866     Signed-off-by: Keith Packard <keithp@keithp.com>
9867
9868 commit ee2216af17f23781ea912caba29fbd7e4d9ff480
9869 Author: Keith Packard <keithp@keithp.com>
9870 Date:   Sat Jun 7 22:23:19 2014 -0700
9871
9872     altos: Enable ADC for TeleGPS v1.0 battery voltage measuring
9873     
9874     Signed-off-by: Keith Packard <keithp@keithp.com>
9875
9876 commit ef85b3bc5300904ebfb878b1c7313a82b5b7aebf
9877 Author: Keith Packard <keithp@keithp.com>
9878 Date:   Sat Jun 7 21:57:43 2014 -0700
9879
9880     altos: Encode TeleGPS battery voltage in configuration packet
9881     
9882     TeleGPS doesn't need apogee delay, so re-purpose it for the battery voltage
9883     
9884     Signed-off-by: Keith Packard <keithp@keithp.com>
9885
9886 commit d69547796caf74405f8304d23d4ae318315bbd7b
9887 Author: Keith Packard <keithp@keithp.com>
9888 Date:   Sat Jun 7 21:13:40 2014 -0700
9889
9890     altoslib: Parse TeleGPS state value from GPS telemetry packet
9891     
9892     TeleGPS adds 0x80 to the state value to signify that this otherwise
9893     unused byte contains the current state value
9894     
9895     Signed-off-by: Keith Packard <keithp@keithp.com>
9896
9897 commit 428d09294ba0395fedd71346ad00fd90a4cdde97
9898 Author: Keith Packard <keithp@keithp.com>
9899 Date:   Sat Jun 7 21:12:44 2014 -0700
9900
9901     ao-tools: Parse TeleGPS state value from gps location packet
9902     
9903     TeleGPS encodes state in a spare gps location packet byte, masking in
9904     0x80 to signify that the state value is valid
9905     
9906     Signed-off-by: Keith Packard <keithp@keithp.com>
9907
9908 commit 23d9d37fd2a8f4b867f34e71a2b0f7cb090717c1
9909 Author: Keith Packard <keithp@keithp.com>
9910 Date:   Sat Jun 7 21:12:09 2014 -0700
9911
9912     altos: Make telegps builds depend on ao_tracker.h
9913     
9914     Signed-off-by: Keith Packard <keithp@keithp.com>
9915
9916 commit d165079b9275c69e727a1dac996ad1788c58ed40
9917 Author: Keith Packard <keithp@keithp.com>
9918 Date:   Sat Jun 7 21:11:33 2014 -0700
9919
9920     altos: Reduce tracker GPS buffer to 4 samples
9921     
9922     We just don't have enough RAM for 8 samples.
9923     
9924     Signed-off-by: Keith Packard <keithp@keithp.com>
9925
9926 commit bd9e4f30b2a491b030246943767960ab053ac94c
9927 Author: Keith Packard <keithp@keithp.com>
9928 Date:   Sat Jun 7 21:05:01 2014 -0700
9929
9930     altos: Define lat/lon sum variables as 64-bit instead of 16
9931     
9932     Oops. 16 bits won't hold position information...
9933     
9934     Signed-off-by: Keith Packard <keithp@keithp.com>
9935
9936 commit 08550425fca3da73d8f16de567a2c956b85d676e
9937 Author: Keith Packard <keithp@keithp.com>
9938 Date:   Sat Jun 7 21:02:26 2014 -0700
9939
9940     altos: Use 0x80 to indicate valid state value in the GPS location packet
9941     
9942     And only set this for tracker products; other products place state in
9943     separate state packets
9944     
9945     Signed-off-by: Keith Packard <keithp@keithp.com>
9946
9947 commit d8b271502bfd1301b2244e3be5e8c9917a9c624a
9948 Author: Keith Packard <keithp@keithp.com>
9949 Date:   Sat Jun 7 12:17:46 2014 -0700
9950
9951     Set version to 1.3.2.3
9952     
9953     Mayhem 2014 Saturday 2014-6-7
9954     
9955     Signed-off-by: Keith Packard <keithp@keithp.com>
9956
9957 commit d550c3b3eccbb0283c588b5df69edb2e9b44b4cc
9958 Author: Keith Packard <keithp@keithp.com>
9959 Date:   Sat Jun 7 11:52:28 2014 -0700
9960
9961     telegps: Track graph windows as one of the TeleGPS windows
9962     
9963     TeleGPS exits when the number of windows goes to zero; track graphing
9964     windows in addition to the usual flight monitoring windows.
9965     
9966     Signed-off-by: Keith Packard <keithp@keithp.com>
9967
9968 commit 9f2189e0b99aa32b788ecb4576dcb9bcc926f4e2
9969 Author: Keith Packard <keithp@keithp.com>
9970 Date:   Sat Jun 7 11:50:42 2014 -0700
9971
9972     altosuilib: Fix crash when initializing site map cache
9973     
9974     Signed-off-by: Keith Packard <keithp@keithp.com>
9975
9976 commit 611dc26ab4a3ee303c0253698b1e12931aa3644f
9977 Author: Keith Packard <keithp@keithp.com>
9978 Date:   Sat Jun 7 11:50:04 2014 -0700
9979
9980     altosuilib: Add GPS altitude as a possible graph value
9981     
9982     Signed-off-by: Keith Packard <keithp@keithp.com>
9983
9984 commit 5617919091d4c4a1e627470ddab0b45cf649f7a1
9985 Author: Keith Packard <keithp@keithp.com>
9986 Date:   Sat Jun 7 11:49:14 2014 -0700
9987
9988     altosuilib: Show GPS instead of (missing) flight data for TeleGPS graphs
9989     
9990     Signed-off-by: Keith Packard <keithp@keithp.com>
9991
9992 commit e0dfa934ba76d6f913af37999e05c20e614bd3e9
9993 Author: Keith Packard <keithp@keithp.com>
9994 Date:   Sat Jun 7 11:47:11 2014 -0700
9995
9996     altoslib: Record whether flight data includes sensor values in AltosFlightStats
9997     
9998     Provide a way to elide the usual flight data from a graph for TeleGPS
9999     
10000     Signed-off-by: Keith Packard <keithp@keithp.com>
10001
10002 commit fcea12ac416b1eab11e9e8aae801358574308f73
10003 Author: Keith Packard <keithp@keithp.com>
10004 Date:   Sat Jun 7 11:46:32 2014 -0700
10005
10006     altoslib:  Add TeleGPS log parsing code
10007     
10008     Signed-off-by: Keith Packard <keithp@keithp.com>
10009
10010 commit 537db628c0223f0c1f797705a353857c696f8051
10011 Author: Keith Packard <keithp@keithp.com>
10012 Date:   Sat Jun 7 11:44:55 2014 -0700
10013
10014     altoslib: All products with logging have the 'l' command
10015     
10016     Instead of listing products with the 'l' command, just exclude
10017     products that don't have logging from using the 'l' command to collect
10018     the number of stored flights.
10019     
10020     Signed-off-by: Keith Packard <keithp@keithp.com>
10021
10022 commit d562a5d3a6dfea334a66ee74893b400bdca09315
10023 Author: Keith Packard <keithp@keithp.com>
10024 Date:   Sat Jun 7 11:44:07 2014 -0700
10025
10026     altos: Switch TeleGPS to GPS logging format
10027     
10028     It's customized for TeleGPS uses
10029     
10030     Signed-off-by: Keith Packard <keithp@keithp.com>
10031
10032 commit d71e6a5fc68d5b9bc1d12bbfc3fd5a4d86fb12f2
10033 Author: Keith Packard <keithp@keithp.com>
10034 Date:   Sat Jun 7 11:41:59 2014 -0700
10035
10036     altos: Update other CONFIG_EEPROM users to set LOG_ERASE_MARK
10037     
10038     All products placing config and erase marks in on-CPU EEPROM needs to
10039     configure the erase code correctly.
10040     
10041     Signed-off-by: Keith Packard <keithp@keithp.com>
10042
10043 commit 394ab536257ab58de0190b3828dd3bb897ad4474
10044 Author: Keith Packard <keithp@keithp.com>
10045 Date:   Sat Jun 7 11:40:41 2014 -0700
10046
10047     altos: Write tracker logging from tracker thread directly
10048     
10049     Also, logs 8 pre-launch GPS packets so we can get the ground position.
10050     
10051     Signed-off-by: Keith Packard <keithp@keithp.com>
10052
10053 commit db6003d34595fbd103d5b131912b6a797254f1c5
10054 Author: Keith Packard <keithp@keithp.com>
10055 Date:   Sat Jun 7 11:39:10 2014 -0700
10056
10057     altos: Write current flight state to GPS data from GPS drivers
10058     
10059     This will be useful with TeleGPS which has no other packet containing
10060     flight state.
10061     
10062     Signed-off-by: Keith Packard <keithp@keithp.com>
10063
10064 commit 302842ccda46a0a3d58b60d5c7fc82e05f614b0b
10065 Author: Keith Packard <keithp@keithp.com>
10066 Date:   Sat Jun 7 11:34:29 2014 -0700
10067
10068     altos: Add TeleGPS logging format
10069     
10070     This is mostly like the mega format, but places the flight state in a
10071     spare byte of the GPS data and writes the gps starting location to the
10072     flight packet.
10073     
10074     Log data is written by the main tracker thread; there's no reason for
10075     a separate thread given the GPS update rate and the lack of flight
10076     controls. This means ao_log_gps has an API to be called from there,
10077     rather than a thread to run.
10078     
10079     Signed-off-by: Keith Packard <keithp@keithp.com>
10080
10081 commit 62aa51f0b785bea146d1e9331e6253de2d547c94
10082 Author: Keith Packard <keithp@keithp.com>
10083 Date:   Sat Jun 7 11:01:14 2014 -0700
10084
10085     altos/telemega-v1.0: Adjust config params to make flight erase work
10086     
10087     Flight erase records are supposed to be written after the ao_config to
10088     eeprom in telemega. They were getting written in the middle of one of
10089     the pyro channel config blocks. Put a bunch of space between the two
10090     by making the config max 1024 bytes instead of 128 bytes.
10091     
10092     Set the log erase marker to 0x55 -- eeprom comes from the factory as
10093     0x00, so we use any value other than 0x55 to indicate 'unused' erase
10094     slots.
10095     
10096     Save space for more flight erase blocks; we've  got plenty.
10097     
10098     Signed-off-by: Keith Packard <keithp@keithp.com>
10099
10100 commit 5d973570ef2324b21a64477eecb0a292652ff467
10101 Author: Keith Packard <keithp@keithp.com>
10102 Date:   Sat Jun 7 10:54:14 2014 -0700
10103
10104     altos: Clear out eeprom erase records when writing entry 0
10105     
10106     When writing config/erase to eeprom, there's no 'erase' operation as
10107     on-chip eeprom is writable at a byte level. As such, we can't tell
10108     when the erase blocks get reset when the config gets written. When
10109     this happens, erase block 0 gets written explicitly, so just use that
10110     call to trigger explicit erasing of the data.
10111     
10112     Signed-off-by: Keith Packard <keithp@keithp.com>
10113
10114 commit 1d6ca536c688d35b3cba0a829b04b93c5124b328
10115 Author: Keith Packard <keithp@keithp.com>
10116 Date:   Sat Jun 7 10:09:51 2014 -0700
10117
10118     altos: Allow value other than 0 for marking erased flights
10119     
10120     on-chip eeprom doesn't erase to 0xff, so let TeleMega use a different
10121     value.
10122     
10123     Signed-off-by: Keith Packard <keithp@keithp.com>
10124
10125 commit b8a29d65ec605a995de1d1ec8b110d620d2f7a87
10126 Author: Keith Packard <keithp@keithp.com>
10127 Date:   Sat Jun 7 10:05:21 2014 -0700
10128
10129     altos: Allow AO_CONFIG_MAX_SIZE to be configured. Validate it.
10130     
10131     TeleMega config is 200 bytes. AO_CONFIG_MAX_SIZE was 128. That didn't
10132     work out well when logging erased flight information. Allow TeleMega
10133     to use a larger value (1k), and then do a compiler hack to make sure
10134     the defined value is at least as large as the ao_config structure.
10135     
10136     Signed-off-by: Keith Packard <keithp@keithp.com>
10137
10138 commit 1873d539a8f1a0e1e8ad539af5d49a77a129b928
10139 Author: Keith Packard <keithp@keithp.com>
10140 Date:   Sat Jun 7 07:41:11 2014 -0700
10141
10142     altos: Move ao_tracker.c to kernel
10143     
10144     Doesn't make sense to be in product
10145     
10146     Signed-off-by: Keith Packard <keithp@keithp.com>
10147
10148 commit 6a79fe8144dcab10294caa4b0eac967eeb0d8e7e
10149 Author: Keith Packard <keithp@keithp.com>
10150 Date:   Thu Jun 5 21:42:10 2014 -0700
10151
10152     altos: Add telegps-v1.0 code and loader
10153     
10154     Signed-off-by: Keith Packard <keithp@keithp.com>
10155
10156 commit 0e867c67c8e2c40058ae36723e06b2ce00bd0419
10157 Author: Keith Packard <keithp@keithp.com>
10158 Date:   Thu Jun 5 21:40:39 2014 -0700
10159
10160     altos/telegps-v0.3: Remove ao_flight_number from main program
10161     
10162     We've got logging enabled now
10163     
10164     Signed-off-by: Keith Packard <keithp@keithp.com>
10165
10166 commit f830d4e9202d2a138fc9aaacb2388f94390399db
10167 Author: Keith Packard <keithp@keithp.com>
10168 Date:   Thu Jun 5 21:39:50 2014 -0700
10169
10170     altos/telegps-v0.3: Disable APRS by default. Set log max to 1M
10171     
10172     And adjust default radio cal to be a bit closer
10173     
10174     Signed-off-by: Keith Packard <keithp@keithp.com>
10175
10176 commit cab6d80f11e07dd26b865727eb7ce4fd45be5c7c
10177 Author: Keith Packard <keithp@keithp.com>
10178 Date:   Thu Jun 5 21:37:38 2014 -0700
10179
10180     altos: Force telemetry on by default for v0.3 TeleGPS boards
10181     
10182     These don't have a USB connect indicator, so just turn on telemetry by
10183     default
10184     
10185     Signed-off-by: Keith Packard <keithp@keithp.com>
10186
10187 commit 102b1977c138b30c2d2592ab310f7be072130a3b
10188 Author: Keith Packard <keithp@keithp.com>
10189 Date:   Thu Jun 5 21:36:16 2014 -0700
10190
10191     altos/lpc: HAS_USB_CONNECT has been changed to mean a custom pin
10192     
10193     The LPC stuff isn't actually very useful and TeleGPS uses a custom pin
10194     instead, and was using HAS_USB_CONNECT to mean the same thing. That
10195     wasn't good.
10196     
10197     Signed-off-by: Keith Packard <keithp@keithp.com>
10198
10199 commit ec3de3ac461f2380d23c5c5d948333a9a210c400
10200 Author: Keith Packard <keithp@keithp.com>
10201 Date:   Thu Jun 5 21:35:41 2014 -0700
10202
10203     altos: Fix config to set default log size for all devices with log
10204     
10205     Not just devices with flight
10206     
10207     Signed-off-by: Keith Packard <keithp@keithp.com>
10208
10209 commit d8f84ba82bab653c041eb85f93b9dcb1083bd849
10210 Author: Keith Packard <keithp@keithp.com>
10211 Date:   Thu Jun 5 18:55:26 2014 -0700
10212
10213     altos: Add AO_LOG_FLIGHT packet to TeleGPS logs
10214     
10215     This encodes the flight number for tracking of data files.
10216     
10217     Signed-off-by: Keith Packard <keithp@keithp.com>
10218
10219 commit fe0aaf4413035f9de2c805c612c71188ec8c6f4d
10220 Author: Keith Packard <keithp@keithp.com>
10221 Date:   Thu Jun 5 18:49:59 2014 -0700
10222
10223     altos/telegps-v0.3: Add tracker task
10224     
10225     Signed-off-by: Keith Packard <keithp@keithp.com>
10226
10227 commit 6160ddadeae324b4a68db800c98c339156b63076
10228 Author: Keith Packard <keithp@keithp.com>
10229 Date:   Thu Jun 5 18:49:01 2014 -0700
10230
10231     altos: Add debug to tracker to force launch
10232     
10233     This lets us test the move from pad to drogue state
10234     
10235     Signed-off-by: Keith Packard <keithp@keithp.com>
10236
10237 commit 4a29df3f9f6c4969eb01598f6917ce78c9ce37a6
10238 Author: Keith Packard <keithp@keithp.com>
10239 Date:   Thu Jun 5 18:47:27 2014 -0700
10240
10241     altos: tracker distance computation flipped arguments around
10242     
10243     ao_distance takes (lat, lon, lat, lon) not (lat, lat, lon, lon)
10244     
10245     Signed-off-by: Keith Packard <keithp@keithp.com>
10246
10247 commit b619199345256cdc456f8a0b99c0ad9335e877c7
10248 Author: Keith Packard <keithp@keithp.com>
10249 Date:   Thu Jun 5 18:45:18 2014 -0700
10250
10251     altos: Fix tracker start state
10252     
10253     Make sure log can start by scanning existing logs
10254     Enable RDF by default
10255     Turn off telemetry until we decide whether to turn it on in the loop
10256     Allow TeleGPS v0.3 to run without ADC
10257     
10258     Signed-off-by: Keith Packard <keithp@keithp.com>
10259
10260 commit 97dac0f66bc938940e6b49409d950a1736c92655
10261 Author: Keith Packard <keithp@keithp.com>
10262 Date:   Thu Jun 5 18:44:26 2014 -0700
10263
10264     altos: Stick flight state in GPS location packets
10265     
10266     Useful for TeleGPS
10267     
10268     Signed-off-by: Keith Packard <keithp@keithp.com>
10269
10270 commit eebcf07950e909e4516b08c32e289a870f772793
10271 Author: Keith Packard <keithp@keithp.com>
10272 Date:   Thu Jun 5 18:35:45 2014 -0700
10273
10274     altos: Have tracker average 5 GPS samples before moving to pad mode
10275     
10276     Avoids early GPS noise right after lock
10277     
10278     Signed-off-by: Keith Packard <keithp@keithp.com>
10279
10280 commit e063701310c1ab5b766c27f24088699aad142fbd
10281 Author: Keith Packard <keithp@keithp.com>
10282 Date:   Thu Jun 5 18:33:33 2014 -0700
10283
10284     altos: Change tracker not-moving speed to 2m/s and document
10285     
10286     Just adjust to avoid sensing motion from GPS noise
10287     
10288     Signed-off-by: Keith Packard <keithp@keithp.com>
10289
10290 commit d7df6e8c47df35c0d27f1a2559ecc305ef28d271
10291 Author: Keith Packard <keithp@keithp.com>
10292 Date:   Thu Jun 5 18:31:06 2014 -0700
10293
10294     altos: ao_distance was overflowing when checking for longitude wrap
10295     
10296     Need to shift everyone right one bit to fit in 32 bits
10297     
10298     Signed-off-by: Keith Packard <keithp@keithp.com>
10299
10300 commit 2db2b75f8847ca0066bb19771653a65c9098ae52
10301 Author: Keith Packard <keithp@keithp.com>
10302 Date:   Thu Jun 5 17:24:57 2014 -0700
10303
10304     altos: Allow cc115l driver to be built without radio power control
10305     
10306     TeleGPS just wants full power, so remove the configuration option
10307     
10308     Signed-off-by: Keith Packard <keithp@keithp.com>
10309
10310 commit b8201bc9ba4a5f5f0522b68493cd5e7f013fd4bb
10311 Author: Keith Packard <keithp@keithp.com>
10312 Date:   Thu Jun 5 17:14:28 2014 -0700
10313
10314     altos: Include sensor logging task only on flight boards
10315     
10316     This lets TeleGPS use the logging infrastructure without wasting a
10317     task to log sensor data
10318     
10319     Signed-off-by: Keith Packard <keithp@keithp.com>
10320
10321 commit 3e28d8a242955d65d8cd50dbba4cad4609e2e1ae
10322 Author: Keith Packard <keithp@keithp.com>
10323 Date:   Thu Jun 5 17:12:06 2014 -0700
10324
10325     altos: Add tracker task for TeleGPS
10326     
10327     This replaces the flight code to monitor GPS state and switch flight
10328     states between startup/pad/drogue
10329     
10330     Signed-off-by: Keith Packard <keithp@keithp.com>
10331
10332 commit 6e152dd5c0786a650aed8f0c09babdc93895bff1
10333 Author: Keith Packard <keithp@keithp.com>
10334 Date:   Thu Jun 5 17:10:28 2014 -0700
10335
10336     altos: Add ao_distance.c to compute cartesian distances on the globe
10337     
10338     This is not a great circle distance, but should be good enough for
10339     points reasonably close together
10340     
10341     Signed-off-by: Keith Packard <keithp@keithp.com>
10342
10343 commit 8e7b8b0533e03e89425296d464b7a1a26fb63686
10344 Author: Keith Packard <keithp@keithp.com>
10345 Date:   Thu Jun 5 16:52:36 2014 -0700
10346
10347     telegps: Update icon and icon building
10348     
10349     Switch to satellite icon, build the osx and windows icons.
10350     
10351     Signed-off-by: Keith Packard <keithp@keithp.com>
10352
10353 commit 1bcafc452f50e518c4d86cbd6b9057c4bf7e676f
10354 Author: Keith Packard <keithp@keithp.com>
10355 Date:   Thu Jun 5 16:50:29 2014 -0700
10356
10357     altosuilib: Let the user hand-edit the preload map radius
10358     
10359     In case they want more than 5
10360     
10361     Signed-off-by: Keith Packard <keithp@keithp.com>
10362
10363 commit f59d69064763cfad2b4b15fd9660fd5fa21dba5e
10364 Author: Keith Packard <keithp@keithp.com>
10365 Date:   Mon Jun 2 23:43:54 2014 -0700
10366
10367     doc: Create release notes for version 1.4
10368     
10369     Signed-off-by: Keith Packard <keithp@keithp.com>
10370
10371 commit cd2179cb0d71749f3637cc3ee03ccc6adfd74aae
10372 Author: Keith Packard <keithp@keithp.com>
10373 Date:   Mon Jun 2 22:59:23 2014 -0700
10374
10375     telegps: Trap AltosConfigDataException in telegps config
10376     
10377     This was added for pyro configuration errors in AltosUI
10378     
10379     Signed-off-by: Keith Packard <keithp@keithp.com>
10380
10381 commit 5e4087cd2fbb3ac67f90cd82edaa73c1eedbf67c
10382 Author: Keith Packard <keithp@keithp.com>
10383 Date:   Mon Jun 2 22:23:31 2014 -0700
10384
10385     altoslib: Add missing AltosConfigDataException file
10386
10387 commit ace5f42b5567cff07a61b622171ac364ea8c165d
10388 Author: Keith Packard <keithp@keithp.com>
10389 Date:   Mon Jun 2 22:07:39 2014 -0700
10390
10391     altosui: Display error message when parsing pyro channel values fails
10392     
10393     Build an exception handling chain to get numeric parse errors
10394     propagated all the way back to the original 'save' command and up into
10395     a dialog window, including the pyro channel, field and value that were
10396     in error.
10397     
10398     Signed-off-by: Keith Packard <keithp@keithp.com>
10399
10400 commit 206fbb99d28961ce159e3affdd5c96f5e379a603
10401 Author: Keith Packard <keithp@keithp.com>
10402 Date:   Mon Jun 2 22:06:22 2014 -0700
10403
10404     altosui: Fix pyro channel value formatting
10405     
10406     Was using %6.1f for 1 and 2 fraction digit values as the
10407     conditional structure for figuring out which format to use was
10408     broken.
10409     
10410     Signed-off-by: Keith Packard <keithp@keithp.com>
10411
10412 commit d20c608ce833fb8949dce527f92887775d216823
10413 Author: Keith Packard <keithp@keithp.com>
10414 Date:   Mon Jun 2 22:05:11 2014 -0700
10415
10416     altos: Fetch/store only 8 bits for pyro state values
10417     
10418     These fields are uint8_t, not int16_t. Fetching and storing 16 bits is
10419     a bad idea.
10420     
10421     Signed-off-by: Keith Packard <keithp@keithp.com>
10422
10423 commit b7abc063fb27da29cd7a717bbea15f92882bd205
10424 Author: Keith Packard <keithp@keithp.com>
10425 Date:   Mon Jun 2 22:04:11 2014 -0700
10426
10427     altos: Maximum pyro configuration parameter has 4 bytes in the name
10428     
10429     "f>=" needs four bytes, not just three to store the whole string. If
10430     we only store three, then we never manage to compare correctly as the
10431     null terminating byte is missing.
10432     
10433     Signed-off-by: Keith Packard <keithp@keithp.com>
10434
10435 commit 7385c76af46ff400b9e79a8540199be289cb57c0
10436 Author: Keith Packard <keithp@keithp.com>
10437 Date:   Mon Jun 2 22:03:26 2014 -0700
10438
10439     altos: Configuring pyro channels can use more than 48 characters
10440     
10441     Increase the command buffer from 48 to 128 bytes to hold the longest
10442     pyro configuration commands
10443     
10444     Signed-off-by: Keith Packard <keithp@keithp.com>
10445
10446 commit 177d3c0333fd4218f01e05c78cbc5f186c8e32c0
10447 Author: Keith Packard <keithp@keithp.com>
10448 Date:   Fri May 30 17:27:10 2014 -0700
10449
10450     altos: Allow sparse GPS data logging for TeleGPS
10451     
10452     When the device hasn't moved for a while, stop logging data. Start as
10453     soon as it moves again.
10454     
10455     Signed-off-by: Keith Packard <keithp@keithp.com>
10456
10457 commit 12c408c5aa1d234fe9c946078d8a343b4fda7ebb
10458 Author: Keith Packard <keithp@keithp.com>
10459 Date:   Fri May 30 17:30:08 2014 -0700
10460
10461     altos: Test APRS altitude encoding
10462     
10463     Verify fixed point version against naïve implementation
10464     
10465     Signed-off-by: Keith Packard <keithp@keithp.com>
10466
10467 commit a7b0a5613c8e59b4c672b21f8d0890fd5cffd4dc
10468 Author: Keith Packard <keithp@keithp.com>
10469 Date:   Fri May 30 17:24:51 2014 -0700
10470
10471     altos: Switch APRS altitude encoding computation to fixed point
10472     
10473     APRS altitude is logarithmically encoded, so this implementation
10474     includes a fixed point log-base-2 function along with a bit of other
10475     fixed point stuff. This eliminates all floating point from TeleGPS,
10476     saving around 4kB of code space.
10477     
10478     Signed-off-by: Keith Packard <keithp@keithp.com>
10479
10480 commit 2d9842ee011139f5783a102ceb2b7f4c88b1a10f
10481 Author: Keith Packard <keithp@keithp.com>
10482 Date:   Fri May 30 17:17:42 2014 -0700
10483
10484     telegps: Add config for tracker starting distances
10485     
10486     Signed-off-by: Keith Packard <keithp@keithp.com>
10487
10488 commit 29d325f418b401f61580288b5947b0df8ac5b717
10489 Author: Keith Packard <keithp@keithp.com>
10490 Date:   Thu May 29 22:03:48 2014 -0700
10491
10492     telegps: Fixup windows fat build harder
10493
10494 commit b74dfc9c2cbe14593738eb994e9163d466155326
10495 Author: Keith Packard <keithp@keithp.com>
10496 Date:   Thu May 29 21:48:11 2014 -0700
10497
10498     TeleGPS firmware isn't quite ready, don't include in windows fat build yet
10499
10500 commit e60d0456f59c76ad786bc8f8065fbe84e6cae922
10501 Author: Keith Packard <keithp@keithp.com>
10502 Date:   Thu May 29 21:37:53 2014 -0700
10503
10504     Capture windows build error messages
10505
10506 commit 48074131ad05b4646e5d2dcf30ba4a1d17e249f8
10507 Author: Keith Packard <keithp@keithp.com>
10508 Date:   Thu May 29 16:39:26 2014 -0700
10509
10510     telegps: Add missing TeleGPSGraphUI.java file
10511     
10512     Signed-off-by: Keith Packard <keithp@keithp.com>
10513
10514 commit ca7e64a09823977e1af028e9482424e643beee68
10515 Author: Keith Packard <keithp@keithp.com>
10516 Date:   Thu May 29 14:40:39 2014 -0700
10517
10518     Build telegps distribution bits with 'make fat'
10519     
10520     Signed-off-by: Keith Packard <keithp@keithp.com>
10521
10522 commit bf684a4c290573a3aa627fd8ddf6f6ebbe5fa057
10523 Author: Keith Packard <keithp@keithp.com>
10524 Date:   Thu May 29 14:36:14 2014 -0700
10525
10526     telegps: Add graph display
10527     
10528     Moved the altosui graph files to altosuilib and fixed things up.
10529     
10530     Signed-off-by: Keith Packard <keithp@keithp.com>
10531
10532 commit f80075be4ebb9c5fe00c24b8c7638fad23267424
10533 Author: Keith Packard <keithp@keithp.com>
10534 Date:   Thu May 29 14:03:58 2014 -0700
10535
10536     java: Refactor AltosFlightDisplay units and font update handling
10537     
10538     Make AltosFlightDisplay explicitly implement AltosFontListener and
10539     AltosUnitsListener interfaces to make everyone use the same API. Then,
10540     actually go implement units listeners so that changing units updates
10541     all of the active displays immediately
10542     
10543     Signed-off-by: Keith Packard <keithp@keithp.com>
10544
10545 commit 71715337eb532a1fbe1a753240e7417d5223489f
10546 Author: Keith Packard <keithp@keithp.com>
10547 Date:   Thu May 29 10:16:15 2014 -0700
10548
10549     telegps: Add info table
10550     
10551     Move a couple of files from altosui to altosuilib, hook up the info
10552     table after changing it to implement the AltosFlightDisplay interface
10553     
10554     Signed-off-by: Keith Packard <keithp@keithp.com>
10555
10556 commit 13f84be8d1568a3fc2ed5eef5dcc2093c149285e
10557 Author: Keith Packard <keithp@keithp.com>
10558 Date:   Wed May 28 22:53:06 2014 -0700
10559
10560     telegps: Add flash device functionality
10561     
10562     Move bits from altosui to altosuilib and use those.
10563     
10564     Signed-off-by: Keith Packard <keithp@keithp.com>
10565
10566 commit 8ba523cd793f2263bb1acd7a5a10f8964075bdc5
10567 Author: Keith Packard <keithp@keithp.com>
10568 Date:   Wed May 28 22:45:23 2014 -0700
10569
10570     telegps: Auto-connect to any base stations plugged in at startup
10571     
10572     Signed-off-by: Keith Packard <keithp@keithp.com>
10573
10574 commit c30130d0bdc18ee351eb3d02e51f70f8a05905b1
10575 Author: Keith Packard <keithp@keithp.com>
10576 Date:   Wed May 28 22:06:43 2014 -0700
10577
10578     telegps: Don't try to ship TeleGPS firmware yet
10579     
10580     It's not quite ready. Instead, ship TBT and TD firmware.
10581     
10582     Signed-off-by: Keith Packard <keithp@keithp.com>
10583
10584 commit 3871b9ac036e3adfa1da089245fc7973b268c921
10585 Author: Keith Packard <keithp@keithp.com>
10586 Date:   Wed May 28 21:56:52 2014 -0700
10587
10588     telegps: Add 'Info' tab
10589     
10590     This contains a summary of the tracking info, including position,
10591     speed and course.
10592     
10593     Signed-off-by: Keith Packard <keithp@keithp.com>
10594
10595 commit 4cec35564324f909dcddeb7c0d83a2daa8223042
10596 Author: Keith Packard <keithp@keithp.com>
10597 Date:   Wed May 28 20:58:01 2014 -0700
10598
10599     telegps: Hook up data download dialog
10600     
10601     Signed-off-by: Keith Packard <keithp@keithp.com>
10602
10603 commit 9a4c2c7fc6af922d052e23a1b99bf847fbf9b0e9
10604 Author: Keith Packard <keithp@keithp.com>
10605 Date:   Wed May 28 20:48:59 2014 -0700
10606
10607     telegps: Add scan UI
10608     
10609     Move scan UI bits into altosuilib, allow telegps to not show telemetry
10610     format options.
10611     
10612     Signed-off-by: Keith Packard <keithp@keithp.com>
10613
10614 commit 82a69777c67128192b50bbf77ace0a6525f49cac
10615 Author: Keith Packard <keithp@keithp.com>
10616 Date:   Wed May 28 20:24:04 2014 -0700
10617
10618     telegps: Add preferences dialog
10619     
10620     Signed-off-by: Keith Packard <keithp@keithp.com>
10621
10622 commit a7fd31842a602a8ac803d0e09efb4ffabf7a289b
10623 Author: Keith Packard <keithp@keithp.com>
10624 Date:   Wed May 28 20:19:44 2014 -0700
10625
10626     telegps: Add device configuration dialogs
10627     
10628     Signed-off-by: Keith Packard <keithp@keithp.com>
10629
10630 commit d6c5904e2a05c8ae023a8cd954cf16c19c477d7d
10631 Author: Keith Packard <keithp@keithp.com>
10632 Date:   Wed May 28 20:00:10 2014 -0700
10633
10634     telegps: Use altosui's Instdrv NSIS plugin for telegps
10635     
10636     Instead of copying it, just point at it
10637     
10638     Signed-off-by: Keith Packard <keithp@keithp.com>
10639
10640 commit fe14315d4cfccf8b53d9c4b7fa79302fd36b2c9a
10641 Author: Keith Packard <keithp@keithp.com>
10642 Date:   Wed May 28 19:50:52 2014 -0700
10643
10644     telegps: Working towards building fat versions of telegps application
10645     
10646     Lots more of the bits necessary for windows/macosx
10647     
10648     Signed-off-by: Keith Packard <keithp@keithp.com>
10649
10650 commit 47ff6f7528e3984012e874f91ea4f5c1d68cb465
10651 Author: Keith Packard <keithp@keithp.com>
10652 Date:   Wed May 28 19:45:01 2014 -0700
10653
10654     doc: Add outline of TeleGPS doc
10655     
10656     No actual content, mostly a place holder to make the build work
10657     
10658     Signed-off-by: Keith Packard <keithp@keithp.com>
10659
10660 commit e19121d5e7368ef723d4642d26c24252a386a790
10661 Author: Keith Packard <keithp@keithp.com>
10662 Date:   Wed May 28 19:44:21 2014 -0700
10663
10664     Mark version 1.3.2.2
10665     
10666     Preliminary 1.3.3 version (1.4?)
10667     
10668     Signed-off-by: Keith Packard <keithp@keithp.com>
10669
10670 commit 2fa7785f9efdefaf0fc2fa8e0b03c85047613b84
10671 Author: Keith Packard <keithp@keithp.com>
10672 Date:   Wed May 28 16:08:30 2014 -0700
10673
10674     telegps: Add first version of telegps
10675     
10676     Not much implemented yet, but a shell of the UI and the map
10677     
10678     Signed-off-by: Keith Packard <keithp@keithp.com>
10679
10680 commit 9b3516419981967a1c6ab956269139977ac368ca
10681 Author: Keith Packard <keithp@keithp.com>
10682 Date:   Wed May 28 16:06:14 2014 -0700
10683
10684     altosui/altosuilib: Shuffle lots more code from altosui into
10685     altosuilib
10686     
10687     All of the bluetooth management stuff, and AltosSerial.
10688     
10689     Signed-off-by: Keith Packard <keithp@keithp.com>
10690
10691 commit 02e657e45e217dc483a81f28020cfe65a826e9be
10692 Author: Keith Packard <keithp@keithp.com>
10693 Date:   Wed May 28 10:43:09 2014 -0700
10694
10695     Document the need for ~/altusmetrumllc/google-maps-api-key
10696     
10697     Stick this in Releasing
10698     
10699     Signed-off-by: Keith Packard <keithp@keithp.com>
10700
10701 commit 9b9e4bf1b51c45553879141811748e65debfc251
10702 Author: Tom Marble <tmarble@info9.net>
10703 Date:   Wed May 28 14:08:02 2014 -0500
10704
10705     jenkins.sh: make -j 4 can fail, fix for altosui-test
10706
10707 commit 96ffe5bbd2a1b44ddda6cb25d37d2b0a672045f5
10708 Author: Tom Marble <tmarble@info9.net>
10709 Date:   Wed May 28 12:50:42 2014 -0500
10710
10711     fix for jenkins.sh
10712
10713 commit 5eaef0c98488fa3fbd3a6494dc15e1b793eb6f94
10714 Author: Tom Marble <tmarble@info9.net>
10715 Date:   Wed May 28 12:38:36 2014 -0500
10716
10717     add jenkins.sh
10718
10719 commit 324380dcf86be338c6d556b901d6889ddde97f7e
10720 Author: Keith Packard <keithp@keithp.com>
10721 Date:   Wed May 28 10:31:47 2014 -0700
10722
10723     altosuilib: Don't try to draw to destroyed map windows
10724     
10725     Signed-off-by: Keith Packard <keithp@keithp.com>
10726
10727 commit 1e5807ef428c9a0eb88ed8a3aef40098ab347d80
10728 Author: Keith Packard <keithp@keithp.com>
10729 Date:   Wed May 28 10:27:52 2014 -0700
10730
10731     altosuilib: Publish AltosSiteMap.centre. Add prefetchMaps with old API
10732     
10733     This gets altosui working again.
10734     
10735     Signed-off-by: Keith Packard <keithp@keithp.com>
10736
10737 commit 52ce41952c5a3c31532fa4f0d1b3155a162b76f4
10738 Author: Keith Packard <keithp@keithp.com>
10739 Date:   Wed May 28 10:16:38 2014 -0700
10740
10741     altosuilib: Update map preloading UI to include zoom and maptypes
10742     
10743     This lets you specify precisely which maps to load.
10744     
10745     Signed-off-by: Keith Packard <keithp@keithp.com>
10746
10747 commit 5c3991768d3cb17fc99ad32b2d6d8d11f0e37dfa
10748 Author: Keith Packard <keithp@keithp.com>
10749 Date:   Wed May 28 02:18:41 2014 -0700
10750
10751     altosuilib: Remove debug printf in AltosSiteMapCache
10752     
10753     Signed-off-by: Keith Packard <keithp@keithp.com>
10754
10755 commit 4a5ef9eaa8b809c56813625133120e7e91fc8e65
10756 Author: Keith Packard <keithp@keithp.com>
10757 Date:   Wed May 28 02:06:18 2014 -0700
10758
10759     altoslib: When log-format is missing, use product
10760     
10761     log-format was added for 1.0; earlier log files don't include that,
10762     but do say which product they're from.
10763     
10764     Signed-off-by: Keith Packard <keithp@keithp.com>
10765
10766 commit 3773e89c47d356c4df58edc5725c33bca89b9605
10767 Author: Keith Packard <keithp@keithp.com>
10768 Date:   Wed May 28 00:42:24 2014 -0700
10769
10770     altosuilib: Add google maps API key, configured with -with-google-key
10771     
10772     This places the actual key outside of the repository, allowing the
10773     user to configure the name of the file containing the key. By default,
10774     this pulls the key from $HOME/altusmetrumllc/google-maps-api-key.
10775     
10776     With the key present, there are no longer any rate limits to loading
10777     map data.
10778     
10779     Signed-off-by: Keith Packard <keithp@keithp.com>
10780
10781 commit e6cfa25702b3dc1d492c5f1a4d0b4ba4831d30bd
10782 Author: Keith Packard <keithp@keithp.com>
10783 Date:   Tue May 27 20:34:29 2014 -0700
10784
10785     altosuilib: Decompress map images asynchronously and in parallel
10786     
10787     This speeds up loading map images from disk quite a bit, and keeps the
10788     UI responsive while that happens as well.
10789     
10790     Signed-off-by: Keith Packard <keithp@keithp.com>
10791
10792 commit 8e44580cbe978f1570d4d2ac13d3dd7cd470ecf7
10793 Author: Keith Packard <keithp@keithp.com>
10794 Date:   Tue May 27 15:39:13 2014 -0700
10795
10796     altosuilib: Add distance measuring line to site map.
10797     
10798     Use any modifier or button other than the left one to draw a line on
10799     the map. The length of the line is shown at the start of the line.
10800     
10801     Signed-off-by: Keith Packard <keithp@keithp.com>
10802
10803 commit c674a20432c2cb97e5bc2a3de891f78b9e172fe9
10804 Author: Keith Packard <keithp@keithp.com>
10805 Date:   Tue May 27 11:05:02 2014 -0700
10806
10807     altos: Fake flight code changes in kernel and stm
10808     
10809     Redirects data input from local sensors to USB sourced data, leaving
10810     USB enabled when the computer goes into pad mode.
10811     
10812     Signed-off-by: Keith Packard <keithp@keithp.com>
10813
10814 commit db08e99361d82de63058d3388823f486e5fc9839
10815 Author: Keith Packard <keithp@keithp.com>
10816 Date:   Tue May 27 10:58:53 2014 -0700
10817
10818     altosuilib: Add multiple zoom levels and content types to map
10819     
10820     Also changes the file format for hybrid, satellite and terrain maps to
10821     jpg to save disk space.
10822     
10823     Signed-off-by: Keith Packard <keithp@keithp.com>
10824
10825 commit 535271f7312f1a88af11d4f1dbf3d405b660f26c
10826 Author: Keith Packard <keithp@keithp.com>
10827 Date:   Sun May 25 21:14:42 2014 -0700
10828
10829     altos/test: Fix ADC structure for mega, use ao_config.h
10830     
10831     This switches from hand-coding the ao_config structure to using
10832     ao_config.h and also updates the ADC structure for ao_flight_test_mega
10833     to using the same one as telemega does natively
10834     
10835     Signed-off-by: Keith Packard <keithp@keithp.com>
10836
10837 commit 1894b51daceaf9fb6b49a0625e09a366985d15b6
10838 Author: Keith Packard <keithp@keithp.com>
10839 Date:   Sun May 25 21:12:29 2014 -0700
10840
10841     altos: Move ao_config declarations to ao_config.h
10842     
10843     No sense leaving these in ao.h, and it's nice to make that file smaller
10844     
10845     Signed-off-by: Keith Packard <keithp@keithp.com>
10846
10847 commit 3d5db24708b37d86eac187169e2553a408dfeb83
10848 Author: Keith Packard <keithp@keithp.com>
10849 Date:   Sun May 25 21:11:23 2014 -0700
10850
10851     altos: Make MS5607 PROM a public variable
10852     
10853     This will let the fake flight code update it as necessary, without
10854     creating a new interface in ao_ms5607.c
10855     
10856     Signed-off-by: Keith Packard <keithp@keithp.com>
10857
10858 commit 4df84dd5d007120f54cbda380789306608f2fc46
10859 Author: Keith Packard <keithp@keithp.com>
10860 Date:   Sun May 25 21:08:44 2014 -0700
10861
10862     micropeak: Add -Xlint:unchecked to javac line
10863     
10864     This shows missing parametric type errors
10865     
10866     Signed-off-by: Keith Packard <keithp@keithp.com>
10867
10868 commit f0216d721ed13f4d3dc608bb6ad8f83732b27c0a
10869 Author: Keith Packard <keithp@keithp.com>
10870 Date:   Sun May 25 21:01:38 2014 -0700
10871
10872     altoslib/altosuilib: Change versions to altoslib:4, altosuilib:2
10873     
10874     API has changed for these libraries, time to bump the file versions
10875     
10876     Signed-off-by: Keith Packard <keithp@keithp.com>
10877
10878 commit d63319f6f29ef714bb1d5c359c2448f63e7a4534
10879 Author: Keith Packard <keithp@keithp.com>
10880 Date:   Sun May 25 20:58:24 2014 -0700
10881
10882     ao-tools: Add cc_usb_write function
10883     
10884     This writes raw bytes to the USB port; useful for sending binary data
10885     for flashing or the upcoming flight test stuff.
10886     
10887     Signed-off-by: Keith Packard <keithp@keithp.com>
10888
10889 commit 0a6c76fc0525d6588a1d88127f0085f13a02f1af
10890 Author: Keith Packard <keithp@keithp.com>
10891 Date:   Sun May 25 20:55:11 2014 -0700
10892
10893     altosui/altosuilib/altoslib: Move more stuff out of autosui. Reduce site map memory
10894     
10895     Prepare to share with TeleGPS application.
10896     
10897     This also has the changes to the site map tile which cache only a few
10898     images and regenerate the flight path on the fly, saving piles of memory
10899     
10900     Signed-off-by: Keith Packard <keithp@keithp.com>
10901
10902 commit 4ac7797d3efb9cc2d9fae88519f55e40b1050224
10903 Author: Keith Packard <keithp@keithp.com>
10904 Date:   Sun May 25 20:47:49 2014 -0700
10905
10906     altosui/altosuilib: Cleanup -Xlint:unchecked warnings
10907     
10908     Add parametric types to avoid unchecked warnings.
10909     
10910     Signed-off-by: Keith Packard <keithp@keithp.com>
10911
10912 commit b60a3689910731d9bdb8a431a3dcc9e99f961b35
10913 Author: Keith Packard <keithp@keithp.com>
10914 Date:   Thu May 22 18:46:58 2014 -0700
10915
10916     altoslib: Move CSV/KML output code to altoslib
10917     
10918     It's sharable, so share it
10919     
10920     Signed-off-by: Keith Packard <keithp@keithp.com>
10921
10922 commit 2625a464417c8475c66101757ca2c30cd6c74e0c
10923 Author: Keith Packard <keithp@keithp.com>
10924 Date:   Wed May 21 14:02:35 2014 -0700
10925
10926     altos: Add config values for tracker start motion limits
10927     
10928     TeleGPS switches from 'pad' to 'drogue' states after the device moves
10929     a specified distance from the initial starting point. These values can
10930     be configured, and this is the configuration for them.
10931     
10932     Signed-off-by: Keith Packard <keithp@keithp.com>
10933
10934 commit 161ae96f9ec11e2586df07c0f6d724ddc4dad76c
10935 Author: Keith Packard <keithp@keithp.com>
10936 Date:   Wed May 21 14:00:05 2014 -0700
10937
10938     altos/test: Parse mega ground data. Fix pyro parsing
10939     
10940     This gets ao_flight_test_mega working with eeprom files
10941     
10942     Signed-off-by: Keith Packard <keithp@keithp.com>
10943
10944 commit 43be26603827b5930bf3e8082610cfa19b45534d
10945 Author: Keith Packard <keithp@keithp.com>
10946 Date:   Wed May 21 13:58:54 2014 -0700
10947
10948     altos/test: Get APRS generation test working again
10949     
10950     APRS now includes sat info, so we have to fake that up to generate an
10951     APRS test file
10952     
10953     Signed-off-by: Keith Packard <keithp@keithp.com>
10954
10955 commit 2a3846df381a5eeac8ec3327c770af502aaf4e76
10956 Author: Keith Packard <keithp@keithp.com>
10957 Date:   Wed May 21 01:37:57 2014 -0700
10958
10959     altos: Don't define ao_ignite_decivolt without igniters
10960     
10961     Signed-off-by: Keith Packard <keithp@keithp.com>
10962
10963 commit af782e92c6a0c0a6b0fc2fa52519749a88ca8fb8
10964 Author: Keith Packard <keithp@keithp.com>
10965 Date:   Wed May 21 01:36:40 2014 -0700
10966
10967     altos: Expose ao_gps_set_rate from u-blox driver
10968     
10969     This lets applications set the desired GPS update rate to reduce power usage
10970     
10971     Signed-off-by: Keith Packard <keithp@keithp.com>
10972
10973 commit 8b488bdd0f5c91be7e5aae1c8f0193e713734b14
10974 Author: Keith Packard <keithp@keithp.com>
10975 Date:   Wed May 21 01:35:33 2014 -0700
10976
10977     altos: Fix cc115l debug build
10978     
10979     New compiler warning flags and moving to the nxp require a few minor
10980     changes in the code to make it work.
10981     
10982     Signed-off-by: Keith Packard <keithp@keithp.com>
10983
10984 commit cb228304d8df3063914ab505a530d4ea79ca027d
10985 Author: Keith Packard <keithp@keithp.com>
10986 Date:   Wed May 21 01:34:27 2014 -0700
10987
10988     altos: Allow APRS to send just battery voltage
10989     
10990     Don't require apogee and main voltages as well
10991     
10992     Signed-off-by: Keith Packard <keithp@keithp.com>
10993
10994 commit ca338a897ba3237652a3ae092e660f26c9e35074
10995 Author: Keith Packard <keithp@keithp.com>
10996 Date:   Wed May 21 01:39:46 2014 -0700
10997
10998     altos/lpc: whitespace
10999     
11000     Signed-off-by: Keith Packard <keithp@keithp.com>
11001
11002 commit 0a3312e725d914bbba6355e07d2f1d2833d2d6c2
11003 Author: Keith Packard <keithp@keithp.com>
11004 Date:   Wed May 21 01:39:01 2014 -0700
11005
11006     altos/lpc: adc code computes number of active ADC channels
11007     
11008     Don't require the application to provide AO_NUM_ADC when AO_ADC_NUM is
11009     computed automatically.
11010     
11011     Signed-off-by: Keith Packard <keithp@keithp.com>
11012
11013 commit b278a73cb54ba2f107bf91089f87c11528f017ab
11014 Author: Keith Packard <keithp@keithp.com>
11015 Date:   Wed May 21 01:41:38 2014 -0700
11016
11017     altos/stm: Make stm applications depend on ao_boot.h
11018     
11019     This should make sure they get recompiled when boot stuff changes.
11020     
11021     Signed-off-by: Keith Packard <keithp@keithp.com>
11022
11023 commit f3544daf08f38aa8e28ca214a19ab7fd47c0c802
11024 Author: Keith Packard <keithp@keithp.com>
11025 Date:   Fri May 16 00:00:12 2014 -0600
11026
11027     altosui: Remove another beep config debug printf
11028     
11029     Signed-off-by: Keith Packard <keithp@keithp.com>
11030
11031 commit eeacc001ba089b4bf5552b8ef36e61a0a96efabe
11032 Author: Keith Packard <keithp@keithp.com>
11033 Date:   Thu May 15 23:57:50 2014 -0600
11034
11035     altosui: Remove debug printf about beep config
11036     
11037     Signed-off-by: Keith Packard <keithp@keithp.com>
11038
11039 commit 6833e466d7d77765199bf4d21437c34a4eceb044
11040 Author: Keith Packard <keithp@keithp.com>
11041 Date:   Thu May 15 23:46:41 2014 -0600
11042
11043     altos: stm and lpc ao_boot.h were identical. move to kernel.
11044     
11045     These two files were absolutely identical, so share them by moving
11046     under kernel instead.x
11047     
11048     Signed-off-by: Keith Packard <keithp@keithp.com>
11049
11050 commit 211d9af507daf9a8611ed1813415bee27e3839eb
11051 Author: Keith Packard <keithp@keithp.com>
11052 Date:   Thu May 15 23:34:17 2014 -0600
11053
11054     altos: Use explicit boot loader signal in ao_boot_reboot
11055     
11056     Instead of just "knowing" that ao_boot_loader will be passed zero when
11057     the application wants to get back to the boot loader, explicitly
11058     define the values so that both sides always agree.
11059     
11060     Signed-off-by: Keith Packard <keithp@keithp.com>
11061
11062 commit 0bf1c74e83fe49a11916b52596363f4dd56c522c
11063 Author: Keith Packard <keithp@keithp.com>
11064 Date:   Thu May 15 23:10:54 2014 -0600
11065
11066     doc: Document the Apogee Lockout setting
11067     
11068     Signed-off-by: Keith Packard <keithp@keithp.com>
11069
11070 commit dbb0fcf6d161a9d49fe699c37a18e4c33c409b59
11071 Author: Bdale Garbee <bdale@gag.com>
11072 Date:   Thu May 15 17:20:39 2014 -0600
11073
11074     include EasyMega Makefiles
11075
11076 commit 0948f5d96456b2e7f57ad75dfc9ef455ba197163
11077 Author: Bdale Garbee <bdale@gag.com>
11078 Date:   Thu May 15 17:19:08 2014 -0600
11079
11080     working?
11081
11082 commit 0fd608868aa03f81b2d902e1da13ee0b1ab20b78
11083 Author: Bdale Garbee <bdale@gag.com>
11084 Date:   Thu May 15 16:23:17 2014 -0600
11085
11086     lose the (old) easymega-v1.0 directory in favor of my fresher 0.1
11087
11088 commit 819f73698f57e76dca50fe4fadccebd23ffb776d
11089 Author: Keith Packard <keithp@keithp.com>
11090 Date:   Thu May 15 09:31:24 2014 -0600
11091
11092     altos: Make quadrature debounce per-pin rather than per-device
11093     
11094     Debouncing per-pin means we don't lose transitions, which makes
11095     counting a lot more precise.
11096     
11097     Signed-off-by: Keith Packard <keithp@keithp.com>
11098
11099 commit da13064382e9673e69cdfae6abbac253c9fc42fc
11100 Author: Keith Packard <keithp@keithp.com>
11101 Date:   Thu May 15 09:30:32 2014 -0600
11102
11103     altos/telemini-v2.0: Enable beep frequency configuration
11104     
11105     Now that there's space for this, add it in.
11106     
11107     Signed-off-by: Keith Packard <keithp@keithp.com>
11108
11109 commit 36002fc724702d34302f3cc0df593019ca8db4e0
11110 Author: Keith Packard <keithp@keithp.com>
11111 Date:   Thu May 15 09:29:52 2014 -0600
11112
11113     altos/telemini-v2.0: Remove old baro->alt conversion table
11114     
11115     TeleMini doesn't have two baro sensors...
11116     
11117     Signed-off-by: Keith Packard <keithp@keithp.com>
11118
11119 commit d0d29cc233b0d444782530fea15d957b2b4c45d7
11120 Author: Keith Packard <keithp@keithp.com>
11121 Date:   Thu May 15 09:28:30 2014 -0600
11122
11123     altos/cc1111: Switch P1_0 from a green LED to USB pullup
11124     
11125     Signed-off-by: Keith Packard <keithp@keithp.com>
11126
11127 commit 3225fb54ec1beaf6dc8553ab4f5b86bea6bdf1f3
11128 Author: Keith Packard <keithp@keithp.com>
11129 Date:   Thu May 15 09:27:34 2014 -0600
11130
11131     altos/cc1111: Add support for CPU-driven USB pullup
11132     
11133     Signed-off-by: Keith Packard <keithp@keithp.com>
11134
11135 commit 940ec6a2d5b054f68da39945a00f4d1b36d1b318
11136 Author: Keith Packard <keithp@keithp.com>
11137 Date:   Tue May 13 22:46:19 2014 -0700
11138
11139     altos/cc1111: Errata fix isn't needed for discontinued products
11140     
11141     And, doesn't fit in memory for some of them, so don't compile it.
11142     
11143     Signed-off-by: Keith Packard <keithp@keithp.com>
11144
11145 commit feb0b5f8b28767197f87e5818812d6640c1f40e6
11146 Author: Keith Packard <keithp@keithp.com>
11147 Date:   Tue May 13 17:30:47 2014 -0700
11148
11149     altos/cc1111: Wait for xtal to be stable
11150     
11151     Errata http://www.ti.com/lit/er/swrz022c/swrz022c.pdf says that the
11152     xtal is stable bit is bogus and that you need to just delay for a while.
11153     
11154     Signed-off-by: Keith Packard <keithp@keithp.com>
11155
11156 commit 8124af8c27b2b9e446aa3a4f1da83d4db7c1ea87
11157 Merge: 6dd7eae 3bcf4bd
11158 Author: Keith Packard <keithp@keithp.com>
11159 Date:   Mon May 12 23:21:55 2014 -0700
11160
11161     Merge remote-tracking branch 'origin/master'
11162
11163 commit 6dd7eae5e4752d2098797e96953db8923e26835b
11164 Author: Keith Packard <keithp@keithp.com>
11165 Date:   Mon May 12 23:20:08 2014 -0700
11166
11167     ao-tools/ao-usbload: Check image flash usage against device flash availability
11168     
11169     For devices which report the range of valid flash addresses from their
11170     boot loader, check the loaded image to make sure it fits within that range.
11171     
11172     Signed-off-by: Keith Packard <keithp@keithp.com>
11173
11174 commit 8a114bac1145359f3953ce70f049a6be71df5300
11175 Author: Keith Packard <keithp@keithp.com>
11176 Date:   Mon May 12 23:18:41 2014 -0700
11177
11178     altos/flash-loader: Check memory addresses against flash space
11179     
11180     This validates memory read/write requests to make sure they are within
11181     the available flash memory space.
11182     
11183     This also reports the flash base and bounds addresses in the 'version'
11184     command so that the loader can validate the image before attempting to
11185     write it.
11186     
11187     Signed-off-by: Keith Packard <keithp@keithp.com>
11188
11189 commit a25c34ef0a92beaa0695e0d0020eda5e26b309e2
11190 Author: Keith Packard <keithp@keithp.com>
11191 Date:   Mon May 12 22:56:38 2014 -0700
11192
11193     altos/stm: Use #define'd constants for GPIO register addresses
11194     
11195     This lets the compiler short-circuit the tests in ao_enable_gpio and
11196     ao_disable_gpio to save a bit of code space and time.
11197     
11198     Signed-off-by: Keith Packard <keithp@keithp.com>
11199
11200 commit 530894f508874f4cb3db644ca9ca679ed704f964
11201 Author: Keith Packard <keithp@keithp.com>
11202 Date:   Mon May 12 22:55:38 2014 -0700
11203
11204     altos/stm: Figure out available flash space based on chip id registers
11205     
11206     Look at the flash size and the device id registers to figure out how
11207     much flash is available.
11208     
11209     Signed-off-by: Keith Packard <keithp@keithp.com>
11210
11211 commit 2c543be5548ccda6bd29a2a7659fcc287f7a9f07
11212 Author: Keith Packard <keithp@keithp.com>
11213 Date:   Mon May 12 22:54:35 2014 -0700
11214
11215     altos/stm: White space fix in ao_boot_pin.c
11216
11217 commit 2f196323a2829f9537f3b339f19478127ffde623
11218 Author: Keith Packard <keithp@keithp.com>
11219 Date:   Mon May 12 22:53:07 2014 -0700
11220
11221     altos/stm: Use flash address of boot loader instead of 0x0
11222     
11223     Flash is at 0x08000000, but when the chip boots, it can be at 0x0 as
11224     well. Use the 0x08000000 address when rebooting to flash
11225     
11226     Signed-off-by: Keith Packard <keithp@keithp.com>
11227
11228 commit 6a6053dfed6fc1a7f50be0c62782d0050758cd0b
11229 Author: Keith Packard <keithp@keithp.com>
11230 Date:   Mon May 12 22:51:50 2014 -0700
11231
11232     altos: Assume all LPC products will have 32KB of flash
11233     
11234     If we ever use something smaller than this, we'll need to figure out
11235     how to tell how much memory the device has.
11236     
11237     Signed-off-by: Keith Packard <keithp@keithp.com>
11238
11239 commit d1908101241b1002fbc582b0a2c27045065a6615
11240 Author: Keith Packard <keithp@keithp.com>
11241 Date:   Mon May 12 22:51:16 2014 -0700
11242
11243     altos: Report amount of program space available in the version command
11244     
11245     Signed-off-by: Keith Packard <keithp@keithp.com>
11246
11247 commit 3af4e824938fe07fe75c6d24d9906aebfbe578f3
11248 Author: Keith Packard <keithp@keithp.com>
11249 Date:   Mon May 12 22:50:41 2014 -0700
11250
11251     altos: Add LED test command to pca9922 driver
11252     
11253     This lets you control the LEDs from the command line to test things.
11254     
11255     Signed-off-by: Keith Packard <keithp@keithp.com>
11256
11257 commit 47750e236c45ab03f28fc3393996edb2bd4312e3
11258 Author: Keith Packard <keithp@keithp.com>
11259 Date:   Mon May 12 22:49:39 2014 -0700
11260
11261     ao-bringup: Use official binaries for EasyMini turnon
11262     
11263     Don't use locally built ones, use the official ones found in
11264     ~/altusmetrumllc/Binaries to ensure that all devices are shipped with
11265     known firmware.
11266     
11267     Signed-off-by: Keith Packard <keithp@keithp.com>
11268
11269 commit 5f4a1b3e553276a4d6727c111fe290fa3690fa1e
11270 Author: Keith Packard <keithp@keithp.com>
11271 Date:   Mon May 12 22:48:45 2014 -0700
11272
11273     ao-bringup: test-baro should accept altitudes a bit below sea level
11274     
11275     Testing baro sensors on a particularly high pressure day at Keith's
11276     house yields altitudes down to -20m or so.
11277     
11278     Signed-off-by: Keith Packard <keithp@keithp.com>
11279
11280 commit 238ddde1ffdb8521d06519306cfb76271ae552b9
11281 Author: Keith Packard <keithp@keithp.com>
11282 Date:   Mon May 12 22:47:55 2014 -0700
11283
11284     atosui: Hide Callsign and RSSI tabs for devices without a radio
11285     
11286     When doing Monitor Idle with EasyMini, it's nice to not put fields on
11287     the screen which won't ever have useful data in them.
11288     
11289     Signed-off-by: Keith Packard <keithp@keithp.com>
11290
11291 commit 3bcf4bdd3e3f3751ad9d517696b5573dd4593846
11292 Author: Bdale Garbee <bdale@gag.com>
11293 Date:   Mon May 12 17:31:14 2014 -0600
11294
11295     update TeleMega turn-on script and Releasing for new stable firmware home
11296
11297 commit cbb6f7a3abbde39163f2905badba0ae88744b104
11298 Author: Bdale Garbee <bdale@gag.com>
11299 Date:   Fri May 9 12:30:25 2014 -0600
11300
11301     fix copyright year
11302
11303 commit 8d9c79f5c162e07d57d42c6ba5825a3327a911d5
11304 Author: Keith Packard <keithp@keithp.com>
11305 Date:   Fri May 9 00:05:39 2014 -0700
11306
11307     altos: Simplify quadrature tracking
11308     
11309     Set the timer to 200Hz for a 5ms debounce interval. Then, simply look
11310     for transitions ending in both bits in the encoder being off, which
11311     indicates the the encoder is resting in a detent. If bit '2' is
11312     turning off, the encoder was rotated clockwise, otherwise the encoder
11313     was rotated counter clockwise.
11314     
11315     This is a lot more reliable, although still not perfect.
11316     
11317     Signed-off-by: Keith Packard <keithp@keithp.com>
11318
11319 commit ef48e1bb73c791d731b0d2c0e5beef1539103049
11320 Author: Keith Packard <keithp@keithp.com>
11321 Date:   Mon May 5 23:46:34 2014 -0700
11322
11323     altos: Clean up trailing whitespace in ao_pad.c
11324     
11325     Signed-off-by: Keith Packard <keithp@keithp.com>
11326
11327 commit c8ad50495e2d81209a4882dd4f82c19d9ae2ac34
11328 Author: Keith Packard <keithp@keithp.com>
11329 Date:   Mon May 5 23:45:30 2014 -0700
11330
11331     altos: Fix byte offsets in the mega AO_LOG_FLIGHT packets
11332     
11333     Just comments, but even those should be correct
11334     
11335     Signed-off-by: Keith Packard <keithp@keithp.com>
11336
11337 commit b22dff94778b1f15a6ad1989d526b936f0fa09ea
11338 Author: Keith Packard <keithp@keithp.com>
11339 Date:   Mon May 5 23:43:44 2014 -0700
11340
11341     altos: ublox driver always offers course data when it has a fix
11342     
11343     Set the AO_GPS_COURSE_VALID bit to signal that this part of the GPS
11344     data is valid.
11345     
11346     Signed-off-by: Keith Packard <keithp@keithp.com>
11347
11348 commit c9d6a1fbb3148f03864df6d1ed5f6b6dccd7b383
11349 Author: Keith Packard <keithp@keithp.com>
11350 Date:   Mon May 5 23:41:43 2014 -0700
11351
11352     altosui: Add GPS course, ground speed and climb rate to graphs
11353     
11354     Signed-off-by: Keith Packard <keithp@keithp.com>
11355
11356 commit 39fbc4cb1d4c92522c90aa5e36fd62a4827d8306
11357 Author: Keith Packard <keithp@keithp.com>
11358 Date:   Mon May 5 23:38:44 2014 -0700
11359
11360     altoslib: Parse remaining mega AO_LOG_FLIGNT and AO_LOG_GPS_TIME fields
11361     
11362     GPS fields past 'day' were not getting parsed. Ground values for the
11363     IMU were not getting parsed, but a false 'temperature' value was being read.
11364     
11365     Signed-off-by: Keith Packard <keithp@keithp.com>
11366
11367 commit d2e6efa810b7fccc5af937386a40ae5af064bf26
11368 Author: Keith Packard <keithp@keithp.com>
11369 Date:   Mon May 5 23:38:05 2014 -0700
11370
11371     altoslib: Add a comment to remind us to fix the IMU code to deal with calibration
11372     
11373     Signed-off-by: Keith Packard <keithp@keithp.com>
11374
11375 commit d59d6787bfe26c3b18491ece602ad6cc5cf26c42
11376 Author: Keith Packard <keithp@keithp.com>
11377 Date:   Sat May 3 10:58:31 2014 -0700
11378
11379     altos: 8051 64 * 16 multiply function was broken for negative 64-bit
11380     
11381     It was jumping around the actual multiply when the 64-bit argument was negative.
11382     
11383     Signed-off-by: Keith Packard <keithp@keithp.com>
11384
11385 commit c49e13a7807a74bb66c83cd4a2e10eb601f59e62
11386 Author: Bdale Garbee <bdale@gag.com>
11387 Date:   Thu May 8 16:24:26 2014 -0600
11388
11389     relay control implemented, this project is now complete
11390
11391 commit acaad70e3db8f0b6ae45ca8309833db57bdf5ca2
11392 Author: Bdale Garbee <bdale@gag.com>
11393 Date:   Thu May 8 16:09:11 2014 -0600
11394
11395     first cut of usbrelay-v0.1 support .. LEDs wiggle, not switching relay yet
11396
11397 commit 2dfc4bc92b11252f17103f28198a702a3fdc2b2d
11398 Author: Keith Packard <keithp@keithp.com>
11399 Date:   Fri May 2 13:53:08 2014 -0700
11400
11401     altosui: Add configuration UI for beeper tone
11402     
11403     Signed-off-by: Keith Packard <keithp@keithp.com>
11404
11405 commit 027b1470c7a2d007eaab5c8d49f772b0c7559b80
11406 Author: Keith Packard <keithp@keithp.com>
11407 Date:   Fri May 2 12:26:07 2014 -0700
11408
11409     altos: Add configurable beep tone
11410     
11411     This lets you directly set the mid-range beep tone; the high and low
11412     tones remain set off of that in the same ratio as before.
11413     
11414     Note that none of the cc1111 products get this feature as they don't
11415     have enough flash space anymore...
11416     
11417     Signed-off-by: Keith Packard <keithp@keithp.com>
11418
11419 commit 8e3842660274ac4bcd7b5a78f5db215222b1c4de
11420 Author: Keith Packard <keithp@keithp.com>
11421 Date:   Wed Apr 30 22:14:37 2014 -0700
11422
11423     altos: For telelco discovery packets, retry 5 times with shorter timeout
11424     
11425     A timeout of 10ms is more than enough to receive a query packet, but
11426     if we miss it during device discovery, it's a pain, so retry 5 times
11427     to make sure we find everyone.
11428     
11429     Signed-off-by: Keith Packard <keithp@keithp.com>
11430
11431 commit 0223fced2c6d2b9f63ede6258afae46c3f55c200
11432 Author: Keith Packard <keithp@keithp.com>
11433 Date:   Wed Apr 30 22:13:44 2014 -0700
11434
11435     ao-tools: Clean up ao-sym structure an initializers
11436     
11437     Remove unused 'default_addr' field. Use named initializers when
11438     setting up the struct.
11439     
11440     Signed-off-by: Keith Packard <keithp@keithp.com>
11441
11442 commit 35efd4e51ece706234f80c076eb7f4f70c66098d
11443 Author: Keith Packard <keithp@keithp.com>
11444 Date:   Wed Apr 30 22:12:30 2014 -0700
11445
11446     ao-load: Make ao_sym static to avoid collision with ao-editaltos
11447     
11448     ao-load doesn't use ao-editaltos at this point, but does share the
11449     same name for the symbol table. To make the linker happier, make the
11450     ao-load version static.
11451     
11452     Signed-off-by: Keith Packard <keithp@keithp.com>
11453
11454 commit fd406000659a11862e05c22dbb20cdb738f56b01
11455 Author: Keith Packard <keithp@keithp.com>
11456 Date:   Wed Apr 30 22:11:39 2014 -0700
11457
11458     ao-telem: Dump orientation field from TeleMega sensor telemetry packet
11459     
11460     Signed-off-by: Keith Packard <keithp@keithp.com>
11461
11462 commit 2cf65d60e1c73dbff0badbe1ee6cb43d75bf803c
11463 Author: Keith Packard <keithp@keithp.com>
11464 Date:   Wed Apr 30 22:10:29 2014 -0700
11465
11466     altosui: Mark TeleMega additional pyro ignitor fired points in graphs
11467     
11468     Add markers to indicate when each additional pyro channel fires
11469     
11470     Signed-off-by: Keith Packard <keithp@keithp.com>
11471
11472 commit ecebb3902868d1d7485d2bc99ba4140c6b90567e
11473 Author: Keith Packard <keithp@keithp.com>
11474 Date:   Wed Apr 30 21:30:46 2014 -0700
11475
11476     altoslib: Track pyro firing state when reading mega eeprom files
11477     
11478     TeleMega records whether each pyro has been fired in the eeprom file;
11479     track that in the AltosState record.
11480     
11481     Signed-off-by: Keith Packard <keithp@keithp.com>
11482
11483 commit 5fb246fb50e262aa81ef7eb430be9782cfcf8848
11484 Author: Keith Packard <keithp@keithp.com>
11485 Date:   Tue Apr 29 19:04:30 2014 -0700
11486
11487     altosui: Add extra ignitors to graphable objects
11488     
11489     List all of the available extra ignitors as possible things to graph.
11490     
11491     Signed-off-by: Keith Packard <keithp@keithp.com>
11492
11493 commit f8429152e438eb72618edaf5983ae1cd5d3d4dab
11494 Author: Bdale Garbee <bdale@gag.com>
11495 Date:   Sun Apr 13 08:58:36 2014 -0600
11496
11497     ugly hack (just make sleep longer) to work around ttyACM* discovery issue
11498
11499 commit 3b5c4d88671e6c511fbfb1ce6b046f558dd6c2bf
11500 Author: Keith Packard <keithp@keithp.com>
11501 Date:   Sat Apr 12 17:46:34 2014 -0700
11502
11503     altos: Switch beeping to farnsworth spacing
11504     
11505     Use 17wpm/12wpm farnsworth spacing for the state reports. Leave the
11506     numeric reports running slowly as those require counting.
11507     
11508     Signed-off-by: Keith Packard <keithp@keithp.com>
11509
11510 commit 8628f7e02834a476d5cb3afa4cbf8d46a4b3c513
11511 Author: Keith Packard <keithp@keithp.com>
11512 Date:   Sat Apr 12 17:45:38 2014 -0700
11513
11514     altosuilib: Make lines in graphs 2 units wide
11515     
11516     This makes the graphs a lot easier to read.
11517     
11518     Signed-off-by: Keith Packard <keithp@keithp.com>
11519
11520 commit 9e18c524fa2d1f648f265b3c3105f5ceacf06c10
11521 Author: Keith Packard <keithp@keithp.com>
11522 Date:   Fri Apr 11 16:40:06 2014 -0700
11523
11524     altoslib/altosui/altosuilib/libaltos: Remove trailing whitespace
11525     
11526     Just cleaning up the source code.
11527     
11528     Signed-off-by: Keith Packard <keithp@keithp.com>
11529
11530 commit 7b275ddfe20f54857d7d1abb98607c406b678090
11531 Author: Keith Packard <keithp@keithp.com>
11532 Date:   Fri Apr 11 16:31:32 2014 -0700
11533
11534     altos: Add 'microwater' product
11535     
11536     This is a custom firmware spin for micropeak designed for use with
11537     water rockets that sets the boost detect altitude to 10m instead of 30m.
11538     
11539     Signed-off-by: Keith Packard <keithp@keithp.com>
11540
11541 commit 99c729495a8cc589718607ee35d22454c6af2994
11542 Author: Keith Packard <keithp@keithp.com>
11543 Date:   Sun Apr 6 23:46:48 2014 -0700
11544
11545     altosui: Disable flight log configuration while flights are stored
11546     
11547     The log code won't let you resize the maximum flight log while there
11548     is still data on the flight computer; the code to figure that out in
11549     the UI was busted, leaving users confused about why it wasn't working.
11550     
11551     Signed-off-by: Keith Packard <keithp@keithp.com>
11552
11553 commit 4211c59e585545817b3cac02b41bb73106d6403e
11554 Author: Keith Packard <keithp@keithp.com>
11555 Date:   Sun Apr 6 22:27:37 2014 -0700
11556
11557     altos: Fix nanopeak compile
11558     
11559     Nanopeak uses port B bit 3 for the LED instead of bit 4. Fix the async
11560     code to support arbitrary bits for the serial LED.
11561     
11562     Signed-off-by: Keith Packard <keithp@keithp.com>
11563
11564 commit 350d941a825d0271933de0bfdea82d3af5744c21
11565 Author: Keith Packard <keithp@keithp.com>
11566 Date:   Sun Apr 6 20:14:49 2014 -0700
11567
11568     altos: Provide stable binaries for MicroPeak
11569     
11570     Publish MicroPeak .hex file to LLC repo and install it from there,
11571     rather than rebuilding it locally. This ensures that the installed
11572     bits don't depend on local configuration of any kind.
11573     
11574     Signed-off-by: Keith Packard <keithp@keithp.com>
11575
11576 commit 2427eae5f3b429d302fbe14f708dcbc68c851954
11577 Author: Keith Packard <keithp@keithp.com>
11578 Date:   Sun Apr 6 19:48:07 2014 -0700
11579
11580     altos: Replace C code attiny async output with inline asm
11581     
11582     Using inline asm instead of C ensures that compiler changes will not
11583     affect the timing of the serial data.
11584     
11585     Signed-off-by: Keith Packard <keithp@keithp.com>
11586
11587 commit 1d943d4cade0a40723143626abf6e67f8eca9dcb
11588 Author: Keith Packard <keithp@keithp.com>
11589 Date:   Sat Apr 5 18:17:17 2014 -0700
11590
11591     altos: Build TeleBalloon v2.0 by default
11592     
11593     We're supporting this now, we might as well build it.
11594     
11595     Signed-off-by: Keith Packard <keithp@keithp.com>
11596
11597 commit c14cfb1436c988eb0a0d26d7c4d83aeccecbc8a3
11598 Author: Keith Packard <keithp@keithp.com>
11599 Date:   Sat Apr 5 18:16:21 2014 -0700
11600
11601     ao-bringup: Split out easymini test into separate script
11602     
11603     This lets you run the easy mini testing code without also flashing the device.
11604     
11605     Signed-off-by: Keith Packard <keithp@keithp.com>
11606
11607 commit 9cb10d73fee0e3f36c778fd2a9c9992b87669fe2
11608 Author: Keith Packard <keithp@keithp.com>
11609 Date:   Sat Apr 5 18:14:35 2014 -0700
11610
11611     altosui: Add ignitor tab for TeleMega extra ignitors
11612     
11613     Show the current state of the additional ignitors in another tab;
11614     there's not really room in the 'Pad' tab.
11615     
11616     Signed-off-by: Keith Packard <keithp@keithp.com>
11617
11618 commit ca66a035edecd7feffcd22257d3413ce0e189c07
11619 Author: Keith Packard <keithp@keithp.com>
11620 Date:   Sat Apr 5 00:28:13 2014 -0700
11621
11622     doc: Document new voltage beeping at startup time
11623
11624 commit 18148c33540cda8cb6658724a048ffd426c1a6bb
11625 Author: Keith Packard <keithp@keithp.com>
11626 Date:   Sat Apr 5 00:20:22 2014 -0700
11627
11628     Bump version to 1.3.3
11629     
11630     Signed-off-by: Keith Packard <keithp@keithp.com>
11631
11632 commit 0d367fc24bfd0377db6f3b00a888a18245616767
11633 Author: Keith Packard <keithp@keithp.com>
11634 Date:   Sat Apr 5 00:18:57 2014 -0700
11635
11636     altos: Report battery voltage instead of S at startup
11637     
11638     This works on everything with a beeper except TeleMetrum v1.0 which
11639     just doesn't have enough flash space for the code.
11640     
11641     Signed-off-by: Keith Packard <keithp@keithp.com>
11642
11643 commit 8bd732ac9cb816630f46dd269448ff8422620df8
11644 Author: Keith Packard <keithp@keithp.com>
11645 Date:   Fri Apr 4 23:40:22 2014 -0700
11646
11647     doc: Outline files are now generated, so don't put them in git
11648     
11649     Signed-off-by: Keith Packard <keithp@keithp.com>
11650
11651 commit ca4b20f9781b1dc6974d26952973dfe0d607478c
11652 Author: Keith Packard <keithp@keithp.com>
11653 Date:   Fri Apr 4 23:38:40 2014 -0700
11654
11655     ao-tools: Wait for device to become ready instead of failing
11656     
11657     For some reason, USB devices take 'a while' to become usable; instead
11658     of bailing immediately, sit around waiting to see if the device
11659     becomes usable if we get an EBUSY or EACCES error.
11660     
11661     Signed-off-by: Keith Packard <keithp@keithp.com>
11662
11663 commit 2424c0e6fe53789dc83d1e96439dcdc13e847b07
11664 Author: Keith Packard <keithp@keithp.com>
11665 Date:   Fri Apr 4 23:37:15 2014 -0700
11666
11667     ao-tools: Use 'program' command in ao-flash-lpc instead of 'flash'
11668     
11669     The program meta-command is supposed to do the whole thing, and seems
11670     more reliable in actually getting what we want flashed to the board.
11671     
11672     Signed-off-by: Keith Packard <keithp@keithp.com>
11673
11674 commit 4800497fa1fc449807ef0097cc3fed367641ae29
11675 Author: Keith Packard <keithp@keithp.com>
11676 Date:   Fri Apr 4 23:36:34 2014 -0700
11677
11678     ao-bringup: Get turnon_telemini working
11679     
11680     This script now does complete testing of the board
11681     
11682     Signed-off-by: Keith Packard <keithp@keithp.com>
11683
11684 commit 24167015705ae831692b95735968b04a876f935e
11685 Author: Keith Packard <keithp@keithp.com>
11686 Date:   Fri Apr 4 23:34:48 2014 -0700
11687
11688     altos: Rename 'core' to 'kernel'
11689     
11690     core remains a bad name to use -- dirvish skips files (and
11691     directories, it seems) with that name.
11692     
11693     Signed-off-by: Keith Packard <keithp@keithp.com>
11694
11695 commit bb9fdef607728cc326a82aa632e59724f272e53b
11696 Author: Keith Packard <keithp@keithp.com>
11697 Date:   Thu Apr 3 00:10:19 2014 -0700
11698
11699     altoslib: Missed a couple of easy mini voltage API changes
11700     
11701     Oh, and Tm was using Em conversions (which is almost right, except Tm
11702     doesn't have the history)
11703     
11704     Signed-off-by: Keith Packard <keithp@keithp.com>
11705
11706 commit 834cd051af1b80a98678de221d3c45cb30f8bb0d
11707 Author: Keith Packard <keithp@keithp.com>
11708 Date:   Wed Apr 2 23:35:36 2014 -0700
11709
11710     Add easymini turnon script and helpers
11711     
11712     Signed-off-by: Keith Packard <keithp@keithp.com>
11713
11714 commit 21d584b9bf93b96a05ab374105493c0e17df320f
11715 Author: Keith Packard <keithp@keithp.com>
11716 Date:   Wed Apr 2 22:04:18 2014 -0700
11717
11718     altoslib: Fix EasyMini voltage computations
11719     
11720     Early Em prototypes had a 3.0V regulator.
11721     Early v1.0 boards measured power past the blocking diode.
11722     
11723     Deal with both conditions to try and report more accurate voltages for
11724     EasyMini data.
11725     
11726     Signed-off-by: Keith Packard <keithp@keithp.com>
11727
11728 commit adddad0dd45f67d01487c8dd75b040ca3ab50fe2
11729 Author: Keith Packard <keithp@keithp.com>
11730 Date:   Wed Apr 2 20:36:26 2014 -0700
11731
11732     altoslib: Ignore speed/accel after boost when finding maxima
11733     
11734     Large spikes in acceleration often occur with ejection charges, which
11735     can cause bogus acceleration and speed data to be seen. Ignore those
11736     for the purpose of computing the maximum values of each.
11737     
11738     Signed-off-by: Keith Packard <keithp@keithp.com>
11739
11740 commit ff4deb417a460d96645fb6934890c2c195142be3
11741 Author: Keith Packard <keithp@keithp.com>
11742 Date:   Fri Mar 28 23:33:25 2014 -0700
11743
11744     altos: HAS_LED is useless; remove it
11745     
11746     ao_flight was trying to decide whether to turn off the red LED by
11747     checking whether HAS_LED was defined. And yet, none of the flight
11748     firmware defines that anymore, except for easymini which defines it to
11749     zero.
11750     
11751     Remove all uses and defines of this value, substituting AO_LED_RED in
11752     ao_flight.c, which has to be defined for the ao_led_off call to work.
11753     
11754     Signed-off-by: Keith Packard <keithp@keithp.com>
11755
11756 commit ca0bf9fb2d6323d7a454e5ce04b48d11366eee67
11757 Author: Keith Packard <keithp@keithp.com>
11758 Date:   Sun Mar 16 18:12:33 2014 -0700
11759
11760     Add easymega firmware
11761     
11762     A trimmed down TeleMega build with no radio or GPS, along with pin
11763     changes necessary for the device.
11764     
11765     Signed-off-by: Keith Packard <keithp@keithp.com>
11766
11767 commit 7e0b549b9b30d0a1290d28b2b94025a98af6a4de
11768 Author: Keith Packard <keithp@keithp.com>
11769 Date:   Mon Mar 10 22:55:45 2014 -0700
11770
11771     altosui: Hide Tilt Angle values when not available
11772     
11773     In the Ascent table, make sure the tilt angle fields are hidden when
11774     they are set to MISSING.
11775     
11776     Signed-off-by: Keith Packard <keithp@keithp.com>
11777
11778 commit 3b50e50fb814a572f7b4ea9e268a1ae150fe678c
11779 Author: Keith Packard <keithp@keithp.com>
11780 Date:   Sun Mar 9 21:10:10 2014 -0700
11781
11782     altos: Another missing usbtrng file
11783
11784 commit b5ac64bc0a6fd0fc23f39283e469c9820bdc88fe
11785 Author: Keith Packard <keithp@keithp.com>
11786 Date:   Sun Mar 9 21:08:25 2014 -0700
11787
11788     altos: Missing ao_pins files for usbtrng
11789     
11790     Signed-off-by: Keith Packard <keithp@keithp.com>
11791
11792 commit 469bd376d84bf8d76faa3b726d96061d4d98b998
11793 Author: Keith Packard <keithp@keithp.com>
11794 Date:   Sun Mar 9 20:59:43 2014 -0700
11795
11796     altos: Fix LPC LED driver
11797     
11798     Was using wrong types
11799     
11800     Signed-off-by: Keith Packard <keithp@keithp.com>
11801
11802 commit 6a4a074d690fb34af49704ac3cc4826eaf06dd9d
11803 Author: Keith Packard <keithp@keithp.com>
11804 Date:   Sun Mar 9 20:58:36 2014 -0700
11805
11806     altos: fix building LPC serial support for STDIO
11807     
11808     Signed-off-by: Keith Packard <keithp@keithp.com>
11809
11810 commit 9671ca6c42544463fd551f81113c221265a2296e
11811 Author: Keith Packard <keithp@keithp.com>
11812 Date:   Sun Mar 9 20:57:31 2014 -0700
11813
11814     altos: Don't require projects to define PACKET_HAS_SLAVE
11815     
11816     Really, most don't need it, and whinging about not having it defined
11817     isn't useful.
11818     
11819     Signed-off-by: Keith Packard <keithp@keithp.com>
11820
11821 commit e1e00a4b67fbdbae339219b35aefd44a1bcf9486
11822 Author: Keith Packard <keithp@keithp.com>
11823 Date:   Sat Mar 8 21:39:33 2014 -0800
11824
11825     Add USB True Random Number Generator product
11826     
11827     Just basic device support
11828     
11829     Signed-off-by: Keith Packard <keithp@keithp.com>
11830
11831 commit 6dad9ca543fbed3f849b01300224b1b21ef2eb08
11832 Author: Keith Packard <keithp@keithp.com>
11833 Date:   Sat Mar 8 16:25:33 2014 -0800
11834
11835     Re-add LCD bits to stm-demo
11836
11837 commit 32f0f39a953dabe19ec92611570e4a82da8f8dce
11838 Author: Keith Packard <keithp@keithp.com>
11839 Date:   Sat Mar 8 16:25:10 2014 -0800
11840
11841     Add flash loader for stm-demo board
11842
11843 commit 4c7da6d0ad568448c37761cd0c0108b9161a9345
11844 Author: Keith Packard <keithp@keithp.com>
11845 Date:   Fri Mar 7 21:27:26 2014 -0800
11846
11847     doc: Add separate outline pdf generation
11848     
11849     This generates one-page pdf files that contain just the outline of
11850     each product.
11851     
11852     Signed-off-by: Keith Packard <keithp@keithp.com>
11853
11854 commit 8f2a85027b496451c5934eb36fcdffbd5e5da177
11855 Author: Keith Packard <keithp@keithp.com>
11856 Date:   Fri Feb 28 23:04:54 2014 -0800
11857
11858     Install .desktopfile as _SCRIPTS so they are left executable
11859     
11860     .desktop files should be marked executable so that the desktop
11861     environment knows they are correct.
11862     
11863     Signed-off-by: Keith Packard <keithp@keithp.com>
11864
11865 commit a072cbb137126e677d3ebbf0245ec4ea5aa481ad
11866 Author: Keith Packard <keithp@keithp.com>
11867 Date:   Fri Feb 28 21:16:57 2014 -0800
11868
11869     altosui: Retry device enumeration after rebooting for self flash
11870     
11871     Windows takes 'a while' to include the rebooted device in the list of
11872     available devices, so try a few times with a 100ms delay so that we
11873     can avoid asking the user to select from an empty list.
11874     
11875     Signed-off-by: Keith Packard <keithp@keithp.com>
11876
11877 commit ac2cfb03158b4902466a72edad5dc471ee6bdb91
11878 Author: Keith Packard <keithp@keithp.com>
11879 Date:   Fri Feb 28 21:16:36 2014 -0800
11880
11881     Mark development sequence to 1.3.3 by bumping version to 1.3.2.1
11882     
11883     Signed-off-by: Keith Packard <keithp@keithp.com>
11884
11885 commit 57e5d13c0577e1b0a6e8117e2d04eeda6cf0b045
11886 Author: Keith Packard <keithp@keithp.com>
11887 Date:   Sun Feb 23 17:42:08 2014 -0800
11888
11889     libaltos: Link so with -znoexecstack flag
11890     
11891     This marks the library as not requiring an executable stack, which
11892     openjdk prefers
11893     
11894     Signed-off-by: Keith Packard <keithp@keithp.com>
11895
11896 commit 104b8bfc9b37fda175f2cb2a1e33601fbf6f48f6
11897 Merge: 403b95e 1edf7ef
11898 Author: Bdale Garbee <bdale@gag.com>
11899 Date:   Thu Feb 20 13:23:52 2014 -0700
11900
11901     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
11902
11903 commit 403b95ee27782309b564855b85285c9f5f5c7068
11904 Author: Bdale Garbee <bdale@gag.com>
11905 Date:   Thu Feb 20 13:23:32 2014 -0700
11906
11907     update turnon scripts to store cal values
11908
11909 commit 3ef0cc28758c68e6076afa809e157a84ce3661fb
11910 Author: Bdale Garbee <bdale@gag.com>
11911 Date:   Thu Feb 20 13:23:20 2014 -0700
11912
11913     typo fixes from Matt Kraai
11914
11915 commit 1edf7ef8026ac4ab698a7f99671e9348d18ffd0a
11916 Author: Keith Packard <keithp@keithp.com>
11917 Date:   Tue Feb 18 09:47:51 2014 -0800
11918
11919     altos: Create balloon-specific load for TMv2 hardware
11920     
11921     Signed-off-by: Keith Packard <keithp@keithp.com>
11922
11923 commit ff4ae350c24b3d6ef71e29191bb719b07ab9c5bb
11924 Author: Keith Packard <keithp@keithp.com>
11925 Date:   Tue Feb 18 09:46:17 2014 -0800
11926
11927     altos: Make balloon code run again
11928     
11929     This fixes the balloon code so that it works with recent altos bits
11930     
11931     Signed-off-by: Keith Packard <keithp@keithp.com>
11932
11933 commit 8b6f051663dd17492bece9efb9e898ef113ab414
11934 Author: Keith Packard <keithp@keithp.com>
11935 Date:   Tue Feb 18 09:45:41 2014 -0800
11936
11937     altos: Set reasonable accel values when !HAS_ACCEL
11938     
11939     This lets us use telemetrum log and telemetry formats for balloons
11940     
11941     Signed-off-by: Keith Packard <keithp@keithp.com>
11942
11943 commit 9f6983e3d61fa5231f3d0ce33dbc5aadf946b597
11944 Author: Keith Packard <keithp@keithp.com>
11945 Date:   Tue Feb 18 09:44:52 2014 -0800
11946
11947     altos: Expose ao_usb_running globally
11948     
11949     This lets other bits of the code know when USB has been connected.
11950     
11951     Signed-off-by: Keith Packard <keithp@keithp.com>
11952
11953 commit 9b9d5b273a410e315739c5c6eaa4105523056b9a
11954 Author: Keith Packard <keithp@keithp.com>
11955 Date:   Tue Feb 18 09:43:43 2014 -0800
11956
11957     altos: Move balloon flight code to core
11958     
11959     This lets us create more than one balloon product
11960     
11961     Signed-off-by: Keith Packard <keithp@keithp.com>
11962
11963 commit 43b1797189095c402e1c35bdc317c4196e180e66
11964 Author: Keith Packard <keithp@keithp.com>
11965 Date:   Mon Feb 17 21:30:28 2014 -0800
11966
11967     doc: Need to publish .svg files as well
11968     
11969     The drill templates are all .svg files that are referenced by the
11970     generated html.
11971     
11972     Signed-off-by: Keith Packard <keithp@keithp.com>
11973
11974 commit 874d0065ecb066ee746a016876edebc7cc6e3d96
11975 Author: Keith Packard <keithp@keithp.com>
11976 Date:   Mon Feb 17 21:27:57 2014 -0800
11977
11978     Re-create drill templates
11979     
11980     Using inkscape, the drill templates weren't getting printed
11981     correctly. Switching to hand-generated svg fixes that.
11982     
11983     The .xsl file is also fixed to really encourage the images to be
11984     printed at exactly 100%.
11985     
11986     Signed-off-by: Keith Packard <keithp@keithp.com>
11987
11988 commit 6e713f0a53d608a8855884b7a48e4e3423d8a3d2
11989 Author: Bdale Garbee <bdale@gag.com>
11990 Date:   Mon Feb 17 00:15:58 2014 -0700
11991
11992     deliver images used in MicroPeak manual to web server, too
11993
11994 commit 1d421a43494cf2003ac23fb8cd21d6ae05edfac8
11995 Author: Bdale Garbee <bdale@gag.com>
11996 Date:   Mon Feb 17 00:10:05 2014 -0700
11997
11998     update copyright year assertion in MicroPeak manual, remember during releases
11999
12000 commit a3ddb5906167e445f937b16fafb7f5c537852f0a
12001 Author: Keith Packard <keithp@keithp.com>
12002 Date:   Sun Feb 16 18:01:10 2014 -0800
12003
12004     Mark .desktop files as executable
12005     
12006     Signed-off-by: Keith Packard <keithp@keithp.com>
12007
12008 commit c860d837a0c97a091c5f47fce91bdb8beb4602d3
12009 Author: Keith Packard <keithp@keithp.com>
12010 Date:   Sun Feb 16 15:53:50 2014 -0800
12011
12012     micropeak: Construct linux install script
12013     
12014     Uses the same script as altosui, just edits the final path name
12015     
12016     Signed-off-by: Keith Packard <keithp@keithp.com>
12017
12018 commit 948a614a62754fd4fffd9b84ad83fd444e4f0437
12019 Author: Keith Packard <keithp@keithp.com>
12020 Date:   Sun Feb 16 15:17:40 2014 -0800
12021
12022     Move .desktop and icon management out of debian dir
12023     
12024     This constructs a .desktop file from a template and installs it, along
12025     with suitable .svg icons, during the normal build process
12026     
12027     Signed-off-by: Keith Packard <keithp@keithp.com>
12028
12029 commit 066a01ad0b4e73fdb47b43a42c1d0b7fae81a180
12030 Author: Keith Packard <keithp@keithp.com>
12031 Date:   Sun Feb 16 14:57:38 2014 -0800
12032
12033     Put altusmetrum.svg and micropeak.svg in icon directory
12034     
12035     Signed-off-by: Keith Packard <keithp@keithp.com>
12036
12037 commit 95f5a6ef52947088993d395874cf6aa502fd2503
12038 Merge: 135b6d4 de2a619
12039 Author: Bdale Garbee <bdale@gag.com>
12040 Date:   Sun Feb 16 15:53:35 2014 -0700
12041
12042     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
12043
12044 commit 135b6d4019f584c050b3d70c11fb5bcf2c7396c4
12045 Author: Bdale Garbee <bdale@gag.com>
12046 Date:   Sun Feb 16 15:53:22 2014 -0700
12047
12048     use svg in the .desktop file
12049
12050 commit 13dccd1869cdf00d4aa0df55a3ece33936cd520a
12051 Author: Bdale Garbee <bdale@gag.com>
12052 Date:   Sun Feb 16 15:51:32 2014 -0700
12053
12054     have the cal-freq script save cal values to a file
12055
12056 commit de2a619900ee23911c866d5aaff63a0f9388bfc7
12057 Author: Keith Packard <keithp@keithp.com>
12058 Date:   Sun Feb 16 13:01:29 2014 -0800
12059
12060     Add linux installer script
12061     
12062     Create a linux installer shell script that unpacks the archive in a
12063     sensible place and adds a .desktop file to the environment
12064     
12065     Signed-off-by: Keith Packard <keithp@keithp.com>
12066
12067 commit bf268354535a3a7b2e093235e5347ed2a6d809ff
12068 Author: Bdale Garbee <bdale@gag.com>
12069 Date:   Thu Feb 13 21:53:13 2014 -0700
12070
12071     updating changelog for release
12072
12073 commit e53be56179f4cd93227b6bdc28c2ae60b81db57d
12074 Author: Keith Packard <keithp@keithp.com>
12075 Date:   Sun Feb 9 23:47:47 2014 -0800
12076
12077     doc: Update the 1.3.2 release notes to include APRS and Fire Igniter changes
12078     
12079     Signed-off-by: Keith Packard <keithp@keithp.com>
12080
12081 commit d24ef4aa9429f4884548e5c9fd48d57e640f0d9d
12082 Author: Keith Packard <keithp@keithp.com>
12083 Date:   Sun Feb 9 23:46:39 2014 -0800
12084
12085     doc: Add remaining configurable parameters to the System Operation chapter
12086     
12087     Yes, this duplicates the section in the AltosUI chapter, but I'm not
12088     sure how to describe the device without talking about it in two
12089     places, so we might as well make both of them complete.
12090     
12091     Signed-off-by: Keith Packard <keithp@keithp.com>
12092
12093 commit e76948d382cf6980c3a5b6c48405d71c8811780b
12094 Author: Keith Packard <keithp@keithp.com>
12095 Date:   Sun Feb 9 22:54:31 2014 -0800
12096
12097     altos: Put locked/unlocked GPS status in APRS comments
12098     
12099     Replace the 'S' (which marks the field showing sats in view) with
12100     either 'L' or 'U' to tell the user whether the GPS receiver is locked
12101     or unlocked.
12102     
12103     This also removes the colons in the comment field to shorten it. This
12104     makes it fit on one line of my FT1D display.
12105     
12106     Signed-off-by: Keith Packard <keithp@keithp.com>
12107
12108 commit 5001a0f882af53dde33fc531215944c9d727baf4
12109 Author: Keith Packard <keithp@keithp.com>
12110 Date:   Sun Feb 9 22:53:05 2014 -0800
12111
12112     altos: Re-send previous GPS position in APRS if lock is lost
12113     
12114     APRS radios often show only the last received APRS packet, which means
12115     that erasing the last known GPS position when we lose lock by sending
12116     0/0/0 is unhelpful. Instead, just send the last known position, and
12117     make sure that we send 0/0/0 before we're locked the first time.
12118     
12119     Signed-off-by: Keith Packard <keithp@keithp.com>
12120
12121 commit 864d1e2282ac1d241478cf663ee24112c9d3dc37
12122 Author: Keith Packard <keithp@keithp.com>
12123 Date:   Sat Feb 8 22:02:02 2014 -0800
12124
12125     altos: Fixup named ADC printing
12126     
12127     Print all ADC values on one line when using named ADC values
12128     
12129     Signed-off-by: Keith Packard <keithp@keithp.com>
12130
12131 commit f750ef6f9745b15af45bb80f5b46b9e6f51796d8
12132 Author: Keith Packard <keithp@keithp.com>
12133 Date:   Sat Feb 8 20:05:02 2014 -0800
12134
12135     altos: Add needed math sources to TeleGPS v0.1 build
12136     
12137     APRS requires the logf function to report altitude.
12138     
12139     Signed-off-by: Keith Packard <keithp@keithp.com>
12140
12141 commit 6367ab2dec718c512073f70dfab86dbd1656b1fe
12142 Author: Keith Packard <keithp@keithp.com>
12143 Date:   Sat Feb 8 20:02:54 2014 -0800
12144
12145     altos: Report nsat in view in APRS packet
12146     
12147     This adds the number of sats in view (as opposed to the number of sats
12148     in solution) to the APRS packet.
12149     
12150     Signed-off-by: Keith Packard <keithp@keithp.com>
12151
12152 commit 8ddbbdcdc498a19ebf4a440bbf5d73b6538e0a57
12153 Author: Keith Packard <keithp@keithp.com>
12154 Date:   Sat Feb 8 20:00:56 2014 -0800
12155
12156     altos: Don't write more than 12 sat infos in ublox driver
12157     
12158     This was overwriting memory past the end of the ao_gps_tracking_data
12159     array, which isn't a good idea.
12160     
12161     Signed-off-by: Keith Packard <keithp@keithp.com>
12162
12163 commit 324073d14ed8215b74d9df51f2229827cd4401d0
12164 Author: Keith Packard <keithp@keithp.com>
12165 Date:   Sat Feb 1 00:32:43 2014 -0800
12166
12167     altos/stm: Block interrupts while reprogramming flash
12168     
12169     Wouldn't work well to get interrupted...
12170     
12171     Signed-off-by: Keith Packard <keithp@keithp.com>
12172
12173 commit d6d56c20465455b759f60a03fc96aa228ab9102e
12174 Author: Keith Packard <keithp@keithp.com>
12175 Date:   Sat Feb 1 00:06:30 2014 -0800
12176
12177     altos: Enable system timer in flash loader and prod watchdog with it
12178     
12179     This makes it possible to reflash the board without needing to disable
12180     the watchdog.
12181     
12182     Signed-off-by: Keith Packard <keithp@keithp.com>
12183
12184 commit 1d3420e51db4d1a46237e97aeb189d2a8eba7f5e
12185 Author: Keith Packard <keithp@keithp.com>
12186 Date:   Fri Jan 31 17:44:45 2014 -0800
12187
12188     altos: Eliminate warnings in FAT code
12189     
12190     The FAT file system code wasn't cleaned up when the warning fixes were
12191     done recently.
12192     
12193     Signed-off-by: Keith Packard <keithp@keithp.com>
12194
12195 commit 7a8adfed8fbbcaac71da9c6d54bbd3091f4d7511
12196 Author: Keith Packard <keithp@keithp.com>
12197 Date:   Thu Mar 21 10:16:35 2013 -0700
12198
12199     altos: Add watchdog timer task
12200     
12201     This new task frobs a pin periodically to inform the hardware that the
12202     operating system is running.
12203     
12204     Signed-off-by: Keith Packard <keithp@keithp.com>
12205
12206 commit 63683f91f5fe9588c1d905a572509cb674aaad68
12207 Author: Keith Packard <keithp@keithp.com>
12208 Date:   Wed Jan 23 21:36:18 2013 -0800
12209
12210     altos: Add names when reporting STM ADC values
12211     
12212     Signed-off-by: Keith Packard <keithp@keithp.com>
12213
12214 commit 7fdf6a6cc252c7813a857714f6088b7fd5bfab40
12215 Author: Keith Packard <keithp@keithp.com>
12216 Date:   Sat Feb 8 14:31:06 2014 -0800
12217
12218     doc: Add title page image to altusmetrum.pdf
12219     
12220     Signed-off-by: Keith Packard <keithp@keithp.com>
12221
12222 commit 2c70a7a49cc0e92df90ea17a870d661ca857c145
12223 Author: Keith Packard <keithp@keithp.com>
12224 Date:   Sat Feb 8 14:30:52 2014 -0800
12225
12226     doc: Ignore generate template XSL file
12227     
12228     Signed-off-by: Keith Packard <keithp@keithp.com>
12229
12230 commit 2320b788c47757032b2874e64479ef382456c2d3
12231 Author: Keith Packard <keithp@keithp.com>
12232 Date:   Sat Feb 8 14:24:48 2014 -0800
12233
12234     doc: Document GPS max height addition
12235     
12236     Signed-off-by: Keith Packard <keithp@keithp.com>
12237
12238 commit 8363326cd87fb1e53ad78146c0503aa476d2da89
12239 Author: Keith Packard <keithp@keithp.com>
12240 Date:   Sat Feb 8 14:24:13 2014 -0800
12241
12242     doc: Update micropeak docs to include lots of pictures
12243     
12244     Signed-off-by: Keith Packard <keithp@keithp.com>
12245
12246 commit 306028b33ebed45bcf379740cc3c01c2360c51f4
12247 Author: Keith Packard <keithp@keithp.com>
12248 Date:   Sat Feb 8 10:25:33 2014 -0800
12249
12250     doc: Micropeak doc updates for 1.3.2
12251     
12252     New 'download' button.
12253     Update download instructions for new USB adapter.
12254     
12255     Signed-off-by: Keith Packard <keithp@keithp.com>
12256
12257 commit 28d5239bff234cc1158a270a29c0e39067f613c3
12258 Author: Keith Packard <keithp@keithp.com>
12259 Date:   Fri Feb 7 22:45:26 2014 -0800
12260
12261     micropeak: Missing a couple of new exceptions when loading files
12262     
12263     The change to keep reading on invalid chars from the serial port
12264     exposed a couple of new exceptions from the MicroData code which the
12265     file loading code needs to cope with.
12266     
12267     Signed-off-by: Keith Packard <keithp@keithp.com>
12268
12269 commit 8d0d59c51138dc1b1bbf6933354fe9faf4d67986
12270 Author: Keith Packard <keithp@keithp.com>
12271 Date:   Fri Feb 7 22:32:17 2014 -0800
12272
12273     micropeak: Keep reading until we get valid data
12274     
12275     Don't stop just because we saw something invalid on the serial line;
12276     let the user try again, or cancel when they get bored.
12277     
12278     However, if the serial line disappears or some other fatal error
12279     occurs, then do stop and put up an error dialog.
12280     
12281     Signed-off-by: Keith Packard <keithp@keithp.com>
12282
12283 commit 4a5b3837b460d1b6fcea99312728114c4734495a
12284 Author: Keith Packard <keithp@keithp.com>
12285 Date:   Thu Feb 6 17:08:34 2014 -0800
12286
12287     altos: report 0/0/0 for APRS position when GPS is not locked
12288     
12289     We were reporting whatever the GPS device sent, even if it wasn't
12290     reporting a valid status. That's not terribly useful.
12291     
12292     Signed-off-by: Keith Packard <keithp@keithp.com>
12293
12294 commit 9e0bda088c097ac6bcc677d7b6d00683e73a68fb
12295 Author: Keith Packard <keithp@keithp.com>
12296 Date:   Mon Feb 3 00:24:38 2014 -0800
12297
12298     micropeak: Watch serial data during download
12299     
12300     This adds a text area to monitor the incoming serial data in case some
12301     problem occurs.
12302     
12303     Signed-off-by: Keith Packard <keithp@keithp.com>
12304
12305 commit 0c2f28cbc1cb312d3bcc8951176d79f234a1af04
12306 Author: Keith Packard <keithp@keithp.com>
12307 Date:   Mon Feb 3 00:26:42 2014 -0800
12308
12309     altoslib: Use existing unicode Charset in AltosLink
12310     
12311     Instead of making AltosLink look up the unicode charset, just provide
12312     it directly.
12313     
12314     Signed-off-by: Keith Packard <keithp@keithp.com>
12315
12316 commit 7df221c42948cb42cf777b899263c8ec9067bd55
12317 Author: Keith Packard <keithp@keithp.com>
12318 Date:   Fri Jan 31 18:09:26 2014 -0800
12319
12320     doc: Mention that an APRS interval of 0 disables it entirely
12321     
12322     And mention that the value is a time in seconds between APRS packets.
12323     
12324     Signed-off-by: Keith Packard <keithp@keithp.com>
12325
12326 commit 230af613d372afe540c6a8860199d717eedecf57
12327 Author: Keith Packard <keithp@keithp.com>
12328 Date:   Thu Jan 30 20:54:24 2014 -0800
12329
12330     doc: Replace screen captures with 'active' window ones
12331     
12332     These are the same as the previous captures, just with the titlebar
12333     highlighted instead of grey so that they're all consistent. These were
12334     also done with the gimp which makes the areas outside of the window
12335     (like outside the rounded corners) have zero alpha so that the white
12336     background shows through.
12337     
12338     Signed-off-by: Keith Packard <keithp@keithp.com>
12339
12340 commit 7e3088ece81ef85f3dbd4df51954bc90681d6b6e
12341 Author: Keith Packard <keithp@keithp.com>
12342 Date:   Thu Jan 30 18:42:08 2014 -0800
12343
12344     doc: Update screen capture of pyro config with correct names
12345     
12346     With the UI now using letters as TeleMega does, update the screen shot
12347     used in the manual to match
12348     
12349     Signed-off-by: Keith Packard <keithp@keithp.com>
12350
12351 commit eb9262901aff4f69fa3d2357693634cbee9bca46
12352 Author: Keith Packard <keithp@keithp.com>
12353 Date:   Thu Jan 30 18:38:01 2014 -0800
12354
12355     altosui: Use letter names for pyro channels in pyro config UI
12356     
12357     TeleMega has the extra pyro channels labeled A, B, C, D instead of 0,
12358     1, 2, 3. Use those names in the UI to avoid confusion.
12359     
12360     Signed-off-by: Keith Packard <keithp@keithp.com>
12361
12362 commit 4e94d785d9a1cce4eb5b3063d55e825719afb58e
12363 Author: Keith Packard <keithp@keithp.com>
12364 Date:   Tue Jan 28 21:52:57 2014 -0800
12365
12366     doc: Add explicit paragraph about using one battery with Tmega
12367     
12368     Just in case the factory-supplied jumper gets lost.
12369     
12370     Signed-off-by: Keith Packard <keithp@keithp.com>
12371
12372 commit f4f31590518875eda40473dd2178d6976a4f86a3
12373 Author: Bdale Garbee <bdale@gag.com>
12374 Date:   Tue Jan 28 18:21:10 2014 -0700
12375
12376     use firmware in /usr/share/altos for teledongle, update telemetrum for v2.0
12377
12378 commit 6b70b8b6bb4e8eae8159ec966847092d0b1deab3
12379 Author: Keith Packard <keithp@keithp.com>
12380 Date:   Fri Jan 24 22:43:25 2014 -0800
12381
12382     altoslib: Don't lose gps_height value between GPS samples
12383     
12384     gps_height is now reliably updated whenever GPS altitude data is
12385     received, so don't try to reset it between samples.
12386     
12387     Signed-off-by: Keith Packard <keithp@keithp.com>
12388
12389 commit ea8c9ca9dd24a026ea5bfe5a1ac70857181a88c8
12390 Author: Keith Packard <keithp@keithp.com>
12391 Date:   Fri Jan 24 22:40:49 2014 -0800
12392
12393     altosui: Show GPS max height in flight stats window of graph
12394     
12395     Uses the new state.max_gps_height() function.#
12396     
12397     Signed-off-by: Keith Packard <keithp@keithp.com>
12398
12399 commit e4616233f3942d2796ba6633477670a83669957b
12400 Author: Keith Packard <keithp@keithp.com>
12401 Date:   Fri Jan 24 22:39:10 2014 -0800
12402
12403     altoslib: Track GPS altitude values to be able to report max gps height
12404     
12405     This adds separate GPS altitude and GPS ground altitude values so that
12406     the AltosState object can report GPS max height.
12407     
12408     Signed-off-by: Keith Packard <keithp@keithp.com>
12409
12410 commit aa2edc97ac0c880e569baca453ff6302ad6da65f
12411 Author: Keith Packard <keithp@keithp.com>
12412 Date:   Fri Jan 24 21:34:39 2014 -0800
12413
12414     doc: Fix spelling of decelerate
12415
12416 commit eb3ffd06575ddd0be061aa2717c7075c823ed54e
12417 Author: Keith Packard <keithp@keithp.com>
12418 Date:   Fri Jan 24 21:31:17 2014 -0800
12419
12420     doc: Document flight computer wiring connections
12421     
12422     This details all of the wiring connections for each flight computer
12423     and explains how to wire batteries, switches and how to use external
12424     pyro batteries and active switches with each one.
12425     
12426     Signed-off-by: Keith Packard <keithp@keithp.com>
12427
12428 commit ee480d180cbdd712ab13d39716c38aabd4678d95
12429 Author: Keith Packard <keithp@keithp.com>
12430 Date:   Fri Jan 24 10:10:00 2014 -0800
12431
12432     Set version to 1.3.2 in preparation for release
12433     
12434     Signed-off-by: Keith Packard <keithp@keithp.com>
12435
12436 commit 9c4674d90f9b111e1b47abb7aee714ed12fa3aa5
12437 Author: Keith Packard <keithp@keithp.com>
12438 Date:   Fri Jan 24 09:35:55 2014 -0800
12439
12440     doc: Add 1.3.2 release notes
12441     
12442     Signed-off-by: Keith Packard <keithp@keithp.com>
12443
12444 commit 94be1e3eb9f94a59522743374d02a1f229266931
12445 Author: Keith Packard <keithp@keithp.com>
12446 Date:   Fri Jan 24 09:21:46 2014 -0800
12447
12448     altos: Tmega Don't try to log info about more than 12 GPS sats
12449     
12450     The mega log format has a single packet for GPS info which holds a
12451     maximum of 12 satellites. Bdale managed to get 14 sats in view, which
12452     ended up crashing the ground station software, and also overflowed the
12453     gps_tracking_data structure.
12454     
12455     Signed-off-by: Keith Packard <keithp@keithp.com>
12456
12457 commit dd28429405498fca0788ce9c19093898c84b10e5
12458 Author: Keith Packard <keithp@keithp.com>
12459 Date:   Thu Jan 23 22:16:36 2014 -0800
12460
12461     altoslib: Validate TeleMega GPS_SAT log packet nsat
12462     
12463     Make sure nsat is not more than the size of the array
12464     
12465     Signed-off-by: Keith Packard <keithp@keithp.com>
12466
12467 commit afbae4c6b7a658f690cb827acfef015e9e2da318
12468 Author: Bdale Garbee <bdale@gag.com>
12469 Date:   Wed Jan 22 21:31:03 2014 -0700
12470
12471     update notes on how to release
12472
12473 commit 0ef0c50536e5eb6ad3455b5828983307edbab828
12474 Author: Bdale Garbee <bdale@gag.com>
12475 Date:   Wed Jan 22 20:53:03 2014 -0700
12476
12477     freshen ChangeLog for release
12478
12479 commit 200137060651f48c99276c8feb0e15980a9b46be
12480 Author: Bdale Garbee <bdale@gag.com>
12481 Date:   Wed Jan 22 20:52:09 2014 -0700
12482
12483     update copyright date on main documentation file
12484
12485 commit 63171339c03cf9bf3d691511889223bf43024124
12486 Author: Keith Packard <keithp@keithp.com>
12487 Date:   Tue Jan 21 23:02:27 2014 -0800
12488
12489     doc: Update for 1.3.1
12490     
12491     Add 1.3.1 release notes. Update screen shots. Document new functionality
12492     
12493     Signed-off-by: Keith Packard <keithp@keithp.com>
12494
12495 commit e6a73d6cbe149a930f8c4e2dac655bc3f6270013
12496 Author: Keith Packard <keithp@keithp.com>
12497 Date:   Tue Jan 21 23:01:28 2014 -0800
12498
12499     doc: Fix image widths to make them all scale the same amount
12500     
12501     Hand-compute scale factors so that all images are presented at the
12502     same relative size as they would be on the screen.
12503     
12504     Signed-off-by: Keith Packard <keithp@keithp.com>
12505
12506 commit e61c02b51e069aa58b36f59b9ca8e7c8284bc93a
12507 Author: Keith Packard <keithp@keithp.com>
12508 Date:   Tue Jan 21 22:13:01 2014 -0800
12509
12510     altosui: Handle serial-port startup errors in idle-monitor
12511     
12512     Trap exceptions during idle monitor startup and report them.
12513     
12514     Signed-off-by: Keith Packard <keithp@keithp.com>
12515
12516 commit 42922b40fc695bdaa92e3fb0b41a248f7df918d0
12517 Author: Keith Packard <keithp@keithp.com>
12518 Date:   Tue Jan 21 22:01:39 2014 -0800
12519
12520     altosui: Handle already-opened link in IgniteUI
12521     
12522     Must run the link open from the UI thread so that we can put up the
12523     in-use dialog immdiately; otherwise the UI thread is blocked which
12524     means the dialog never appears and the app appears to hang.
12525     
12526     Signed-off-by: Keith Packard <keithp@keithp.com>
12527
12528 commit f118e33416e45ea9a2b5ede4157bd8b58ddb6ebb
12529 Author: Keith Packard <keithp@keithp.com>
12530 Date:   Tue Jan 21 21:37:18 2014 -0800
12531
12532     altosuilib: Remove some spurious debug printfs
12533     
12534     Signed-off-by: Keith Packard <keithp@keithp.com>
12535
12536 commit 677fcafd3816b6d8d86b2dc41b840d97b5ccbf07
12537 Author: Keith Packard <keithp@keithp.com>
12538 Date:   Tue Jan 21 21:34:58 2014 -0800
12539
12540     altoslib: Fetch target device config for Fire Igniter npyro value
12541     
12542     The code was using the AltosLink config_data, which is always the
12543     locally connected device's configuration. When using the packet link,
12544     that's not terribly useful when asking how many extra pyro channels
12545     are available.
12546     
12547     Signed-off-by: Keith Packard <keithp@keithp.com>
12548
12549 commit 13cf4000bd53ac4af66231d56e24c9eb11178a5f
12550 Merge: 7a8551f 99fedbf
12551 Author: Keith Packard <keithp@keithp.com>
12552 Date:   Tue Jan 21 20:59:06 2014 -0800
12553
12554     Merge remote-tracking branch 'origin/master'
12555
12556 commit 99fedbf0ed42a5d4fa80f094576ca0260040ef5e
12557 Author: Bdale Garbee <bdale@gag.com>
12558 Date:   Tue Jan 21 21:31:25 2014 -0700
12559
12560     set version to 1.3.1 for release
12561
12562 commit 7a8551fe8e5f0a90cbc494842715a96f08c11900
12563 Author: Anthony Towns <aj@erisian.com.au>
12564 Date:   Mon Jan 20 19:38:21 2014 +1000
12565
12566     altosui: rate limit map downloads
12567
12568 commit 0faa098f05d43eefc1fa54462401171fca5034cb
12569 Author: Anthony Towns <aj@erisian.com.au>
12570 Date:   Mon Jan 20 05:10:58 2014 +1000
12571
12572     altosui: --fetchmaps gets same number of maps as GUI
12573
12574 commit aab5873c87d6ecfe0854751746f80d4bc7ebeffa
12575 Author: Anthony Towns <aj@erisian.com.au>
12576 Date:   Mon Jan 20 04:52:43 2014 +1000
12577
12578     AltosSiteMapPreload: only load 49 maps
12579     
12580     Google Static Maps API limits queries to 50 maps per IP per minute,
12581     so querying a 7x7 array instead of a 9x9 array seems more likely to
12582     work well.
12583
12584 commit 7f9cda0e2531a7bba7f1b4e3b7212a62b5bec1ed
12585 Author: Keith Packard <keithp@keithp.com>
12586 Date:   Sun Jan 19 00:17:06 2014 -0800
12587
12588     altosui: Make romconfig serial and radio cal fields 8 digits wide
12589     
12590     This ensure that they are wide enough to show a cc1120 calibration
12591     value, which is 7 digits.
12592     
12593     Signed-off-by: Keith Packard <keithp@keithp.com>
12594
12595 commit 2b891115c95453d9002d8ef307a27e14eda145a5
12596 Author: Bdale Garbee <bdale@gag.com>
12597 Date:   Fri Jan 17 20:55:45 2014 -0700
12598
12599     set version to 1.3.0.2 for test flights this weekend
12600
12601 commit c33ec8207c0e5d4c855e87b2746371b19d437f7d
12602 Author: Bdale Garbee <bdale@gag.com>
12603 Date:   Fri Jan 17 20:47:16 2014 -0700
12604
12605     use firmware in /usr/share/altos for production flashing
12606
12607 commit cfcb127b248b62231049b6b50cf9b7edc2731f0a
12608 Author: Keith Packard <keithp@keithp.com>
12609 Date:   Wed Jan 15 13:28:16 2014 -0800
12610
12611     altos: Add missing ADC divider values for Tmega v1.0
12612     
12613     Somehow I left these out of the previous commit
12614     
12615     Signed-off-by: Keith Packard <keithp@keithp.com>
12616
12617 commit 9001d5780a41986017bd3bbc7f8c5556b116c351
12618 Author: Keith Packard <keithp@keithp.com>
12619 Date:   Wed Jan 15 12:42:59 2014 -0800
12620
12621     Ignore 32 and 64 bit cjnitest apps
12622
12623 commit c743eaa060080a7bd236466b93cff3abc96f405b
12624 Author: Keith Packard <keithp@keithp.com>
12625 Date:   Wed Jan 15 12:40:26 2014 -0800
12626
12627     altos: Report battery, apogee and main voltages over APRS
12628     
12629     This makes APRS more usable when you mute the RF audio on the HT.
12630     
12631     Signed-off-by: Keith Packard <keithp@keithp.com>
12632
12633 commit cc06242e882cba462791962c199b7c89e79adc65
12634 Author: Keith Packard <keithp@keithp.com>
12635 Date:   Tue Jan 14 23:29:59 2014 -0800
12636
12637     altos: Use factory calibration for all acceleration computations
12638     
12639     The ground acceleration value will vary depending on the tilt angle of
12640     the airframe, which will result in incorrect acceleration computations
12641     during flight. This also avoids accidental boost detect when moving
12642     the airframe around in pad mode.
12643     
12644     Signed-off-by: Keith Packard <keithp@keithp.com>
12645
12646 commit 9d812b3db418fd9816731b761a0853eb38f5a265
12647 Author: Keith Packard <keithp@keithp.com>
12648 Date:   Tue Jan 14 23:21:40 2014 -0800
12649
12650     altos: Switch APRS to compressed position format
12651     
12652     This provides lat/lon/alt in fewer bytes while improving precision.
12653     
12654     Signed-off-by: Keith Packard <keithp@keithp.com>
12655
12656 commit f560d5063b1339dbfb3e6723cfadb7b4c5eace25
12657 Author: Keith Packard <keithp@keithp.com>
12658 Date:   Tue Jan 14 23:18:40 2014 -0800
12659
12660     doc: Ship telemini outline as pdf file too
12661     
12662     Build telemini.pdf from telemini.svg and include it in all of the
12663     released packages.
12664     
12665     Signed-off-by: Keith Packard <keithp@keithp.com>
12666
12667 commit 06ffd8022ff5ac74274c9839d42c0c47274cb8b9
12668 Author: Keith Packard <keithp@keithp.com>
12669 Date:   Wed Jan 1 22:08:13 2014 -0800
12670
12671     altosui: Require both libaltos32 and libaltos64 for fat Linux tarball
12672     
12673     No sense shipping a broken tarball ever
12674     
12675     Signed-off-by: Keith Packard <keithp@keithp.com>
12676
12677 commit 8bff2822c242d2878b408b9c0d8a7647108ea4b1
12678 Author: Keith Packard <keithp@keithp.com>
12679 Date:   Wed Jan 1 22:02:56 2014 -0800
12680
12681     libaltos: Build -m64 and -m32 for fat tarball when possible
12682     
12683     Check to see if we can compile libaltos for both 32 bit and 64 bit
12684     systems, and then use those when generating the linux tarball.
12685     
12686     Signed-off-by: Keith Packard <keithp@keithp.com>
12687
12688 commit 95d77eaff708397d8b1e29904dc47d8ea09e8754
12689 Author: Keith Packard <keithp@keithp.com>
12690 Date:   Wed Jan 1 22:02:04 2014 -0800
12691
12692     Bump version to 1.3.9.1
12693     
12694     Lots of new features; let's not release with 1.3 set
12695     
12696     Signed-off-by: Keith Packard <keithp@keithp.com>
12697
12698 commit b15bd24bbe48e338497c6257f5fe2c7fd1cbffbb
12699 Author: Keith Packard <keithp@keithp.com>
12700 Date:   Wed Jan 1 22:00:24 2014 -0800
12701
12702     altosui: Handle a missing libaltos when starting up
12703     
12704     Skip a null list of devices when figuring out what to open monitor
12705     windows for during startup.
12706     
12707     Signed-off-by: Keith Packard <keithp@keithp.com>
12708
12709 commit c35ea586b9e792c45b287924fd256928308d9a36
12710 Author: Keith Packard <keithp@keithp.com>
12711 Date:   Wed Jan 1 21:12:20 2014 -0800
12712
12713     altos: Flip acceleration data consistently for orientation changes
12714     
12715     Must flip the acceleration calibration data using the same function as
12716     flipping the actual acceleration data or the calibration will no
12717     longer be valid after changing orientation. For the MMA655x, this
12718     means using 4095 in both places, rather than using 0x7fff for the
12719     calibration data changes and 4095 for the data value changes. For the
12720     MPU6000, this means using 0 in both places.
12721     
12722     Signed-off-by: Keith Packard <keithp@keithp.com>
12723
12724 commit afc16e805145c3e9ab4ba948f9ab1d9aa2b27afb
12725 Author: Keith Packard <keithp@keithp.com>
12726 Date:   Sat Dec 28 10:18:53 2013 -0800
12727
12728     altos: Add 'O' command for TeleMega orient testing
12729     
12730     Only present when HAS_FLIGHT_DEBUG is enabled, this command lets the
12731     user check the orientation tracking code by showing the current
12732     orientation and when the calibration values are reset.
12733     
12734     Signed-off-by: Keith Packard <keithp@keithp.com>
12735
12736 commit 9877f6b880a0e89fbfbf1a39ded94bdc1891f3d9
12737 Author: Keith Packard <keithp@keithp.com>
12738 Date:   Sat Dec 28 10:17:37 2013 -0800
12739
12740     altosui: Switch Graph to AltosOrient type
12741     
12742     The graph was using a private class for orient type, use the altoslib one
12743     
12744     Signed-off-by: Keith Packard <keithp@keithp.com>
12745
12746 commit aa01f06acfbf029958a55f68175b6868817b333f
12747 Author: Keith Packard <keithp@keithp.com>
12748 Date:   Sat Dec 28 10:16:24 2013 -0800
12749
12750     altosui: Adjust info table column width
12751     
12752     Make sure the info table can show a full longitude value
12753     
12754     Signed-off-by: Keith Packard <keithp@keithp.com>
12755
12756 commit bbc4940730e6b431f1b9ccd9bbaf9faa0ffb2b1f
12757 Author: Keith Packard <keithp@keithp.com>
12758 Date:   Sat Dec 28 10:15:26 2013 -0800
12759
12760     altosui: Add orient to ascent and info table views
12761     
12762     This adds 'tilt angle' to both ascent and info table views
12763     
12764     Signed-off-by: Keith Packard <keithp@keithp.com>
12765
12766 commit 053d092b3dca4ebb98e97ec0fe24f5f5e1c31f88
12767 Author: Keith Packard <keithp@keithp.com>
12768 Date:   Sat Dec 28 10:13:05 2013 -0800
12769
12770     altoslib: Add AltosOrient class and max_orient()
12771     
12772     This adds the class necessary to put orient into a UI.
12773     
12774     Signed-off-by: Keith Packard <keithp@keithp.com>
12775
12776 commit 081455dcba860f3e4df8cd66f3fe686b204034ad
12777 Author: Keith Packard <keithp@keithp.com>
12778 Date:   Sat Dec 21 08:56:00 2013 -0800
12779
12780     altosui: Extend Fire Igniter to additional channels
12781     
12782     This lets the UI test fire other pyro channels on TeleMega
12783     
12784     Signed-off-by: Keith Packard <keithp@keithp.com>
12785
12786 commit 9cf9a67f937185c0c0bb5b2bae4f420755965799
12787 Author: Keith Packard <keithp@keithp.com>
12788 Date:   Sat Dec 21 06:46:46 2013 -0800
12789
12790     altosui: Switch from radio buttons to check boxes in pyro config. Add close
12791     
12792     First of (we hope) many review comments from Troj.
12793     
12794     Signed-off-by: Keith Packard <keithp@keithp.com>
12795
12796 commit 9289200ccb661b10ff892760ecbc752c7745de6b
12797 Author: Keith Packard <keithp@keithp.com>
12798 Date:   Fri Dec 20 23:04:43 2013 -0800
12799
12800     altos: Turn on -Werror for STM and LPC builds
12801     
12802     Now that the build completes with no warnings, make future warnings
12803     into errors.
12804     
12805     Signed-off-by: Keith Packard <keithp@keithp.com>
12806
12807 commit 16b37b49985daf21ebb93b3d6ae64af67533be22
12808 Author: Keith Packard <keithp@keithp.com>
12809 Date:   Fri Dec 20 23:02:51 2013 -0800
12810
12811     altos: Turn on warnings for LPC products too
12812     
12813     Signed-off-by: Keith Packard <keithp@keithp.com>
12814
12815 commit f578d9455eec9ea0eccd2d5e21349e274ea4281a
12816 Author: Keith Packard <keithp@keithp.com>
12817 Date:   Fri Dec 20 23:02:21 2013 -0800
12818
12819     altos/lpc: Missing */ in definition of PIO0_4
12820     
12821     Would maek using these values pretty hard.
12822     
12823     Signed-off-by: Keith Packard <keithp@keithp.com>
12824
12825 commit 14790172e02d4e1624c35797f87ffd94345d54ff
12826 Author: Keith Packard <keithp@keithp.com>
12827 Date:   Fri Dec 20 23:00:43 2013 -0800
12828
12829     altos: lpc exti setup was incorrectly testing mode
12830     
12831     Check for NOCONFIGURE bit was missing parens
12832     
12833     Signed-off-by: Keith Packard <keithp@keithp.com>
12834
12835 commit 48f996a9d65631238b4de446530f31f83acb99f5
12836 Author: Keith Packard <keithp@keithp.com>
12837 Date:   Fri Dec 20 22:59:42 2013 -0800
12838
12839     altos: cc115l driver tone_run wasn't recording number of tones
12840     
12841     This would prevent the cc115l driver from ever sending tones.
12842     
12843     Signed-off-by: Keith Packard <keithp@keithp.com>
12844
12845 commit e11fcc299f4a1a0461a3442ca13f8984d76c30ff
12846 Author: Keith Packard <keithp@keithp.com>
12847 Date:   Fri Dec 20 22:58:10 2013 -0800
12848
12849     altos: Clean up warnings for LPC products
12850     
12851     Unused varibles, functions and parameters.
12852     
12853     Signed-off-by: Keith Packard <keithp@keithp.com>
12854
12855 commit 4ed108fb86676daea17264d7159c2cff9ea7a6e4
12856 Author: Keith Packard <keithp@keithp.com>
12857 Date:   Fri Dec 20 22:45:56 2013 -0800
12858
12859     altos/stm: Turn on -Wextra
12860     
12861     All of the warnings for STM projects are cleaned up now
12862     
12863     Signed-off-by: Keith Packard <keithp@keithp.com>
12864
12865 commit 1406a5b0721a135913a9801e9eea9e91f0a536b4
12866 Author: Keith Packard <keithp@keithp.com>
12867 Date:   Fri Dec 20 22:45:01 2013 -0800
12868
12869     altos: Add default button return value from ao_button_get
12870     
12871     This "can't" happen, but it's not unreasonable to have a default
12872     return value.
12873     
12874     Signed-off-by: Keith Packard <keithp@keithp.com>
12875
12876 commit 316d898715746a379068ac8511692bdb9da14b39
12877 Author: Keith Packard <keithp@keithp.com>
12878 Date:   Fri Dec 20 22:44:20 2013 -0800
12879
12880     altos: unsigned value in ao_pyro_set checked for negative value
12881     
12882     No sense checking unsigned values for less than zero.
12883     
12884     Signed-off-by: Keith Packard <keithp@keithp.com>
12885
12886 commit 5c9172ba5681ff93d63c9c263a453d0025170045
12887 Author: Keith Packard <keithp@keithp.com>
12888 Date:   Fri Dec 20 22:43:18 2013 -0800
12889
12890     altos: Clean up -Wextra warnings
12891     
12892     Unused variables, mismatching signed/unsigned and a few other misc
12893     warnings.
12894     
12895     Signed-off-by: Keith Packard <keithp@keithp.com>
12896
12897 commit db8f3426ac1cf756a2e4974ca61a5ae9048c80ce
12898 Author: Keith Packard <keithp@keithp.com>
12899 Date:   Fri Dec 20 22:21:23 2013 -0800
12900
12901     altos: Turn on -Wall for stm compiles
12902     
12903     The warnings are all cleaned up now, leave this on by default
12904     
12905     Signed-off-by: Keith Packard <keithp@keithp.com>
12906
12907 commit b31b4622d5bd92c0cc0851818f5b595dbdb60ead
12908 Author: Keith Packard <keithp@keithp.com>
12909 Date:   Fri Dec 20 22:15:25 2013 -0800
12910
12911     altos: Clean up some minor warnings from -Wall
12912     
12913     Unused variables, functions and labels, missing enums in switch.
12914     
12915     Signed-off-by: Keith Packard <keithp@keithp.com>
12916
12917 commit 755082d36231c1b247bc0e1f13919dd9b5c362a8
12918 Author: Keith Packard <keithp@keithp.com>
12919 Date:   Fri Dec 20 22:13:32 2013 -0800
12920
12921     altos: mma655x also needs ao_sensor_errors
12922     
12923     TeleMetrum has an MMA655X but no IMU, so it needs an explicit addition
12924     for sensor errors.
12925     
12926     Signed-off-by: Keith Packard <keithp@keithp.com>
12927
12928 commit 758acb92cccbe4b64a35a1883b42713738c90630
12929 Author: Keith Packard <keithp@keithp.com>
12930 Date:   Fri Dec 20 22:08:11 2013 -0800
12931
12932     altos: Complain about sensor self-test errors only in idle mode
12933     
12934     When the accelerometer says to go into pad mode, don't look for other
12935     sensor self test errors. Only look for sensor self test errors to
12936     choose between idle and invalid mode. This will prevent minor sensor
12937     self test errors from letting the rocket fly safely.
12938     
12939     Signed-off-by: Keith Packard <keithp@keithp.com>
12940
12941 commit c8b27410e45cc3d80ad4b896bffe70e9aec5e3aa
12942 Author: Keith Packard <keithp@keithp.com>
12943 Date:   Fri Dec 20 22:06:52 2013 -0800
12944
12945     altos: 3-axis accel calibration was invalid in explicit accel cal mode
12946     
12947     When explicit Z-axis accel calibration values were provided to the 'c
12948     a' command, the 3-axis accelerometer calibration values would get set
12949     to uninitialized values. Not so helpful.
12950     
12951     Signed-off-by: Keith Packard <keithp@keithp.com>
12952
12953 commit 2a912dcde191e2f750845c464611641a5abdc28a
12954 Author: Keith Packard <keithp@keithp.com>
12955 Date:   Fri Dec 20 22:04:53 2013 -0800
12956
12957     altos: Execute self-test on MMA655X part
12958     
12959     This doesn't check for fine calibration, just makes sure the part is
12960     within the broad tolerances specified by the manufacturer. The subtle fix
12961     here was actually getting reset working -- there was a typo in the
12962     bitpattern definition which caused the reset to fail, making it hard
12963     to self-test the part, as self-test is only valid before the part is running.
12964     
12965     Signed-off-by: Keith Packard <keithp@keithp.com>
12966
12967 commit b89fb51a963635e2effe3a31f803bfc29c2c46b7
12968 Author: Keith Packard <keithp@keithp.com>
12969 Date:   Fri Dec 20 19:44:38 2013 -0800
12970
12971     altoslib: Bump library version
12972     
12973     Prepare for next release by making sure we notice that the API/ABI for
12974     this library has changed.
12975     
12976     Signed-off-by: Keith Packard <keithp@keithp.com>
12977
12978 commit 8e5f3b922100f9de54b9650df14749e81b1a6562
12979 Author: Keith Packard <keithp@keithp.com>
12980 Date:   Fri Dec 20 19:40:31 2013 -0800
12981
12982     altosui: Add imu and mag sensor values to plots
12983     
12984     Makes for a lot of potential graph elements.
12985     
12986     Signed-off-by: Keith Packard <keithp@keithp.com>
12987
12988 commit f65880cf5bfcba5005c32db2b300448e585f3e45
12989 Author: Keith Packard <keithp@keithp.com>
12990 Date:   Fri Dec 20 19:39:40 2013 -0800
12991
12992     altosuilib: Rearrange graph enable buttons
12993     
12994     Eliminate separate 'enable' radio button, provide for multiple columns
12995     
12996     Signed-off-by: Keith Packard <keithp@keithp.com>
12997
12998 commit 796cb90e3241103f79ae12565cf6f0dad21cb57c
12999 Author: Keith Packard <keithp@keithp.com>
13000 Date:   Fri Dec 20 19:38:29 2013 -0800
13001
13002     altoslib: Fetch 'orient' value from Mega Sensor packet
13003     
13004     The mega sensor packet had a spare byte to hold the current
13005     orientation value.
13006     
13007     Signed-off-by: Keith Packard <keithp@keithp.com>
13008
13009 commit 91bcfae2e64ecb2e7de1292b264910382b635aea
13010 Author: Keith Packard <keithp@keithp.com>
13011 Date:   Fri Dec 20 19:37:08 2013 -0800
13012
13013     altoslib: Convert IMU and Mag sensor values to useful units
13014     
13015     Convert from raw sensor values to metric units
13016     
13017     Signed-off-by: Keith Packard <keithp@keithp.com>
13018
13019 commit 2ad31bad20b20615e9d8b29088e2488fddc81ac9
13020 Author: Mike Beattie <mike@ethernal.org>
13021 Date:   Fri Dec 20 15:06:37 2013 +1300
13022
13023     altosdroid: improve build system dependencies
13024     
13025     Signed-off-by: Mike Beattie <mike@ethernal.org>
13026
13027 commit 0e3b3ce66035e8a90fd708d9a4bc01370174c9eb
13028 Author: Mike Beattie <mike@ethernal.org>
13029 Date:   Fri Dec 20 15:06:07 2013 +1300
13030
13031     altosdroid: update to latest google play services
13032     
13033     Signed-off-by: Mike Beattie <mike@ethernal.org>
13034
13035 commit 96f2ae5fc0d3bf88704d2ae1b4df5dc6aefc523b
13036 Author: Mike Beattie <mike@ethernal.org>
13037 Date:   Fri Dec 20 15:05:42 2013 +1300
13038
13039     altosdroid: force older jarsigner signing algorithm for java 1.7
13040     
13041     (increment versionCode, re-upload to Play Store)
13042     
13043     Signed-off-by: Mike Beattie <mike@ethernal.org>
13044
13045 commit ac12e77e3dffc9e9ddb1578a38b32783ad64e940
13046 Author: Bdale Garbee <bdale@gag.com>
13047 Date:   Thu Dec 19 03:22:21 2013 -0700
13048
13049     updated notes from 1.3 release
13050
13051 commit 27528961457865acc3a38b822268df6d7cb86cfd
13052 Merge: 4006eff a31629d
13053 Author: Bdale Garbee <bdale@gag.com>
13054 Date:   Thu Dec 19 02:00:10 2013 -0700
13055
13056     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
13057
13058 commit 4006effc538289c36a1563c1b717231991292c0c
13059 Author: Bdale Garbee <bdale@gag.com>
13060 Date:   Thu Dec 19 01:58:24 2013 -0700
13061
13062     fix missing newline at end of src/test/Makefile
13063
13064 commit a31629dfceb5e9cf1d5c654b8bd87d575f73c34b
13065 Author: Keith Packard <keithp@keithp.com>
13066 Date:   Thu Dec 19 00:58:50 2013 -0800
13067
13068     altosui: Ship EasyMini firmware too
13069     
13070     Missing the FIRMWARE_EMINI define left all easy mini firmware out of
13071     the distribution
13072     
13073     Signed-off-by: Keith Packard <keithp@keithp.com>
13074
13075 commit bc3610d8cecbfed40c62d4dcb93fc9a4d2a7c9e3
13076 Author: Bdale Garbee <bdale@gag.com>
13077 Date:   Thu Dec 19 01:29:55 2013 -0700
13078
13079     update ChangeLog from git
13080
13081 commit 701c26ed85c28ac59e338975f2a6ba6bd25f6493
13082 Author: Keith Packard <keithp@keithp.com>
13083 Date:   Thu Dec 19 00:16:16 2013 -0800
13084
13085     altosdroid: bump versionName to 1.3 and versionCode to 4
13086     
13087     Signed-off-by: Keith Packard <keithp@keithp.com>
13088
13089 commit 9f95ffbad918a73cfd5460d6ce037d680465c35d
13090 Author: Keith Packard <keithp@keithp.com>
13091 Date:   Thu Dec 19 00:12:21 2013 -0800
13092
13093     altosui: When device has no valid romconfig, set RF cal to 0
13094     
13095     This is intended to signal to the user that no valid value was found
13096     and that they'd best pick something sensible.
13097     
13098     Signed-off-by: Keith Packard <keithp@keithp.com>
13099
13100 commit a04c1dd5df76c9127615bc797a9d9f764eec1234
13101 Author: Keith Packard <keithp@keithp.com>
13102 Date:   Thu Dec 19 00:08:50 2013 -0800
13103
13104     altos/lpc: Stop sending SETUP IN when the requested size is reached
13105     
13106     The host won't keep asking for SETUP IN packets once it has received
13107     the amount of data requested, so check to see if we've sent that much
13108     and flip back to IDLE state if so.
13109     
13110     Signed-off-by: Keith Packard <keithp@keithp.com>
13111
13112 commit 1ab12861c3e70d7c22b27d988546a925616a0adc
13113 Author: Keith Packard <keithp@keithp.com>
13114 Date:   Wed Dec 18 23:27:34 2013 -0800
13115
13116     altos/lpc: Reset less of the device on USB reset.
13117     
13118     This leaves most of the device configured across USB reset, which
13119     appears to help when sending a IN reply to the first SETUP packet;
13120     without this change, the IN reply would always get a length of 0,
13121     which is fine for SET_ADDRESS, but not for GET_DESCRIPTOR_DEVICE,
13122     which OS X appears to send before setting the address (go figure).
13123     
13124     Signed-off-by: Keith Packard <keithp@keithp.com>
13125
13126 commit 3b13cc2ca035b13582cd2e59ba7286f872f43c6e
13127 Author: Keith Packard <keithp@keithp.com>
13128 Date:   Wed Dec 18 22:00:13 2013 -0800
13129
13130     altoslib: Remove some old debug printfs for self flashing
13131     
13132     These aren't necessary anymore and just slow down flashing boards.
13133     
13134     Signed-off-by: Keith Packard <keithp@keithp.com>
13135
13136 commit 408b0dea338147382e94717dab85b4a204e7bdf5
13137 Author: Keith Packard <keithp@keithp.com>
13138 Date:   Wed Dec 18 21:08:33 2013 -0800
13139
13140     micropeak: Add micropeak man page
13141     
13142     Signed-off-by: Keith Packard <keithp@keithp.com>
13143
13144 commit 2b2ba87d5f68b9e052dddd49d69341f36d777122
13145 Author: Keith Packard <keithp@keithp.com>
13146 Date:   Wed Dec 18 21:02:15 2013 -0800
13147
13148     ao-tools: Add man pages for ao-flash utilities
13149     
13150     These aren't very wordy, but these tools are pretty simple scripts.
13151     
13152     Signed-off-by: Keith Packard <keithp@keithp.com>
13153
13154 commit 39cb8c2896317b7538353be979ac99baffc14489
13155 Merge: 2a6016c ee42796
13156 Author: Bdale Garbee <bdale@gag.com>
13157 Date:   Wed Dec 18 21:53:52 2013 -0700
13158
13159     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
13160
13161 commit 2a6016cfabc8cd56f5219871e3b3df316a639289
13162 Author: Bdale Garbee <bdale@gag.com>
13163 Date:   Wed Dec 18 21:53:36 2013 -0700
13164
13165     update Debian standards version we claim compliance with
13166
13167 commit ee4279613b4757453d0d8f8afc06037c61eeb520
13168 Author: Keith Packard <keithp@keithp.com>
13169 Date:   Wed Dec 18 20:32:05 2013 -0800
13170
13171     altos: Try IMU self-test 10 times before giving up
13172     
13173     This should keep the device from failing to boot unless the IMU is
13174     actually broken. Oh, and if self test does fail, this places the
13175     flight computer in 'Invalid' state rather than panic.
13176     
13177     Signed-off-by: Keith Packard <keithp@keithp.com>
13178
13179 commit 1bf84ec28a41f7bd1b11ba45b4639856266227bc
13180 Author: Keith Packard <keithp@keithp.com>
13181 Date:   Wed Dec 18 20:30:58 2013 -0800
13182
13183     doc: Add tables describing AltOS beeps and flashes
13184     
13185     Provide a convenient place to reference when listening to the device.
13186     
13187     Signed-off-by: Keith Packard <keithp@keithp.com>
13188
13189 commit 0673344289772ed89483948184d6608c272c7c26
13190 Author: Keith Packard <keithp@keithp.com>
13191 Date:   Wed Dec 18 18:20:55 2013 -0800
13192
13193     altos/stm: Semantic error in STM usb disable caused it to not work
13194     
13195     The USB enable register wasn't actually getting rewritten with the
13196     enable bit turned off, so the USB device was still powered on in flight.
13197     
13198     Signed-off-by: Keith Packard <keithp@keithp.com>
13199
13200 commit 122f491e459b6ff417932370b3f1aa2091c71aca
13201 Author: Bdale Garbee <bdale@gag.com>
13202 Date:   Wed Dec 18 18:30:54 2013 -0700
13203
13204     update release docs to include option for submodules
13205
13206 commit d9982c257463f23be940eea66bd4dc3aadff0043
13207 Merge: 1b97ed2 b63fc05
13208 Author: Bdale Garbee <bdale@gag.com>
13209 Date:   Wed Dec 18 18:25:35 2013 -0700
13210
13211     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
13212
13213 commit 1b97ed2b64bcbcd969124964f1e49837899f1c70
13214 Author: Bdale Garbee <bdale@gag.com>
13215 Date:   Wed Dec 18 18:25:03 2013 -0700
13216
13217     we're using packaged and local-to-our-tree ARM toolchain now
13218
13219 commit b63fc05481bf6d57e6385704ce53c1c19afa9c2e
13220 Author: Keith Packard <keithp@keithp.com>
13221 Date:   Wed Dec 18 14:34:31 2013 -0800
13222
13223     doc: typo in micropeak doc hole->hold
13224
13225 commit 6827961c002757f8e74de44f6eb9c9029d099ebc
13226 Author: Keith Packard <keithp@keithp.com>
13227 Date:   Wed Dec 18 14:25:41 2013 -0800
13228
13229     doc: Update micropeak quick start guide to note new boost detect
13230     
13231     Now waits for one minute and 30m of altitude change to avoid false detections.
13232     
13233     Signed-off-by: Keith Packard <keithp@keithp.com>
13234
13235 commit c0966cd40f05f3a65b0c977b4b92586a58192f4b
13236 Author: Keith Packard <keithp@keithp.com>
13237 Date:   Wed Dec 18 14:22:51 2013 -0800
13238
13239     micropeak: Compile for java 6
13240     
13241     Don't a require later version as not all target OSes support it
13242     
13243     Signed-off-by: Keith Packard <keithp@keithp.com>
13244
13245 commit eea036650e62bc0f8652155974b512686754fd13
13246 Author: Keith Packard <keithp@keithp.com>
13247 Date:   Wed Dec 18 14:08:41 2013 -0800
13248
13249     Move pdclib build results to pdclib-root
13250     
13251     This makes pdclib easier to manage as a submodule
13252     
13253     Signed-off-by: Keith Packard <keithp@keithp.com>
13254
13255 commit c1bfe09b6d3eb28d0c7cfe07a248843cf81bcd25
13256 Author: Keith Packard <keithp@keithp.com>
13257 Date:   Wed Dec 18 13:36:04 2013 -0800
13258
13259     altosui: Remove some debug printfs
13260     
13261     Signed-off-by: Keith Packard <keithp@keithp.com>
13262
13263 commit 58ceb9c845d51547244538fe6beec27e9a232af8
13264 Author: Keith Packard <keithp@keithp.com>
13265 Date:   Wed Dec 18 13:25:31 2013 -0800
13266
13267     altosdroid: Use altoslib standard voltages to control lights
13268     
13269     Signed-off-by: Keith Packard <keithp@keithp.com>
13270
13271 commit dbcf3264f950c4e1d450828c9f161b4c418bee97
13272 Author: Keith Packard <keithp@keithp.com>
13273 Date:   Wed Dec 18 13:22:45 2013 -0800
13274
13275     altoslib: Define 3.8 as a good battery and 3.5 as a good igniter
13276     
13277     Use defined values everywhere instead of copying. Adjust battery up to
13278     3.8 to ensure there's enough voltage to not trip the comparators
13279     
13280     Signed-off-by: Keith Packard <keithp@keithp.com>
13281
13282 commit b19a648b667c298d2d9d5ed4ee9db661be058d1a
13283 Author: Keith Packard <keithp@keithp.com>
13284 Date:   Wed Dec 18 13:09:48 2013 -0800
13285
13286     altoslib: create eeprom download thread before telling monitor about it
13287     
13288     Telling the monitor too early resulted in passing a null thread
13289     handle, which meant that 'cancel' wouldn't ever work.
13290     
13291     Signed-off-by: Keith Packard <keithp@keithp.com>
13292
13293 commit 216405bc49ef2fc0e9941989f054e41f2fef9cfe
13294 Author: Keith Packard <keithp@keithp.com>
13295 Date:   Wed Dec 18 12:40:22 2013 -0800
13296
13297     altoslib: Don't close telemetry reader at startup unless something fails
13298     
13299     Was always closing the file, which led to very little telemetry being received.
13300     
13301     Signed-off-by: Keith Packard <keithp@keithp.com>
13302
13303 commit f2e589c59ed0a4c586c5accca8772df15010c46a
13304 Author: Keith Packard <keithp@keithp.com>
13305 Date:   Wed Dec 18 12:16:55 2013 -0800
13306
13307     libaltos: Import newly build libaltos.dylib
13308
13309 commit 0484ca97828da0d56be7bf395fa4a4b09c591e02
13310 Author: Keith Packard <keithp@keithp.com>
13311 Date:   Wed Dec 18 12:15:54 2013 -0800
13312
13313     libaltos: remove usb id filtering from darwin code
13314     
13315     Signed-off-by: Keith Packard <keithp@keithp.com>
13316
13317 commit 36197a388a9ba1d1ee4acd96ac0079ad3af9d3d0
13318 Author: Keith Packard <keithp@keithp.com>
13319 Date:   Wed Dec 18 12:15:22 2013 -0800
13320
13321     libaltos: fix test harness main type
13322     
13323     Signed-off-by: Keith Packard <keithp@keithp.com>
13324
13325 commit 119dd56512404e0c39dd5001ba4da9373515c02c
13326 Author: Keith Packard <keithp@keithp.com>
13327 Date:   Wed Dec 18 11:25:05 2013 -0800
13328
13329     altosui: Add docs to Mac OS X dmg distribution
13330     
13331     Signed-off-by: Keith Packard <keithp@keithp.com>
13332
13333 commit 6df58bb0115a8da13d35ab38861f6231bea7f2a7
13334 Merge: 4383baf 02195f2
13335 Author: Bdale Garbee <bdale@gag.com>
13336 Date:   Wed Dec 18 12:19:31 2013 -0700
13337
13338     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
13339
13340 commit 4383bafc6ccdde10f06882ba3e96126c61d5e988
13341 Author: Bdale Garbee <bdale@gag.com>
13342 Date:   Wed Dec 18 12:18:30 2013 -0700
13343
13344     a fresher changelog entry for test builds
13345
13346 commit 7db8e8190bc8b9a17a7b5107954e2362a0e9c7a2
13347 Author: Bdale Garbee <bdale@gag.com>
13348 Date:   Wed Dec 18 11:08:55 2013 -0700
13349
13350     need to include the Cortex toolchain
13351
13352 commit 02195f2970fb7243fd9a9992abb6ada6709db4e1
13353 Author: Keith Packard <keithp@keithp.com>
13354 Date:   Wed Dec 18 11:14:40 2013 -0800
13355
13356     fix git: path for pdclib
13357     
13358     Signed-off-by: Keith Packard <keithp@keithp.com>
13359
13360 commit fbca372edd5609bc253b622b55b7faffd19ae6cd
13361 Author: Keith Packard <keithp@keithp.com>
13362 Date:   Wed Dec 18 11:12:44 2013 -0800
13363
13364     Use git: path for pdclib
13365     
13366     Signed-off-by: Keith Packard <keithp@keithp.com>
13367
13368 commit e2635d07d0f0a91dd7d59f2c94765a40907d2732
13369 Author: Keith Packard <keithp@keithp.com>
13370 Date:   Wed Dec 18 11:08:11 2013 -0800
13371
13372     Ignore .dll files in libaltos
13373     
13374     Signed-off-by: Keith Packard <keithp@keithp.com>
13375
13376 commit 8fdbdebdbb4d1579fd2af47430807d0d2a78105b
13377 Author: Keith Packard <keithp@keithp.com>
13378 Date:   Wed Dec 18 11:07:55 2013 -0800
13379
13380     ao-tools: complain if st-flash is not available
13381     
13382     Signed-off-by: Keith Packard <keithp@keithp.com>
13383
13384 commit 8f529633cd4be8a0edb1b067bbf5d7cc055dcc1b
13385 Author: Keith Packard <keithp@keithp.com>
13386 Date:   Wed Dec 18 10:55:06 2013 -0800
13387
13388     altos: get stm-bringup building again
13389     
13390     Signed-off-by: Keith Packard <keithp@keithp.com>
13391
13392 commit 262ee65885d55902df96f4aec6a114f5ac6f2c61
13393 Author: Keith Packard <keithp@keithp.com>
13394 Date:   Wed Dec 18 10:53:09 2013 -0800
13395
13396     Remove stale stm test apps from regular build
13397
13398 commit 90386115204bd3bfa55deb5ebe1972bacdba725a
13399 Author: Keith Packard <keithp@keithp.com>
13400 Date:   Wed Dec 18 10:50:45 2013 -0800
13401
13402     altos/stm: Update pdclib paths for flash-loader builds
13403     
13404     Signed-off-by: Keith Packard <keithp@keithp.com>
13405
13406 commit eb659fb0ee80c25312be36b3d8adb686813db125
13407 Author: Keith Packard <keithp@keithp.com>
13408 Date:   Wed Dec 18 10:43:16 2013 -0800
13409
13410     altos: create target pdclib directories before building
13411
13412 commit 9c200c3bc742b4dd1a7e28bfce9d5b27e833aae5
13413 Author: Keith Packard <keithp@keithp.com>
13414 Date:   Wed Dec 18 10:01:29 2013 -0800
13415
13416     altos: Build pdclib locally if necessary
13417     
13418     Signed-off-by: Keith Packard <keithp@keithp.com>
13419
13420 commit fbde0c3e4bdb419d6bd4dbcc96b0e01c59e9fa13
13421 Author: Keith Packard <keithp@keithp.com>
13422 Date:   Wed Dec 18 09:59:33 2013 -0800
13423
13424     include pdclib in wrong place
13425
13426 commit 77b04d662a6704f5db10522a2f9b169d31df5bea
13427 Author: Keith Packard <keithp@keithp.com>
13428 Date:   Wed Dec 18 02:03:15 2013 -0800
13429
13430     altosui: Hide non-applicable altimeter config values
13431     
13432     This makes configuring EasyMini a lot easier...
13433     
13434     Signed-off-by: Keith Packard <keithp@keithp.com>
13435
13436 commit 012abeda6ae846d74729e96e7ed7c8af2edca572
13437 Author: Keith Packard <keithp@keithp.com>
13438 Date:   Wed Dec 18 02:02:12 2013 -0800
13439
13440     altos/lpc: Be a bit more resistant to toolchain section name changes
13441     
13442     Just add some wild cards on the ends of each section name in case the
13443     toolchain changes names in the future.
13444     
13445     Signed-off-by: Keith Packard <keithp@keithp.com>
13446
13447 commit e26306c9350ef1d107d4257ef1c09d15165c9154
13448 Author: Keith Packard <keithp@keithp.com>
13449 Date:   Wed Dec 18 01:14:11 2013 -0800
13450
13451     altoslib: Pass InterruptedException up the stack instead of hiding it
13452     
13453     When interrupting a thread that is talking to a serial device, it's
13454     important not to have that thread discard the InterruptedException so
13455     that it will actually terminate. This patch removes a bunch of places
13456     that were discarding InterruptedExceptions and lets higher level code
13457     see them so that they can exit cleanly.
13458     
13459     Signed-off-by: Keith Packard <keithp@keithp.com>
13460
13461 commit 18852efa108ba6e6e69dfd5076d4f4c01f62b4ef
13462 Author: Keith Packard <keithp@keithp.com>
13463 Date:   Wed Dec 18 01:12:11 2013 -0800
13464
13465     altos: Make TeleMega v0.1 work more like TeleMega v1.0
13466     
13467     I've still got one working v0.1 board which is useful for testing
13468     stuff, so make it work more like the released TeleMega:
13469     
13470      * Use E for drogue, F for main
13471      * Use on-chip eeprom for config
13472      * Fix ADC report printf to match
13473     
13474     Signed-off-by: Keith Packard <keithp@keithp.com>
13475
13476 commit 1f035ac2df1cfa6964ae904aba0aedde279ca921
13477 Author: Keith Packard <keithp@keithp.com>
13478 Date:   Tue Dec 17 23:50:54 2013 -0800
13479
13480     altos: Use all 16 bits of setup packet len when limiting reply len
13481     
13482     We were only using the low 8 bits of the setup packet reply max len,
13483     which meant that if the other side sent a weird max len (as Windows 7
13484     does), then we'd truncate our setup reply to whatever was in the low 8
13485     bits of that value.
13486     
13487     Signed-off-by: Keith Packard <keithp@keithp.com>
13488
13489 commit 1280ba2e51b36f417f3adb6d101405ee75e7e509
13490 Author: Keith Packard <keithp@keithp.com>
13491 Date:   Tue Dec 17 22:53:45 2013 -0800
13492
13493     altosui: Add EasyMini bits to fat distribution images. Update telemetrum.inf
13494     
13495     Signed-off-by: Keith Packard <keithp@keithp.com>
13496
13497 commit 212a1b66ae04317b7b42ba57573b910fde09ca6c
13498 Author: Keith Packard <keithp@keithp.com>
13499 Date:   Tue Dec 17 20:24:19 2013 -0800
13500
13501     doc: Publish images with HTML bits
13502     
13503     Otherwise the html won't render right.
13504     
13505     Signed-off-by: Keith Packard <keithp@keithp.com>
13506
13507 commit 2ecb6a8276b2ce40d2a4da586dbc17581cfda26d
13508 Author: Keith Packard <keithp@keithp.com>
13509 Date:   Tue Dec 17 20:23:00 2013 -0800
13510
13511     altos: Broke TeleMetrum GPS reporting by holding the GPS mutex too much
13512     
13513     We can't hold the GPS mutex while waiting for the GPS receiver to load
13514     data as it protects the GPS data with the GPS mutex.
13515     
13516     Signed-off-by: Keith Packard <keithp@keithp.com>
13517
13518 commit e44ce127ece149e7b07be49142bc0f9d50bbe97d
13519 Author: Keith Packard <keithp@keithp.com>
13520 Date:   Tue Dec 17 20:05:12 2013 -0800
13521
13522     doc: Add screen shots everywhere
13523     
13524     This has screen shots of every dialog in altosui
13525     
13526     Signed-off-by: Keith Packard <keithp@keithp.com>
13527
13528 commit e4b223df372348718b74d2ecad4957f3e30f8d79
13529 Author: Keith Packard <keithp@keithp.com>
13530 Date:   Tue Dec 17 17:37:39 2013 -0800
13531
13532     Add altosui image and attempt to add launch photo to title
13533
13534 commit 1d093383fe58fc8c8c11e1c7cd1cd929ae1bd9e4
13535 Author: Bdale Garbee <bdale@gag.com>
13536 Date:   Tue Dec 17 14:53:59 2013 -0700
13537
13538     further documentation tweaks
13539
13540 commit 90c88bab305c43eb62f964fd3ff350b8b0b5320d
13541 Merge: d5d6d10 dffbdd9
13542 Author: Bdale Garbee <bdale@gag.com>
13543 Date:   Tue Dec 17 14:09:30 2013 -0700
13544
13545     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
13546     
13547     Conflicts:
13548         doc/altusmetrum.xsl
13549
13550 commit d5d6d10ceb724081c7cf89a3885d7e6c3da14604
13551 Author: Bdale Garbee <bdale@gag.com>
13552 Date:   Tue Dec 17 14:08:12 2013 -0700
13553
13554     capture my changes so far
13555
13556 commit dffbdd93d7a86a12d83a412de37dfd2a5f063995
13557 Author: Keith Packard <keithp@keithp.com>
13558 Date:   Tue Dec 17 11:38:46 2013 -0800
13559
13560     doc: Add product pictures to manual
13561     
13562     Signed-off-by: Keith Packard <keithp@keithp.com>
13563
13564 commit 9d8da4ef325171960e16fc027c6039cb63eae942
13565 Author: Keith Packard <keithp@keithp.com>
13566 Date:   Tue Dec 17 11:19:54 2013 -0800
13567
13568     Keep tables together on a page
13569
13570 commit 7acd0cf17c5ca7a00893f35c7fe9c657389070e0
13571 Author: Keith Packard <keithp@keithp.com>
13572 Date:   Tue Dec 17 10:33:29 2013 -0800
13573
13574     doc: Convert several more itemizedlists to variablelists
13575     
13576     When defining a term, use variablelist to pull the term out to the left.
13577     
13578     Signed-off-by: Keith Packard <keithp@keithp.com>
13579
13580 commit 8bb6dd75a602792936d623713fb009fea25ef491
13581 Author: Keith Packard <keithp@keithp.com>
13582 Date:   Mon Dec 16 21:21:24 2013 -0800
13583
13584     Clean up reflashing section, include section on self-flash recovery
13585     
13586     Signed-off-by: Keith Packard <keithp@keithp.com>
13587
13588 commit 1562affc4951e147eba20380ea5be2e9f7152789
13589 Author: Keith Packard <keithp@keithp.com>
13590 Date:   Sat Dec 14 11:47:31 2013 -0800
13591
13592     ao-tools: Use st-flash for STM flashing instead of openocd
13593     
13594     st-flash, from the stlink tools, appears more reliable when flashing
13595     STM CPUs.
13596     
13597     Signed-off-by: Keith Packard <keithp@keithp.com>
13598
13599 commit 7d7ae63d8dfcc99a30285e0bd2411901941d1813
13600 Author: Bdale Garbee <bdale@gag.com>
13601 Date:   Sat Dec 14 12:16:03 2013 -0700
13602
13603     add serial number to ao-usbload call, pass SERIAL to cal-freq
13604
13605 commit c94ca50fd9f24f271c160f6e0e95cb7340289354
13606 Author: Bdale Garbee <bdale@gag.com>
13607 Date:   Fri Dec 13 18:37:29 2013 -0700
13608
13609     temporarily force stlink location in debian/rules to allow complete build
13610
13611 commit 6545a72012e94a50d185e1c4ecff3c3769d60acd
13612 Author: Keith Packard <keithp@keithp.com>
13613 Date:   Tue Dec 10 00:54:32 2013 -0800
13614
13615     java: Missed libaltos java compile flags from previous patch
13616     
13617     Signed-off-by: Keith Packard <keithp@keithp.com>
13618
13619 commit 8959c059ec67f5334e31abbe3f831dd571a0b464
13620 Author: Keith Packard <keithp@keithp.com>
13621 Date:   Tue Dec 10 00:51:01 2013 -0800
13622
13623     java: Add -target 1.6 to all java compiles
13624     
13625     This makes sure the results can run with the old JVM
13626     
13627     Signed-off-by: Keith Packard <keithp@keithp.com>
13628
13629 commit a4596c134aa5e7867f1ca1d86d36afb2af9b8999
13630 Author: Keith Packard <keithp@keithp.com>
13631 Date:   Tue Dec 10 00:39:52 2013 -0800
13632
13633     altos: Remove ARM .ihx files on 'make clean'
13634     
13635     Signed-off-by: Keith Packard <keithp@keithp.com>
13636
13637 commit 50753e84871b2a01d270d28b8b77a19614d2180c
13638 Author: Keith Packard <keithp@keithp.com>
13639 Date:   Tue Dec 10 00:03:20 2013 -0800
13640
13641     Set version to 1.3 in preparation for release
13642     
13643     Signed-off-by: Keith Packard <keithp@keithp.com>
13644
13645 commit 54f7888dc65ffc27c6ee5ef93953bd9b8fc029ed
13646 Author: Keith Packard <keithp@keithp.com>
13647 Date:   Tue Dec 10 00:00:31 2013 -0800
13648
13649     doc: More altusmetrum.xsl updates for 1.3
13650     
13651     Spell checking even
13652     
13653     Signed-off-by: Keith Packard <keithp@keithp.com>
13654
13655 commit a140b3ad689bcebdcf87caab1e64048f693a9b85
13656 Author: Keith Packard <keithp@keithp.com>
13657 Date:   Mon Dec 9 23:16:13 2013 -0800
13658
13659     debian: .ihx and .map files are left in subdirs now
13660     
13661     Install them from the right place
13662     
13663     Signed-off-by: Keith Packard <keithp@keithp.com>
13664
13665 commit 95c1a5a61267233cf2c16175aeb73bfb7d12ba8f
13666 Author: Keith Packard <keithp@keithp.com>
13667 Date:   Mon Dec 9 23:14:55 2013 -0800
13668
13669     altosui: Ship TeleMega-v1.0 firmware
13670     
13671     Signed-off-by: Keith Packard <keithp@keithp.com>
13672
13673 commit b023c87e2b86ba57cbf97be1ab76b532e0a00fad
13674 Author: Keith Packard <keithp@keithp.com>
13675 Date:   Mon Dec 9 23:12:40 2013 -0800
13676
13677     ao-bringup: Add turnon_telemega script
13678     
13679     And a few helper programs
13680     
13681     Signed-off-by: Keith Packard <keithp@keithp.com>
13682
13683 commit ecb0465be76e9299511aeec663d267967834f6c3
13684 Author: Keith Packard <keithp@keithp.com>
13685 Date:   Mon Dec 9 16:06:22 2013 -0800
13686
13687     altos: Rename telemega-v0.3 to telemega-v1.0
13688     
13689     Signed-off-by: Keith Packard <keithp@keithp.com>
13690
13691 commit dd91a5d5069ff940e07b8817a934ee65d4e8e235
13692 Author: Keith Packard <keithp@keithp.com>
13693 Date:   Sun Dec 8 21:08:36 2013 -0800
13694
13695     altos: Oops. Was only filling out part of the TeleMetrum ADC record
13696     
13697     Because it's missing a return, we'd end up filling out one element of
13698     the ADC record per interrupt, and rotating through which one was set,
13699     hitting all of the even offsets within the struct. Yikes!
13700     
13701     Signed-off-by: Keith Packard <keithp@keithp.com>
13702
13703 commit c1711890c002fe359bd6c3fdf4092b35d464c6d9
13704 Author: Keith Packard <keithp@keithp.com>
13705 Date:   Sun Dec 8 21:07:17 2013 -0800
13706
13707     altosui: When flashing to TeleDongle or TeleBT, match any .ihx file
13708     
13709     Let the user pick any .ihx file when using a device which can only be
13710     used as a pair programmer. Note that 'telemetrum' can be either, and
13711     we'll assume that it's a self-programmed device (v2) for now.
13712     
13713     Signed-off-by: Keith Packard <keithp@keithp.com>
13714
13715 commit 710343a23c7e6e9c079eafdf3aeea8a40cc2ce61
13716 Author: Keith Packard <keithp@keithp.com>
13717 Date:   Sun Dec 8 20:34:11 2013 -0800
13718
13719     altosui: Match directories in hex file matcher
13720     
13721     This makes it possible to navigate around the file system
13722     
13723     Signed-off-by: Keith Packard <keithp@keithp.com>
13724
13725 commit fd92bb8ff3be257925bf6e969d93a7f9dd941fb8
13726 Author: Keith Packard <keithp@keithp.com>
13727 Date:   Sun Dec 8 20:33:22 2013 -0800
13728
13729     altoslib: Don't require radio_cal or usb_descriptors in AltosRomconfig
13730     
13731     Not all products will have these values, so allow them to be missing
13732     
13733     Signed-off-by: Keith Packard <keithp@keithp.com>
13734
13735 commit 68adbf5bf08ed8af2f34c0d95d9c3d457574372d
13736 Author: Keith Packard <keithp@keithp.com>
13737 Date:   Sun Dec 8 20:11:46 2013 -0800
13738
13739     Add new tools to .gitignore
13740     
13741     Signed-off-by: Keith Packard <keithp@keithp.com>
13742
13743 commit 2cdb90d9214f8e66b3574cbd9c5ed073a7861681
13744 Author: Keith Packard <keithp@keithp.com>
13745 Date:   Sun Dec 8 20:09:10 2013 -0800
13746
13747     altoslib: Add self-flashing code
13748     
13749     This adds the ability to use the AltOS flash-loader on both STM and
13750     NXP processors.
13751     
13752     Signed-off-by: Keith Packard <keithp@keithp.com>
13753
13754 commit 70d0841b4017e7580c893c7033c04fb2964adab6
13755 Author: Keith Packard <keithp@keithp.com>
13756 Date:   Sun Dec 8 20:07:23 2013 -0800
13757
13758     altoslib: Add AltosNoSymbol exception
13759     
13760     Signed-off-by: Keith Packard <keithp@keithp.com>
13761
13762 commit 4e1b134e29313a1bdac18de57fe547299e5ded2a
13763 Author: Keith Packard <keithp@keithp.com>
13764 Date:   Sun Dec 8 20:04:43 2013 -0800
13765
13766     altoslib: Use symbols in AltosRomconfig instead of fixed offsets
13767     
13768     The new Hexfile symbol code automatically adds the needed romconfig
13769     symbols for cc1111 products, and ARM-based products have symbols in
13770     the .ihx files. This means that we can rely on using symbols when
13771     finding config values in memory.
13772     
13773     Signed-off-by: Keith Packard <keithp@keithp.com>
13774
13775 commit 1183417145de549b9281f9e210d216facf3a94ef
13776 Author: Keith Packard <keithp@keithp.com>
13777 Date:   Sun Dec 8 19:59:37 2013 -0800
13778
13779     altosuilib: Don't match product_altusmetrum for product_basestation or product_altimeter
13780     
13781     It's been years since we've shipped boards configured with
13782     product_altusmetrum, but now we've repurposed that code for the flash
13783     loader. When matching an explicit product, go ahead and also match
13784     altusmetrum so that the flash loader will fit, but when matching
13785     basestation or altimeter, don't as that will avoid popping up the
13786     flight monitor UI at startup when a board is running the boot loader.
13787     
13788     Signed-off-by: Keith Packard <keithp@keithp.com>
13789
13790 commit e0af4569446b12c026aa0ffd52c55839d69af0e1
13791 Author: Keith Packard <keithp@keithp.com>
13792 Date:   Sun Dec 8 19:48:27 2013 -0800
13793
13794     altoslib: Publish mapping from product name back to USB id
13795     
13796     This lets us choose which device to flash based on the filename
13797     
13798     Signed-off-by: Keith Packard <keithp@keithp.com>
13799
13800 commit 88fa5fa6acbdd66d1338ca73cbbac219d62b5136
13801 Author: Keith Packard <keithp@keithp.com>
13802 Date:   Sun Dec 8 19:47:44 2013 -0800
13803
13804     altoslib: Create AltosProgrammer class
13805     
13806     This provides an abstract interface to flashing boards, for
13807     dongle-based and self-programming boards.
13808     
13809     Signed-off-by: Keith Packard <keithp@keithp.com>
13810
13811 commit 7b0c1fbccb4ef1ae2ed356292cc8762360532b7f
13812 Author: Keith Packard <keithp@keithp.com>
13813 Date:   Sun Dec 8 19:46:30 2013 -0800
13814
13815     altoslib: Add symbols to .ihx files
13816     
13817     Create a new 0xfe record type to hold the symbols, and append them
13818     after the EOF record so that other tools might continue to work.
13819     
13820     Signed-off-by: Keith Packard <keithp@keithp.com>
13821
13822 commit b1ffdaf1f5e9b6e8ff0d4e08d8c504f8dfacd3a4
13823 Author: Keith Packard <keithp@keithp.com>
13824 Date:   Sun Dec 8 19:43:13 2013 -0800
13825
13826     altoslib: Support binary reading/writing in AltosLink
13827     
13828     Binary reads require an explicit length, and do not work while
13829     telemetry is running.
13830     
13831     Signed-off-by: Keith Packard <keithp@keithp.com>
13832
13833 commit 2cb7a96567e1302a699f78290fab5e29693940ab
13834 Author: Keith Packard <keithp@keithp.com>
13835 Date:   Sun Dec 8 19:05:01 2013 -0800
13836
13837     altos/stm: arm-none-eabi-binutils now puts 'main' into .text.startup
13838     
13839     Change name of .text.ram to .ramtext, then load .text* into flash and
13840     .ramtext into ram. This ensures that 'main' and anything else in a
13841     random .text.* segment will get loaded into flash as appropriate.
13842     
13843     Signed-off-by: Keith Packard <keithp@keithp.com>
13844
13845 commit 3e22a0dce4248cce862147c985078de44c427b12
13846 Author: Keith Packard <keithp@keithp.com>
13847 Date:   Sun Dec 8 19:04:11 2013 -0800
13848
13849     ao-tools: build ao-usbload by default
13850     
13851     Signed-off-by: Keith Packard <keithp@keithp.com>
13852
13853 commit b1f3525afa801038f7087a3a2caf369f2460a5db
13854 Author: Keith Packard <keithp@keithp.com>
13855 Date:   Sun Dec 8 11:41:09 2013 -0800
13856
13857     altoslib: AltosEepromMonitor had false import of altosuilib
13858     
13859     Not needed, and breaks the build
13860     
13861     Signed-off-by: Keith Packard <keithp@keithp.com>
13862
13863 commit eded084c6caa1f9423d690c8b45c8042f8355987
13864 Author: Keith Packard <keithp@keithp.com>
13865 Date:   Sun Dec 8 11:17:28 2013 -0800
13866
13867     altos: remove all versions of stm-demo executable
13868     
13869     Signed-off-by: Keith Packard <keithp@keithp.com>
13870
13871 commit bb72b4018dd6a422afe1916d9538bb9ff1e45353
13872 Author: Keith Packard <keithp@keithp.com>
13873 Date:   Sun Dec 8 11:15:37 2013 -0800
13874
13875     altos: Change flash loader name to just AltosFlash
13876     
13877     Remove the software version string from the product name
13878     
13879     Signed-off-by: Keith Packard <keithp@keithp.com>
13880
13881 commit 52b19511222980138faddb2047707baceff0a596
13882 Author: Keith Packard <keithp@keithp.com>
13883 Date:   Sun Dec 8 11:14:29 2013 -0800
13884
13885     altos: Build .ihx files for all arm projects
13886     
13887     The .ihx version can be processed by the java loader
13888     
13889     Signed-off-by: Keith Packard <keithp@keithp.com>
13890
13891 commit a1e4750a7d4af72e8e9086735885f48c9b56c18e
13892 Author: Keith Packard <keithp@keithp.com>
13893 Date:   Sun Dec 8 11:11:41 2013 -0800
13894
13895     altos: Allow products to override default 100mA USB current
13896     
13897     This will allow products to specify their own current limit.
13898     
13899     Signed-off-by: Keith Packard <keithp@keithp.com>
13900
13901 commit 25aaf6122cbddcbc6a80460dac8ccb9f45743ae0
13902 Author: Keith Packard <keithp@keithp.com>
13903 Date:   Sun Dec 8 11:10:00 2013 -0800
13904
13905     ao-tools: Clean up ao-stmload and ao-usbload options. Add --raw
13906     
13907     ao-stmload only uses stlink, ao-usbload only uses self-flashing, so
13908     clear up the options in the two programs. The new --raw option skips
13909     the serial and radio cal rewriting when flashing the boot loader.
13910     
13911     Signed-off-by: Keith Packard <keithp@keithp.com>
13912
13913 commit ebb36d56c732ffe9cdb8d2ea53d00e1d4ece8f97
13914 Author: Keith Packard <keithp@keithp.com>
13915 Date:   Sun Dec 8 11:07:46 2013 -0800
13916
13917     ao-tools: Allow building without stlink and readline
13918     
13919     This adds --without-stlink and --without-readline options to configure
13920     to disable these features, and adjusts the build process and code to
13921     handle that.
13922     
13923     Signed-off-by: Keith Packard <keithp@keithp.com>
13924
13925 commit 5fd0dc6f69e7614ba71bbc215b32260a11595af3
13926 Author: Keith Packard <keithp@keithp.com>
13927 Date:   Sat Dec 7 23:27:30 2013 -0800
13928
13929     ao-tools: Add ao-flash-stm and ao-flash-lpc scripts
13930     
13931     These use openocd to download boot loaders to the arm-based products
13932     
13933     Signed-off-by: Keith Packard <keithp@keithp.com>
13934
13935 commit eee9b3ce1e5adae5aa4566050b6d6048344e92c4
13936 Author: Keith Packard <keithp@keithp.com>
13937 Date:   Sat Dec 7 09:54:17 2013 -0800
13938
13939     altosuilib: Deal with AltosUnits API change
13940     
13941     The abstract methods in AltosUnits now pass the 'imperial_units' flag
13942     explicitly, so deal with that in AltosUnits itself
13943     
13944     Signed-off-by: Keith Packard <keithp@keithp.com>
13945
13946 commit 407696f11ac1736e840c9b702592c46197d14c2c
13947 Author: Keith Packard <keithp@keithp.com>
13948 Date:   Sat Dec 7 09:53:10 2013 -0800
13949
13950     altosui: Clean up serial close handling
13951     
13952     Unify serial close processing in a single function (close_serial),
13953     make everyone else call that. This avoids a couple of cases where the
13954     device would be closed and not removed from the devices_opened list,
13955     leading to 'device is already in use' messages.
13956     
13957     Signed-off-by: Keith Packard <keithp@keithp.com>
13958
13959 commit 1a47532f411488f003726aa9365ede5dc90c5b78
13960 Author: Keith Packard <keithp@keithp.com>
13961 Date:   Sat Dec 7 09:51:58 2013 -0800
13962
13963     altosui: Don't try to report bearing/elevation without GPS
13964     
13965     If the distance from the pad cannot be computed (due to lacking GPS),
13966     then don't try to report it.
13967     
13968     Signed-off-by: Keith Packard <keithp@keithp.com>
13969
13970 commit 44249a9262a16ed103aedf30a300003fc2a17579
13971 Author: Keith Packard <keithp@keithp.com>
13972 Date:   Sat Dec 7 09:49:00 2013 -0800
13973
13974     altos: Nothing in altos uses AES decryption, so don't compile it
13975     
13976     Saves a bit of space where AES is used, and avoids some compiler warnings.
13977     
13978     Signed-off-by: Keith Packard <keithp@keithp.com>
13979
13980 commit cdb32b1717db4e8cb8cf94d810e74ce2b569566b
13981 Author: Keith Packard <keithp@keithp.com>
13982 Date:   Sat Dec 7 09:47:45 2013 -0800
13983
13984     altos/test: Compute and plot tilt based on GPS track
13985     
13986     This lets us compare the gyro-computed tilt angle against the actual
13987     flight path.
13988     
13989     Signed-off-by: Keith Packard <keithp@keithp.com>
13990
13991 commit 6fbf4829569d5edb476654f4e383b834af527dc6
13992 Author: Keith Packard <keithp@keithp.com>
13993 Date:   Sat Dec 7 09:40:53 2013 -0800
13994
13995     altos: Telemega uses eeprom, include it in main file
13996     
13997     ao_telemega.c didn't include ao_eeprom.h leaving a function undefined
13998     
13999     Signed-off-by: Keith Packard <keithp@keithp.com>
14000
14001 commit 2a9b0cdff5db03dc11b6ef69cf5436c834c3acc4
14002 Author: Keith Packard <keithp@keithp.com>
14003 Date:   Sat Dec 7 09:39:41 2013 -0800
14004
14005     altos: Add lots more GPS data to mega log
14006     
14007     There's plenty of space in the GPS log packets to hold course, speed,
14008     climb and DOP values, so just stick them in.
14009     
14010     Signed-off-by: Keith Packard <keithp@keithp.com>
14011
14012 commit de2e812b02a99a2f6d85f15a9600265931f6f6b0
14013 Author: Keith Packard <keithp@keithp.com>
14014 Date:   Sat Dec 7 09:38:50 2013 -0800
14015
14016     src/cc1111: Turn off RC osc after xtal is running
14017     
14018     There's no reason to keep running the RC oscillator after we switch to
14019     the crystal, so turn it off.
14020     
14021     Signed-off-by: Keith Packard <keithp@keithp.com>
14022
14023 commit 473ae38ade0552c5ff3ca088b21345ed5dfad5d0
14024 Author: Keith Packard <keithp@keithp.com>
14025 Date:   Thu Nov 28 15:21:26 2013 -0800
14026
14027     doc: First pass for 1.3 finished; docs have most major sections updated.
14028     
14029     Final edits and corrections still required.
14030     
14031     Signed-off-by: Keith Packard <keithp@keithp.com>
14032
14033 commit 6d9b93bfd637eb690159fc5efda0390eb602c6a7
14034 Author: Keith Packard <keithp@keithp.com>
14035 Date:   Thu Nov 28 10:44:07 2013 -0800
14036
14037     ao-tools: Split out USB loader to ao-usbload
14038     
14039     Leave ao-stmload using just stlinkv2
14040     
14041     Signed-off-by: Keith Packard <keithp@keithp.com>
14042
14043 commit f27dff090c8f3a63bd932715643980703160bde6
14044 Author: Keith Packard <keithp@keithp.com>
14045 Date:   Thu Nov 28 10:31:32 2013 -0800
14046
14047     ao-tools: Split out altos symbol editing from ao-stmload
14048     
14049     to be shared with ao-usbload
14050     
14051     Signed-off-by: Keith Packard <keithp@keithp.com>
14052
14053 commit 5ef287723f8d8bfbfb3582d22bfb5c2a3129414a
14054 Author: Keith Packard <keithp@keithp.com>
14055 Date:   Thu Nov 28 09:52:38 2013 -0800
14056
14057     ao-tools: Missing ao-selfload.h
14058
14059 commit e6c9ca218d944443c86555e513534d82713af936
14060 Author: Keith Packard <keithp@keithp.com>
14061 Date:   Thu Nov 28 09:52:01 2013 -0800
14062
14063     ao-tools: move 16/32-bit readers from ao-stmload to lib
14064
14065 commit d93a65a90f19e4816231e03b1f399af6e3742aee
14066 Author: Keith Packard <keithp@keithp.com>
14067 Date:   Thu Nov 28 09:46:13 2013 -0800
14068
14069     ao-tools: Move ao-selfload into library
14070     
14071     This needs to be shared between ao-stmload and ao-usbload
14072     
14073     Signed-off-by: Keith Packard <keithp@keithp.com>
14074
14075 commit 14204e3d147ad99cc249ad8de254809180fe5c38
14076 Author: Keith Packard <keithp@keithp.com>
14077 Date:   Thu Nov 28 09:31:02 2013 -0800
14078
14079     ao-tools: Add ao-elftohex and .ihx symbol support
14080     
14081     ao-elftohex converts an elf file into a hex file so that we can load
14082     it with java.
14083     
14084     Signed-off-by: Keith Packard <keithp@keithp.com>
14085
14086 commit ee07f1a0f8e431bebb3b948f6249f5f33413e966
14087 Author: Keith Packard <keithp@keithp.com>
14088 Date:   Thu Nov 28 09:29:52 2013 -0800
14089
14090     ao-tools: Add debug printf support
14091
14092 commit 95a8180f3d7929dbad65c80421f99c925f245af0
14093 Author: Keith Packard <keithp@keithp.com>
14094 Date:   Wed Nov 27 13:59:06 2013 -0800
14095
14096     ao-tools: Create general elf and hex library routines
14097     
14098     Pulls the elf stuff out of ao-stmload, change the hex stuff into ao_
14099     routines.
14100     
14101     Signed-off-by: Keith Packard <keithp@keithp.com>
14102
14103 commit 73b1a7e644e255558378ab66de6426a7dfd8a7dc
14104 Author: Keith Packard <keithp@keithp.com>
14105 Date:   Mon Nov 25 01:15:36 2013 -0800
14106
14107     doc: Work on AltosUI Pyro config docs a bit more.
14108     
14109     Signed-off-by: Keith Packard <keithp@keithp.com>
14110
14111 commit 82b42935d047d2f7c2f7a63a3efb72a3f1d5594e
14112 Author: Keith Packard <keithp@keithp.com>
14113 Date:   Mon Nov 25 00:02:06 2013 -0800
14114
14115     altosui: Handle units in pyro config.
14116     
14117     This lets you edit the pyro configuration using imperial units if
14118     desired.
14119     
14120     Signed-off-by: Keith Packard <keithp@keithp.com>
14121
14122 commit 8da565bbafa2925aa889cf9249497a709a814b7f
14123 Author: Keith Packard <keithp@keithp.com>
14124 Date:   Mon Nov 25 00:01:20 2013 -0800
14125
14126     doc: Add telemetry enable and APRS interval config docs
14127     
14128     Also starts working on the pyro channel config window docs
14129     
14130     Signed-off-by: Keith Packard <keithp@keithp.com>
14131
14132 commit f743934ebd1a7c7c8b6db0223f0309e590aa15cd
14133 Author: Keith Packard <keithp@keithp.com>
14134 Date:   Sun Nov 24 21:55:20 2013 -0800
14135
14136     doc: use correct quotes in altusmetrum.xsl
14137     
14138     Signed-off-by: Keith Packard <keithp@keithp.com>
14139
14140 commit 6f4abc14065aebceaac9313e4dcd4300e19999cf
14141 Author: Keith Packard <keithp@keithp.com>
14142 Date:   Sun Nov 24 21:50:27 2013 -0800
14143
14144     doc: "rocketry electronics" instead of listing products
14145
14146 commit 31a1c701bfaea97225e12ea0688b934790e3737e
14147 Author: Keith Packard <keithp@keithp.com>
14148 Date:   Sun Nov 24 21:28:26 2013 -0800
14149
14150     Use more 1/4 single characters
14151
14152 commit 96f33e780958adaaa4a9cc127caecaeb3f4c978c
14153 Author: Keith Packard <keithp@keithp.com>
14154 Date:   Sun Nov 24 21:25:06 2013 -0800
14155
14156     Remove duplicate log description. Describe pyro config.
14157     
14158     Signed-off-by: Keith Packard <keithp@keithp.com>
14159
14160 commit 3eaaefe6d746a2f53995a2470c5024f37c87c393
14161 Author: Keith Packard <keithp@keithp.com>
14162 Date:   Sun Nov 24 20:05:52 2013 -0800
14163
14164     Extend the hardware overview chapter. Edit System Operations
14165     
14166     Extend the overview chapter to include tables describing the
14167     electronic and physical board characteristics of each board.
14168     
14169     Finish most of the System Operation stuff, still need to add pyro
14170     channel configuration
14171     
14172     Signed-off-by: Keith Packard <keithp@keithp.com>
14173
14174 commit ceed62fd97972b35f4cf6560625135723cb8610f
14175 Author: Keith Packard <keithp@keithp.com>
14176 Date:   Mon Nov 18 13:48:18 2013 -0800
14177
14178     debian: Build now depends on 'xmlto' for docs
14179     
14180     This wraps xsltproc, fop and xmllint for formatting pdf files
14181     
14182     Signed-off-by: Keith Packard <keithp@keithp.com>
14183
14184 commit 92753d4b8d6b17ebc7a9b65680abd46648726393
14185 Author: Keith Packard <keithp@keithp.com>
14186 Date:   Mon Nov 18 12:43:33 2013 -0800
14187
14188     doc: Use system fo docbool.xsl instead of network one
14189     
14190     Instead of reading the master stylesheet from the network, just use
14191     the one installed on the system.
14192     
14193     Signed-off-by: Keith Packard <keithp@keithp.com>
14194
14195 commit 89fc38f2cf143bed1fe8c4a4972267b15c9aa467
14196 Author: Keith Packard <keithp@keithp.com>
14197 Date:   Mon Nov 18 12:42:38 2013 -0800
14198
14199     doc: Make pdf files depend on local stylesheet
14200     
14201     Now that we're using our own, rebuild the docs when it changes
14202     
14203     Signed-off-by: Keith Packard <keithp@keithp.com>
14204
14205 commit f9bbca59a9034cf7e6df4577e627d7447f3a9d51
14206 Author: Keith Packard <keithp@keithp.com>
14207 Date:   Mon Nov 18 12:42:20 2013 -0800
14208
14209     doc: Make micropeak.xsl validate
14210     
14211     Signed-off-by: Keith Packard <keithp@keithp.com>
14212
14213 commit 0a3e27e3a392be4cfe03d200068a7e69bb2f3fdb
14214 Author: Keith Packard <keithp@keithp.com>
14215 Date:   Mon Nov 18 12:38:52 2013 -0800
14216
14217     Make companion.xsl validate
14218     
14219     Signed-off-by: Keith Packard <keithp@keithp.com>
14220
14221 commit d212d782bff977d609a9da1b805de4a2615fb474
14222 Author: Keith Packard <keithp@keithp.com>
14223 Date:   Mon Nov 18 12:37:23 2013 -0800
14224
14225     doc: Make telemetry.xsl validate
14226     
14227     Signed-off-by: Keith Packard <keithp@keithp.com>
14228
14229 commit 87fbe12bdaf10c9ba7ba43608b1e980cdc09d496
14230 Author: Keith Packard <keithp@keithp.com>
14231 Date:   Mon Nov 18 12:29:42 2013 -0800
14232
14233     doc: Make altos.xsl validate
14234     
14235     Signed-off-by: Keith Packard <keithp@keithp.com>
14236
14237 commit 963a61986ea4b48fdca0989479e9c50acb0f1a9d
14238 Author: Keith Packard <keithp@keithp.com>
14239 Date:   Mon Nov 18 12:12:54 2013 -0800
14240
14241     doc: Switch to xorg style to generate index
14242     
14243     This style sheet generates a nice PDF index
14244     
14245     Signed-off-by: Keith Packard <keithp@keithp.com>
14246
14247 commit 9953a5f0440b269dac5c675f120e6a31dde8ec69
14248 Author: Keith Packard <keithp@keithp.com>
14249 Date:   Mon Nov 18 12:06:31 2013 -0800
14250
14251     doc: Get altusmetrum.xsl to validate
14252     
14253     Mostly involved getting the listitem contents into para elements.
14254     
14255     Signed-off-by: Keith Packard <keithp@keithp.com>
14256
14257 commit 152d978dc4be49b6b764e5e1966bd860c46054ea
14258 Author: Keith Packard <keithp@keithp.com>
14259 Date:   Mon Nov 18 12:05:10 2013 -0800
14260
14261     doc: Start work on 1.3 doc updates
14262     
14263     Add 1.3 release notes.
14264     
14265     Signed-off-by: Keith Packard <keithp@keithp.com>
14266
14267 commit 71705532374f222e51c66e2f1214dd01b3efc8bd
14268 Author: Keith Packard <keithp@keithp.com>
14269 Date:   Tue Nov 12 15:02:50 2013 +0900
14270
14271     Bump to version 1.2.9.4
14272
14273 commit 12481415c2e5fb03b003343c9499df711eb14f91
14274 Author: Keith Packard <keithp@keithp.com>
14275 Date:   Tue Nov 12 16:26:02 2013 +0900
14276
14277     altos: include ao_eeprom.h in ao_telemetrum.c to define ao_eeprom_init
14278     
14279     Signed-off-by: Keith Packard <keithp@keithp.com>
14280
14281 commit bf893a4149b05b97f18f9f487af805adef859d74
14282 Author: Keith Packard <keithp@keithp.com>
14283 Date:   Tue Nov 12 16:22:49 2013 +0900
14284
14285     altos: Make sure flight erase log comes after config blog
14286     
14287     Oops. When converting from ao_storage to ao_config, I accidentally had
14288     the flight erase log overwriting the config block.
14289     
14290     Signed-off-by: Keith Packard <keithp@keithp.com>
14291
14292 commit 92eafd01f2809f39c5bc4058977c790d94a99df1
14293 Author: Keith Packard <keithp@keithp.com>
14294 Date:   Tue Nov 12 16:08:50 2013 +0900
14295
14296     altos: Move telemega to using internal eeprom for config
14297     
14298     And crank up the default per-flight storage to 1MB
14299     
14300     Signed-off-by: Keith Packard <keithp@keithp.com>
14301
14302 commit 9c53ad6f8222878a26efecebd3bb1d1fe054a4b6
14303 Author: Keith Packard <keithp@keithp.com>
14304 Date:   Tue Nov 12 16:06:59 2013 +0900
14305
14306     altos: Move TeleMetrum v2.0 to using internal eeprom for config
14307     
14308     This leaves the whole 8MB of flash for flight storage
14309     
14310     Signed-off-by: Keith Packard <keithp@keithp.com>
14311
14312 commit 83437b2fe304599e22d0a98b5410808bcb67dc97
14313 Author: Keith Packard <keithp@keithp.com>
14314 Date:   Tue Nov 12 15:45:32 2013 +0900
14315
14316     altos: Allow use of internal EEPROM for config storage
14317     
14318     This stops exposing eeprom as 'storage' and instead exposes it with a
14319     separate eeprom API so that it can be used for config storage without
14320     also using it for flight log storage.
14321     
14322     The config code has been changed to allow it to either use storage for
14323     configuration data or eeprom.
14324     
14325     Signed-off-by: Keith Packard <keithp@keithp.com>
14326
14327 commit b57f1cabfe5052306cb4c28793bea477f4aeb2d2
14328 Author: Keith Packard <keithp@keithp.com>
14329 Date:   Tue Nov 12 15:18:58 2013 +0900
14330
14331     altos: Don't hold GPS mutex while waiting in TM v2.0 report
14332     
14333     Holding the GPS mutex while waiting for the GPS code to dump data into
14334     the GPS variables is rather counter-productive.
14335     
14336     Signed-off-by: Keith Packard <keithp@keithp.com>
14337
14338 commit 0951b1ef83d8d741d65811fa23bde43ee843a939
14339 Author: Keith Packard <keithp@keithp.com>
14340 Date:   Tue Nov 12 15:18:53 2013 +0900
14341
14342     altos: Build TM v2.0 firmware by default
14343     
14344     Signed-off-by: Keith Packard <keithp@keithp.com>
14345
14346 commit 3c40272713d93e79bb0989eefe191cd2bfe56a44
14347 Author: Keith Packard <keithp@keithp.com>
14348 Date:   Tue Nov 12 15:01:13 2013 +0900
14349
14350     ignore "compile" script
14351
14352 commit 28327883d377896caddbad0f9efded56a227edd1
14353 Author: Keith Packard <keithp@keithp.com>
14354 Date:   Tue Nov 12 14:59:40 2013 +0900
14355
14356     Add TeleMini v2.0 turnon script
14357
14358 commit cffbc025532487bbd9b467476be05d0997b5133e
14359 Author: Keith Packard <keithp@keithp.com>
14360 Date:   Tue Nov 12 14:56:47 2013 +0900
14361
14362     ao-tools: add ao-mega man page, ignore executable
14363
14364 commit 40d3575a9365d77ca507ebee226d51d081e1ecc6
14365 Author: Keith Packard <keithp@keithp.com>
14366 Date:   Tue Nov 12 14:54:57 2013 +0900
14367
14368     altos: Clean up .gitignore and add a few random files
14369     
14370     Signed-off-by: Keith Packard <keithp@keithp.com>
14371
14372 commit 9d2eb0b00a5a0faefce95bce949be7206b0aad37
14373 Author: Keith Packard <keithp@keithp.com>
14374 Date:   Tue Nov 12 14:48:21 2013 +0900
14375
14376     Add ublox checksum generating program
14377
14378 commit d5367f20fa1ae71496fde071953c2cda89654071
14379 Author: Keith Packard <keithp@keithp.com>
14380 Date:   Tue Nov 12 14:45:51 2013 +0900
14381
14382     Ignore mac .dmg files
14383
14384 commit 0093d5b368669e0c324f8d9dfcd2f004de85ee5c
14385 Author: Keith Packard <keithp@keithp.com>
14386 Date:   Tue Nov 12 14:37:57 2013 +0900
14387
14388     altosui, altoslib: Move eeprom download code to altoslib
14389     
14390     This should make adding eeprom downloading to altosdroid easier
14391     
14392     Signed-off-by: Keith Packard <keithp@keithp.com>
14393
14394 commit 45db3076b257adcf2c9f69ed0927f09d94af7a50
14395 Author: Keith Packard <keithp@keithp.com>
14396 Date:   Tue Nov 12 14:28:30 2013 +0900
14397
14398     altosui: Make AltosEepromDownload not swing-dependent
14399     
14400     Will move to altoslib
14401     
14402     Signed-off-by: Keith Packard <keithp@keithp.com>
14403
14404 commit 6aa99c160f0695eb25ccc0598e4c36224c89dab4
14405 Author: Keith Packard <keithp@keithp.com>
14406 Date:   Tue Nov 12 14:06:20 2013 +0900
14407
14408     altoslib: Start moving eeprom download logic to altoslib
14409     
14410     Signed-off-by: Keith Packard <keithp@keithp.com>
14411
14412 commit 74d73a2cd0b6a228eb396552e1d16685669349c0
14413 Author: Keith Packard <keithp@keithp.com>
14414 Date:   Tue Nov 12 14:03:42 2013 +0900
14415
14416     altoslib: Raise ParseException on invalid eeprom format
14417     
14418     Make sure the user knows when data are not downloaded successfully
14419     because the UI doesn't understand the eeprom format.
14420     
14421     Signed-off-by: Keith Packard <keithp@keithp.com>
14422
14423 commit bdd6244d8b4a55c9aa4fb79b0cb1a0727afbc2ac
14424 Author: Keith Packard <keithp@keithp.com>
14425 Date:   Tue Nov 12 14:01:55 2013 +0900
14426
14427     altos: Add orientation tracking to ao_flight_test
14428     
14429     Shows calculated offset from vertical in ao_flight_test output
14430     
14431     Signed-off-by: Keith Packard <keithp@keithp.com>
14432
14433 commit 29b48b63305881471d9b97ef3fb236af03cb79f5
14434 Author: Keith Packard <keithp@keithp.com>
14435 Date:   Mon Oct 28 00:36:13 2013 -0700
14436
14437     altos: Don't hold GPS mutex while waiting for GPS data in report code
14438     
14439     Oops. This kinda breaks anyone else waiting for GPS data
14440     
14441     Signed-off-by: Keith Packard <keithp@keithp.com>
14442
14443 commit d3628bd2dd3612065792aef6c7ae5bc967b4f081
14444 Author: Keith Packard <keithp@keithp.com>
14445 Date:   Mon Oct 28 00:24:59 2013 -0700
14446
14447     altos: sample profile address range was too narrow
14448     
14449     The range was cranked down at some point to diagnose issues within the
14450     task scheduler. Unfortunately, that change got merged, which meant
14451     that general profiling lost information outside of the lower 4kB of code.
14452     
14453     Signed-off-by: Keith Packard <keithp@keithp.com>
14454
14455 commit 7c1c6728bce4237ca3a8f6fde01356697a465dfd
14456 Author: Keith Packard <keithp@keithp.com>
14457 Date:   Sun Oct 27 23:47:27 2013 -0700
14458
14459     altos: Make telemega v0.3 compile with new quaternion code
14460     
14461     Adds lots more math code
14462     
14463     Signed-off-by: Keith Packard <keithp@keithp.com>
14464
14465 commit e838bd2847e5684ce93b6f7cbe736ebed681c3c6
14466 Author: Keith Packard <keithp@keithp.com>
14467 Date:   Sun Oct 27 23:46:54 2013 -0700
14468
14469     altos: Make telemega v0.1 compile with new quaternion code
14470     
14471     Adds the necessary math code
14472     
14473     Signed-off-by: Keith Packard <keithp@keithp.com>
14474
14475 commit 9b0ce8ca65d76b9cf55dfff002e13ce2fbb5f7fc
14476 Author: Keith Packard <keithp@keithp.com>
14477 Date:   Sun Oct 27 23:45:48 2013 -0700
14478
14479     altos: Add orientation test when HAS_FLIGHT_DEBUG is set
14480     
14481     This just dumps the current orientation to stdout so you can monitor
14482     it in real time
14483     
14484     Signed-off-by: Keith Packard <keithp@keithp.com>
14485
14486 commit 5d9e715d570b24ac124c30772b11923bd26ed670
14487 Author: Keith Packard <keithp@keithp.com>
14488 Date:   Sun Oct 27 23:44:47 2013 -0700
14489
14490     altos: Update quaternion tests to check vectors_to_rotation
14491     
14492     Signed-off-by: Keith Packard <keithp@keithp.com>
14493
14494 commit 195fd70cdc7f519cd8d4ac323088ed0b6c188280
14495 Author: Keith Packard <keithp@keithp.com>
14496 Date:   Sun Oct 27 23:42:58 2013 -0700
14497
14498     altos: Change ao_mpu6000_gyro arg to float
14499     
14500     This lets callers pass more precision than just the original sensor value
14501     
14502     Signed-off-by: Keith Packard <keithp@keithp.com>
14503
14504 commit 3d3fe7e9b6502432868f4430befac871dfea4869
14505 Author: Keith Packard <keithp@keithp.com>
14506 Date:   Sun Oct 27 23:42:26 2013 -0700
14507
14508     altos: Fixup for 32-bit gyro averages
14509     
14510     Signed-off-by: Keith Packard <keithp@keithp.com>
14511
14512 commit 4bebade9e9004bad81df1a423687f3e3f356f1c2
14513 Author: Keith Packard <keithp@keithp.com>
14514 Date:   Sun Oct 27 23:37:55 2013 -0700
14515
14516     altos: Correct incremental rotation computation
14517     
14518     Trying to compute the combined rotation by taking the x/y/z rotations
14519     as a vector is a good approximation, but not accurate enough for our
14520     application given the large angles we sometimes see.
14521     
14522     Instead, use a correct-but-expensive function with a pile of
14523     transcendental function calls. The STM32L seems to be fast enough at least...
14524     
14525     Signed-off-by: Keith Packard <keithp@keithp.com>
14526
14527 commit 06b0c1b768a7d3eae57e66bc9aea25db49f9ea8a
14528 Author: Keith Packard <keithp@keithp.com>
14529 Date:   Sun Oct 27 23:35:54 2013 -0700
14530
14531     altos: Compute initial rotation from vertical
14532     
14533     This initializes the rotation with the angle from vertical, rather
14534     than simply recording the off-angle vector. Doing this allows us to
14535     accurately track the true orientation of the rocket, instead of just
14536     the offset from the initial non-vertical orientation.
14537     
14538     Signed-off-by: Keith Packard <keithp@keithp.com>
14539
14540 commit cdbe8ce33e4a75e85caf07538ed7e997f462b758
14541 Author: Keith Packard <keithp@keithp.com>
14542 Date:   Sun Oct 27 23:33:11 2013 -0700
14543
14544     altos: Fixup for ao_sample_orient rename
14545     
14546     Signed-off-by: Keith Packard <keithp@keithp.com>
14547
14548 commit d96fd33aa8a220d547512eb43c88fc8f5651e39e
14549 Author: Keith Packard <keithp@keithp.com>
14550 Date:   Sun Oct 27 23:28:50 2013 -0700
14551
14552     altos: Add sinf to math code
14553     
14554     Needed for the quaternion gyro tracking code
14555     
14556     Signed-off-by: Keith Packard <keithp@keithp.com>
14557
14558 commit fa7d0ba0efdde3ac9fb4df0589f9ead07b7ffff5
14559 Author: Keith Packard <keithp@keithp.com>
14560 Date:   Sun Oct 27 23:26:28 2013 -0700
14561
14562     altos: Keep 9 more bits of average pad IMU gyro data
14563     
14564     This reduces the offset error by a bit, minimizing gyro drift.
14565     
14566     Signed-off-by: Keith Packard <keithp@keithp.com>
14567
14568 commit 58f08c4b3cb9049d0c9cb02cde0d8dbdc3d33920
14569 Author: Keith Packard <keithp@keithp.com>
14570 Date:   Sun Oct 27 23:23:59 2013 -0700
14571
14572     altos: Rename ao_orient to ao_sample_orient
14573     
14574     Keeps it clear where this name comes from.
14575     
14576     Signed-off-by: Keith Packard <keithp@keithp.com>
14577
14578 commit c10cb9d31765e6ef0ba737bc484c5aed22a332f9
14579 Author: Keith Packard <keithp@keithp.com>
14580 Date:   Sun Oct 27 23:11:37 2013 -0700
14581
14582     altos: Add functions to init quaternions from vector pairs and euler angles
14583     
14584     Our low sampling rate means that the "cheap" hack for
14585     integrating quaternion rotations by using sin(x) ≃ x doesn't work, so
14586     instead we have to compute the partial rotation the hard way.
14587     
14588     Signed-off-by: Keith Packard <keithp@keithp.com>
14589
14590 commit 3b25860b5b3b69642928dd9c30dec4b4b937a88c
14591 Author: Keith Packard <keithp@keithp.com>
14592 Date:   Sun Oct 27 23:11:09 2013 -0700
14593
14594     altos: Add some comments describing quaternion multiplication
14595     
14596     Signed-off-by: Keith Packard <keithp@keithp.com>
14597
14598 commit 616977d2955da13383a1869b9ccdb07338172109
14599 Author: Keith Packard <keithp@keithp.com>
14600 Date:   Sun Oct 27 23:10:13 2013 -0700
14601
14602     altos: Mark arguments to quaternion functions as const
14603     
14604     Lets us pass constants without the compile whinging
14605     
14606     Signed-off-by: Keith Packard <keithp@keithp.com>
14607
14608 commit e923e11e185fd42d2a83e18b3d13bd839a72b1aa
14609 Author: Keith Packard <keithp@keithp.com>
14610 Date:   Sun Oct 27 22:44:49 2013 -0700
14611
14612     altos: IMU accel calibration values need to be signed
14613     
14614     The MPU6000 reports signed values.
14615     
14616     Signed-off-by: Keith Packard <keithp@keithp.com>
14617
14618 commit 351d53836e201834a2d89773a08ab7c2dab2b2f4
14619 Author: Keith Packard <keithp@keithp.com>
14620 Date:   Fri Oct 25 04:34:16 2013 -0700
14621
14622     altos: Calibrate IMU accelerometers too
14623     
14624     Average the IMU accelerometer values pointing up and down so that we
14625     have a zero-g offset for all three axes. This can then be used to
14626     compute which direction the rocket is pointing while sitting on the pad.
14627     
14628     Signed-off-by: Keith Packard <keithp@keithp.com>
14629
14630 commit 08143a922fe27bc50a19924f46538f9476ab5fd1
14631 Author: Keith Packard <keithp@keithp.com>
14632 Date:   Fri Oct 25 04:05:09 2013 -0700
14633
14634     altos: Add gyro-based orientation tracking
14635     
14636     This tracks the angle-from-vertical as an additional input to the pyro
14637     channels.
14638     
14639     Signed-off-by: Keith Packard <keithp@keithp.com>
14640
14641 commit ba99630f33440b993c69830856d2a7741ffdef71
14642 Author: Keith Packard <keithp@keithp.com>
14643 Date:   Fri Oct 25 04:03:39 2013 -0700
14644
14645     altos: Fix GPS test frameworks to handle shared ao_gps_new variable
14646     
14647     Signed-off-by: Keith Packard <keithp@keithp.com>
14648
14649 commit b83876718b1a535ee04ca0351ad57814454ec646
14650 Author: Keith Packard <keithp@keithp.com>
14651 Date:   Fri Oct 25 04:00:49 2013 -0700
14652
14653     altos: Add floating point math functions from newlib
14654     
14655     These are all BSD licensed, so we can simply include them directly
14656     
14657     Signed-off-by: Keith Packard <keithp@keithp.com>
14658
14659 commit 039446f54ef6968a3f0b37ce32ca6bdcdbe62546
14660 Author: Keith Packard <keithp@keithp.com>
14661 Date:   Mon Oct 14 22:41:43 2013 -0700
14662
14663     altos: Merge GPS logging into a single function
14664     
14665     Create a new global, ao_gps_new, which indicates new GPS position and
14666     satellite data.
14667     
14668     Use ao_gps_new as the new sleep/wakeup address.
14669     
14670     Merge the separate gps position/satellite logging tasks into a single
14671     function which waits for new data and writes out the changed values.
14672     
14673     Signed-off-by: Keith Packard <keithp@keithp.com>
14674
14675 commit 5c4b3658a96f1a64ccebf7bddda06b15b4ac4a6f
14676 Author: Keith Packard <keithp@keithp.com>
14677 Date:   Mon Oct 14 21:49:39 2013 -0700
14678
14679     altos: Use #define values for ublox packet types
14680     
14681     One case was using hex values instead of the #define equivalents.
14682     
14683     Signed-off-by: Keith Packard <keithp@keithp.com>
14684
14685 commit db4cd8b3838d27bebdeb6a085a739a36f7634a91
14686 Author: Keith Packard <keithp@keithp.com>
14687 Date:   Mon Oct 14 20:42:14 2013 -0700
14688
14689     altoslib,altosui: Be more robust when graphing bogus .telem files
14690     
14691     Deal with files containing multiple serial number/flight number values
14692     by preserving the boost_tick value across state resets.
14693     
14694     Check for invalid state when computing actual boost time for the stats
14695     window.
14696     
14697     Ignore invalid speed/accel values when computing averages.
14698     
14699     Signed-off-by: Keith Packard <keithp@keithp.com>
14700
14701 commit 1bd9786802751391cca3b83ac3045029e00e39ee
14702 Author: Keith Packard <keithp@keithp.com>
14703 Date:   Sun Oct 13 22:05:20 2013 -0700
14704
14705     altos/micropeak: Increase boost detect to 30m
14706     
14707     This meant increasing the data buffering as well so that we could
14708     reliably capture the flight data back to the ground, even for slow
14709     flights.
14710     
14711     And, with the buffer extra large, we work backwards from the current
14712     buffer location to find the last ground location rather than working
14713     forwards from the first buffered location. This ensures that we don't
14714     capture noise before boost and instead capture a nice flight curve instead.
14715     
14716     Signed-off-by: Keith Packard <keithp@keithp.com>
14717
14718 commit e0e98597887a970f31b33895adb77d35e06b34ff
14719 Author: Bdale Garbee <bdale@gag.com>
14720 Date:   Thu Oct 10 14:35:54 2013 -0700
14721
14722     updated turn-on script for telebt 1.1
14723
14724 commit 8af5dd05fe56768f225251bbc66831494d80048e
14725 Author: Keith Packard <keithp@keithp.com>
14726 Date:   Thu Oct 10 10:02:03 2013 -0700
14727
14728     Another try at skipping broken avr-gcc
14729     
14730     Signed-off-by: Keith Packard <keithp@keithp.com>
14731
14732 commit 2296175eff9e4286eaf44451690701a46595987e
14733 Author: Keith Packard <keithp@keithp.com>
14734 Date:   Thu Oct 10 09:47:52 2013 -0700
14735
14736     Make sure the AVR compiler can actually link stuff
14737     
14738     avr-gcc was broken for a while, causing all linking to fail. Check for
14739     that and don't try to build avr bits in that case.
14740     
14741     Signed-off-by: Keith Packard <keithp@keithp.com>
14742
14743 commit aa169b80039728e35b0dec3be66a8483d48a3458
14744 Author: Keith Packard <keithp@keithp.com>
14745 Date:   Thu Oct 10 08:04:22 2013 -0700
14746
14747     altos: Fix stm-bringup demo build to use installed pdclib
14748     
14749     Signed-off-by: Keith Packard <keithp@keithp.com>
14750
14751 commit d8d3835fedf9b7c4d203f321e72c2b086ebb3b97
14752 Author: Keith Packard <keithp@keithp.com>
14753 Date:   Thu Oct 10 00:00:05 2013 -0700
14754
14755     altos: Use installed pdclib
14756     
14757     Switch over to the installed pdclib everywhere
14758     
14759     Signed-off-by: Keith Packard <keithp@keithp.com>
14760
14761 commit 7f6cbfac7c1965add91ebfc28ca3eac4561b4fb6
14762 Author: Keith Packard <keithp@keithp.com>
14763 Date:   Wed Oct 9 12:04:14 2013 -0700
14764
14765     Bump version to 1.2.9.3
14766     
14767     Rocketober, 2013
14768     
14769     Signed-off-by: Keith Packard <keithp@keithp.com>
14770
14771 commit e947bc5e1abcd054a584d69240f91123bad2178e
14772 Author: Keith Packard <keithp@keithp.com>
14773 Date:   Wed Oct 9 12:06:30 2013 -0700
14774
14775     doc: Add easymini outline to distribution
14776     
14777     Signed-off-by: Keith Packard <keithp@keithp.com>
14778
14779 commit 18cb5f0b8f0917cbd4ff80f0920e8e5b35c822a1
14780 Author: Keith Packard <keithp@keithp.com>
14781 Date:   Wed Oct 9 10:14:16 2013 -0700
14782
14783     doc: Add EasyMini outline drawing
14784     
14785     Signed-off-by: Keith Packard <keithp@keithp.com>
14786
14787 commit c584b5fc1128c7bfd7fb921ddc3a8ec498803b53
14788 Author: Keith Packard <keithp@keithp.com>
14789 Date:   Wed Oct 9 12:37:30 2013 -0700
14790
14791     altos: Messed up the ifeq syntax a bit so ARM bits weren't getting built
14792     
14793     $(x) is not the same as ($x)
14794     
14795     Signed-off-by: Keith Packard <keithp@keithp.com>
14796
14797 commit 74885d75621dad04984d8309c2618202f4d2b35e
14798 Author: Keith Packard <keithp@keithp.com>
14799 Date:   Tue Oct 8 10:03:50 2013 -0700
14800
14801     altosui: Binaries to package are only in per-product dirs now
14802     
14803     Each cc1111 project used to stick the binary in src/, but I got rid of
14804     that when we ended up with so much stuff in src that it was a mess.
14805     
14806     Building the release now requires looking in the appropriate directory
14807     for each binary to ship.
14808     
14809     Signed-off-by: Keith Packard <keithp@keithp.com>
14810
14811 commit 0e5d1f3ce39495e3702ecd22cb45972e13a5c986
14812 Author: Keith Packard <keithp@keithp.com>
14813 Date:   Tue Oct 8 09:50:21 2013 -0700
14814
14815     altos: avr-gcc appears to find the loader scripts without help now
14816     
14817     At some point, avr-gcc lost its ability to find the loader scripts
14818     necessary to link programs. That appears to be fixed now, at least on
14819     my machine.
14820     
14821     Signed-off-by: Keith Packard <keithp@keithp.com>
14822
14823 commit f7cccbb7a624a2a47b21682f416a135a28319b41
14824 Author: Keith Packard <keithp@keithp.com>
14825 Date:   Tue Oct 8 09:39:29 2013 -0700
14826
14827     altos: Broken test for M0 compiler in src/Makefile
14828     
14829     Was causing it to try to compiler M0 progs only when *no* compiler was found.
14830     
14831     Signed-off-by: Keith Packard <keithp@keithp.com>
14832
14833 commit 488a527267decece48e6682e0e0c7fc29cbed329
14834 Merge: 6a1e398 f6661cc
14835 Author: Keith Packard <keithp@keithp.com>
14836 Date:   Tue Oct 8 09:26:41 2013 -0700
14837
14838     Merge remote-tracking branch 'origin/master'
14839     
14840     Signed-off-by: Keith Packard <keithp@keithp.com>
14841     
14842     Conflicts:
14843         configure.ac
14844
14845 commit 6a1e398e590121458176758858bb4210f3eb5a55
14846 Author: Keith Packard <keithp@keithp.com>
14847 Date:   Tue Oct 8 09:22:03 2013 -0700
14848
14849     Add --with parameters to configure for compiler selection
14850     
14851     This allows the user to specify which compiler to use for each target
14852     CPU. Also checks to make sure the arm compiler supports -m0 and -m3
14853     cpu type flags. The build now actually uses the specified compilers too.
14854     
14855     Signed-off-by: Keith Packard <keithp@keithp.com>
14856
14857 commit 16965716c02eb79b449d9d3b264814d775660134
14858 Author: Keith Packard <keithp@keithp.com>
14859 Date:   Tue Oct 8 09:20:12 2013 -0700
14860
14861     altos/stm: New GAS version requires flags in APSR assignment
14862     
14863     Signed-off-by: Keith Packard <keithp@keithp.com>
14864
14865 commit 258d225df1f4afe1cfdc9c43208bcd75d18cdf2d
14866 Author: Keith Packard <keithp@keithp.com>
14867 Date:   Mon Oct 7 22:00:15 2013 -0700
14868
14869     altos: Rename easymini-v0.1 to easymini-v1.0
14870     
14871     The production boards are the same as the modified v0.1 boards
14872     
14873     Signed-off-by: Keith Packard <keithp@keithp.com>
14874
14875 commit 8f7edcee2db30652ce0b147f282de3396c3786ad
14876 Author: Keith Packard <keithp@keithp.com>
14877 Date:   Mon Oct 7 21:53:53 2013 -0700
14878
14879     altos/lpc, altos/stm: ARM requires ISB after switching stack pointers
14880     
14881     This sticks a barrier in the CPU to prevent using the wrong stack
14882     register past the change.
14883     
14884     Signed-off-by: Keith Packard <keithp@keithp.com>
14885
14886 commit 4254de22864de2ed7ae5928c6b8bfd9df1c8a3fb
14887 Author: Keith Packard <keithp@keithp.com>
14888 Date:   Mon Oct 7 21:51:30 2013 -0700
14889
14890     altos: Don't require an LED for ao_flight
14891     
14892     EasyMini has no LEDs. Deal with it.
14893     
14894     Signed-off-by: Keith Packard <keithp@keithp.com>
14895
14896 commit 71666409624bf544e8a55fa5ee91d2f8514a03ca
14897 Author: Keith Packard <keithp@keithp.com>
14898 Date:   Mon Oct 7 21:49:55 2013 -0700
14899
14900     Change differentiation filter constants and limits
14901     
14902     Larger limits avoids clipping legit data. Using the same filter time
14903     for both ascent and descent makes the results look a bit cleaner.
14904     
14905     Signed-off-by: Keith Packard <keithp@keithp.com>
14906
14907 commit f6661cc015e1a92450dc3eede97d66005f69cc72
14908 Author: Bdale Garbee <bdale@gag.com>
14909 Date:   Mon Oct 7 21:56:46 2013 -0600
14910
14911     new toolchain for STM32L is in /usr/bin, not /opt/cortex/bin
14912
14913 commit 8bd218854e968d2b9407489359be0c4a1aefd2c8
14914 Author: Keith Packard <keithp@keithp.com>
14915 Date:   Thu Sep 19 00:29:25 2013 -0500
14916
14917     altos: Set TeleMini v2.0 USB ID correctly
14918     
14919     Uses 0x0027
14920     
14921     Signed-off-by: Keith Packard <keithp@keithp.com>
14922
14923 commit 3bf7ed1761e08d0cb43b0ed330226ec38c844591
14924 Author: Keith Packard <keithp@keithp.com>
14925 Date:   Thu Sep 19 00:28:55 2013 -0500
14926
14927     Add TeleMini v2.0 telemetry support
14928     
14929     Includes AltosLib and ao-telem
14930     
14931     Signed-off-by: Keith Packard <keithp@keithp.com>
14932
14933 commit be7f56b86478ef4a23a2af77338c580b9c9e5e3b
14934 Author: Keith Packard <keithp@keithp.com>
14935 Date:   Thu Sep 19 00:26:24 2013 -0500
14936
14937     altoslib: Prefer averaged ground pres for ground alt computation
14938     
14939     If ground pressure is recorded (as from an eeprom file), then prefer
14940     that value to the average of the pre-boost ground pressures when
14941     computing the ground altitude.
14942     
14943     Signed-off-by: Keith Packard <keithp@keithp.com>
14944
14945 commit 56b577e55c264c8e3152bb2b2cca02fa8836ac1e
14946 Author: Keith Packard <keithp@keithp.com>
14947 Date:   Sun Sep 15 14:29:46 2013 -0700
14948
14949     altos/telemetrum-v2.0: Use red LED during boot time
14950     
14951     If the LED is stuck on, then the board has failed to initialize,
14952     so use red instead of green as a warning indicator.
14953     
14954     Signed-off-by: Keith Packard <keithp@keithp.com>
14955
14956 commit 1fa3ff9ba6d04303b3de6952675532492c85182f
14957 Author: Keith Packard <keithp@keithp.com>
14958 Date:   Sun Sep 15 14:29:09 2013 -0700
14959
14960     altos/telemini-v2.0: Change initialization order
14961     
14962     Make sure busses are running before devices are initialized
14963     
14964     Signed-off-by: Keith Packard <keithp@keithp.com>
14965
14966 commit 0ff5f0fbc4900ad45bb7910ffc0c5a4e4cc4b857
14967 Author: Keith Packard <keithp@keithp.com>
14968 Date:   Sun Sep 15 14:21:08 2013 -0700
14969
14970     altos: Stop copying cc1111 binaries to the altos/src dir
14971     
14972     Just clutters up that directory.
14973     
14974     Signed-off-by: Keith Packard <keithp@keithp.com>
14975
14976 commit b86c69d56261da54745076b1f5a9c8e8e44787c2
14977 Author: Keith Packard <keithp@keithp.com>
14978 Date:   Sun Sep 15 14:13:59 2013 -0700
14979
14980     altos: Add nanopeak-v0.1
14981     
14982     The same as micropeak, just a few different pins
14983     
14984     Signed-off-by: Keith Packard <keithp@keithp.com>
14985
14986 commit 690094e2d7d9cfe5eb4edb478fd79e5d133c6b4b
14987 Author: Keith Packard <keithp@keithp.com>
14988 Date:   Sun Sep 15 14:11:50 2013 -0700
14989
14990     altos: Move micropeak sources around
14991     
14992     This sticks the micropeak sources in appropriate directories, rather
14993     than in the micropeak product directory so that they can be shared
14994     with future micropeak-style products.
14995     
14996     Signed-off-by: Keith Packard <keithp@keithp.com>
14997
14998 commit 2449d123690746d0d0d5d66dfc4d3a05b9f5dc0c
14999 Author: Keith Packard <keithp@keithp.com>
15000 Date:   Fri Sep 6 18:24:46 2013 -0700
15001
15002     altosui: Include device name in Table view
15003     
15004     It's part of the telemetry, so we might as well display it
15005     
15006     Signed-off-by: Keith Packard <keithp@keithp.com>
15007
15008 commit ae675c66594d366774d8f7f9c78f1236d3810eed
15009 Author: Keith Packard <keithp@keithp.com>
15010 Date:   Fri Sep 6 18:23:06 2013 -0700
15011
15012     altoslib: TeleMetrum v2 telemetry includes computes Pa/°C, not raw values
15013     
15014     Telemetry sends converted pressure/temp values as it doesn't include the
15015     MS5607 calibration data.
15016     
15017     Signed-off-by: Keith Packard <keithp@keithp.com>
15018
15019 commit 4e22b34bde421a9df090c9196fd4347468c8176a
15020 Author: Keith Packard <keithp@keithp.com>
15021 Date:   Fri Sep 6 16:54:07 2013 -0700
15022
15023     altoslib: Add receiver serial to telem file names
15024     
15025     Makes it easy to record telemetry from multiple sites and compare them later.
15026     
15027     Signed-off-by: Keith Packard <keithp@keithp.com>
15028
15029 commit 0ad95614685a73856bb26a94866909e5fc025434
15030 Author: Keith Packard <keithp@keithp.com>
15031 Date:   Fri Sep 6 16:52:51 2013 -0700
15032
15033     altosui: Set 'flight' value in AltosEepromMonitor window during download
15034     
15035     This feature was lost in the AltosState updates
15036     
15037     Signed-off-by: Keith Packard <keithp@keithp.com>
15038
15039 commit b66e0d4c107a0727279d03d1d0e1e40a9eaaa3bc
15040 Author: Keith Packard <keithp@keithp.com>
15041 Date:   Fri Sep 6 16:52:06 2013 -0700
15042
15043     altosui: Load Telem files in AltosDataChooser too
15044     
15045     Telem file loading was stubbed out from AltosState changes
15046     
15047     Signed-off-by: Keith Packard <keithp@keithp.com>
15048
15049 commit a1512255d20c8a395f30ed4914ddd3295842312b
15050 Author: Keith Packard <keithp@keithp.com>
15051 Date:   Fri Sep 6 16:51:44 2013 -0700
15052
15053     altoslib: Add TeleMini eeprom file to Makefile.am
15054     
15055     Signed-off-by: Keith Packard <keithp@keithp.com>
15056
15057 commit 1e52d34137626ca756ea01f317ef7c359e464a5b
15058 Author: Keith Packard <keithp@keithp.com>
15059 Date:   Fri Sep 6 16:50:46 2013 -0700
15060
15061     altoslib: Lock access to AltosLink config_data
15062     
15063     Prevents multiple callers from trying to get config data at the same
15064     time and messing up the serial line
15065     
15066     Signed-off-by: Keith Packard <keithp@keithp.com>
15067
15068 commit 29bb16397f14ed617ca3fbf48f2a7b726fd627d8
15069 Author: Keith Packard <keithp@keithp.com>
15070 Date:   Fri Sep 6 16:49:36 2013 -0700
15071
15072     altoslib: Set 'valid' for valid TeleMetrum eeprom download
15073     
15074     Had separate 'tick_valid' value, which wasn't useful as the supertype
15075     didn't look there.
15076     
15077     Signed-off-by: Keith Packard <keithp@keithp.com>
15078
15079 commit a299a5a9a1b89c7ebc00ebd33a789793a6835181
15080 Author: Keith Packard <keithp@keithp.com>
15081 Date:   Fri Sep 6 16:48:52 2013 -0700
15082
15083     altoslib/altosui: Add TeleMini-v1.0 eeprom support
15084     
15085     Got lost in the AltosState transition
15086     
15087     Signed-off-by: Keith Packard <keithp@keithp.com>
15088
15089 commit 82b3e3e4889aa5d4d157df1ad82e28068fda9e2a
15090 Author: Keith Packard <keithp@keithp.com>
15091 Date:   Thu Sep 5 23:31:22 2013 -0700
15092
15093     altosui: Remove debugging printf from InfoTable
15094     
15095     Signed-off-by: Keith Packard <keithp@keithp.com>
15096
15097 commit 7f4650990e8a7cfcf8461e8928dfc426c9a563cc
15098 Author: Keith Packard <keithp@keithp.com>
15099 Date:   Thu Sep 5 22:57:19 2013 -0700
15100
15101     altos: Set tick value in new TeleMetrum v2 sensor packets
15102     
15103     Was getting left with the old value, which wasn't very useful
15104     
15105     Signed-off-by: Keith Packard <keithp@keithp.com>
15106
15107 commit 7314bf807544eecf2fd970e93c752ff15688bb42
15108 Author: Keith Packard <keithp@keithp.com>
15109 Date:   Thu Sep 5 22:56:57 2013 -0700
15110
15111     ao-tools/ao-telem: Parse new TM v2 packets
15112     
15113     Signed-off-by: Keith Packard <keithp@keithp.com>
15114
15115 commit ffdf82445817d1c97699f7de82534420b87d0ea7
15116 Author: Keith Packard <keithp@keithp.com>
15117 Date:   Thu Sep 5 22:56:11 2013 -0700
15118
15119     altosui: Fix 'Graph Flight' button in landed dialog
15120     
15121     Telemetry file reading was broken (oops!)
15122     
15123     Signed-off-by: Keith Packard <keithp@keithp.com>
15124
15125 commit 0e3edacceb169326b8f5727bb5737d8238e9e40b
15126 Author: Keith Packard <keithp@keithp.com>
15127 Date:   Thu Sep 5 22:55:43 2013 -0700
15128
15129     altoslib: Remove debug printf from AltosTelemetryMetrumSensor
15130     
15131     Signed-off-by: Keith Packard <keithp@keithp.com>
15132
15133 commit 59f0deff6d7bae22fb1b9a0649f3481b3d287d8e
15134 Author: Keith Packard <keithp@keithp.com>
15135 Date:   Thu Sep 5 22:55:09 2013 -0700
15136
15137     altoslib: Rewrite AltosTelemetryIterable
15138     
15139     Sort while reading instead of sorting separately.
15140     
15141     Signed-off-by: Keith Packard <keithp@keithp.com>
15142
15143 commit effc62354fc82bb937c6f445a147fc92153a0731
15144 Author: Keith Packard <keithp@keithp.com>
15145 Date:   Thu Sep 5 22:54:02 2013 -0700
15146
15147     altoslib: Record time_change in AltosState correctly
15148     
15149     time_change is used to make real-time playback work.
15150     
15151     Signed-off-by: Keith Packard <keithp@keithp.com>
15152
15153 commit b9ee58a7af839462680a0bdf1c1721017269986f
15154 Author: Keith Packard <keithp@keithp.com>
15155 Date:   Thu Sep 5 22:53:14 2013 -0700
15156
15157     altoslib: Update received time when replaying flights
15158     
15159     Received time is otherwise recorded as the time when the packets were
15160     read from the file, which doesn't work in real-time playback
15161     
15162     Signed-off-by: Keith Packard <keithp@keithp.com>
15163
15164 commit e17e3691d93636eebbd7381f2df1303dc46ea96c
15165 Author: Keith Packard <keithp@keithp.com>
15166 Date:   Thu Sep 5 22:52:22 2013 -0700
15167
15168     altoslib: Only open log file when both flight and serial are known
15169     
15170     Some telemetry formats include serial and flight in different packets,
15171     so wait for both before creating the file
15172     
15173     Signed-off-by: Keith Packard <keithp@keithp.com>
15174
15175 commit a9c495c7ca1e08b7ac76b0dab8b3bd9bd3a7edfc
15176 Author: Keith Packard <keithp@keithp.com>
15177 Date:   Thu Sep 5 15:03:07 2013 -0700
15178
15179     altoslib: Use AltosTelemetry.parse to pull telem lines apart
15180     
15181     Signed-off-by: Keith Packard <keithp@keithp.com>
15182
15183 commit 9f017b4837b106e8c422955a95762f1bf3c78016
15184 Author: Keith Packard <keithp@keithp.com>
15185 Date:   Thu Sep 5 15:02:47 2013 -0700
15186
15187     altoslib: Remove more AltosRecord based files
15188     
15189     Signed-off-by: Keith Packard <keithp@keithp.com>
15190
15191 commit 984515452f9ab56dad112d725469acfa54e2233b
15192 Author: Keith Packard <keithp@keithp.com>
15193 Date:   Thu Sep 5 11:55:24 2013 -0700
15194
15195     altoslib: remove AltosRecord based eeprom code
15196     
15197     Signed-off-by: Keith Packard <keithp@keithp.com>
15198
15199 commit 3325df306933f080619f13ba1db45de484613d5a
15200 Author: Keith Packard <keithp@keithp.com>
15201 Date:   Thu Sep 5 11:50:41 2013 -0700
15202
15203     altoslib: Remove AltosRecord-based telemetry code
15204     
15205     All of this is now AltosState based
15206     
15207     Signed-off-by: Keith Packard <keithp@keithp.com>
15208
15209 commit e9e9c6592c49109288a4e02e780b130fadb97db7
15210 Author: Mike Beattie <mike@ethernal.org>
15211 Date:   Tue Sep 3 15:11:33 2013 +1200
15212
15213     altosdroid: convert rogue files to unix line endings
15214     
15215     Signed-off-by: Mike Beattie <mike@ethernal.org>
15216
15217 commit 93e66b4911b7285f9095712ef746571153c3f088
15218 Author: Mike Beattie <mike@ethernal.org>
15219 Date:   Thu Sep 5 03:11:42 2013 +1200
15220
15221     altosdroid: more updates for new AltosState
15222     
15223     Signed-off-by: Mike Beattie <mike@ethernal.org>
15224     
15225     Conflicts:
15226         altosdroid/src/org/altusmetrum/AltosDroid/AltosVoice.java
15227
15228 commit ee14ad16c242e8bd7a9d33ebf569211d1490b8e1
15229 Author: Mike Beattie <mike@ethernal.org>
15230 Date:   Tue Sep 3 15:10:23 2013 +1200
15231
15232     altosdroid: update to support new state code
15233     
15234     Signed-off-by: Mike Beattie <mike@ethernal.org>
15235     
15236     Conflicts:
15237         altosdroid/src/org/altusmetrum/AltosDroid/TabAscent.java
15238         altosdroid/src/org/altusmetrum/AltosDroid/TabDescent.java
15239         altosdroid/src/org/altusmetrum/AltosDroid/TabPad.java
15240
15241 commit 5b976a6651f4eb05d30afc08b9e1f27c7e52ae00
15242 Author: Keith Packard <keithp@keithp.com>
15243 Date:   Thu Sep 5 11:33:48 2013 -0700
15244
15245     altoslib: Finish AltosState changes. Update version number.
15246     
15247     Removes all of the AltosRecord bits, changes the monitor idle bits to
15248     have per-object state updaters.
15249     
15250     Signed-off-by: Keith Packard <keithp@keithp.com>
15251
15252 commit b984ff81d6b8979574e0248ffe8876634b8e1942
15253 Author: Keith Packard <keithp@keithp.com>
15254 Date:   Tue Sep 3 17:42:42 2013 -0600
15255
15256     altoslib: Set measured acceleration for measured acceleration
15257     
15258     Was setting computed acceleration even for measured data
15259     
15260     Signed-off-by: Keith Packard <keithp@keithp.com>
15261
15262 commit 96a651cc1b81b30f4cbde454e34cf80ed8825945
15263 Author: Keith Packard <keithp@keithp.com>
15264 Date:   Tue Sep 3 17:42:00 2013 -0600
15265
15266     altoslib: Clear sat data when tick changes
15267     
15268     Sat data comes in multiple records, but the tick is always the same,
15269     so use that to tell when the set of sats is new
15270     
15271     Signed-off-by: Keith Packard <keithp@keithp.com>
15272
15273 commit 4de934c283a839fcbb246b36aa15362f3cf8629c
15274 Author: Keith Packard <keithp@keithp.com>
15275 Date:   Tue Sep 3 17:41:12 2013 -0600
15276
15277     altoslib: Start integrated value at 0 by default
15278     
15279     Check for MISSING and start at zero in that case
15280     
15281     Signed-off-by: Keith Packard <keithp@keithp.com>
15282
15283 commit cfd8e4ebb3cb63937a71537095adb911d6211817
15284 Author: Keith Packard <keithp@keithp.com>
15285 Date:   Tue Sep 3 17:40:04 2013 -0600
15286
15287     altoslib: Use first few baro samples for ground pressure on TM
15288     
15289     TM didn't record the ground baro reading in the log file, so pull out
15290     the first few measured baro samples and use those instead.
15291     
15292     Signed-off-by: Keith Packard <keithp@keithp.com>
15293
15294 commit 6ee99c1861ef1898a77aead41d80383e697bd248
15295 Author: Keith Packard <keithp@keithp.com>
15296 Date:   Tue Sep 3 17:38:20 2013 -0600
15297
15298     altoslib: Make Ascent/descent use different filter values. Always filter.
15299     
15300     In derivative code, use a shorter filter during ascent as the baro
15301     sensor is cleaner then. Then, make sure to always filter the values as
15302     the very first few baro samples can be noisy, which generates a bad
15303     starting speed.
15304     
15305     Signed-off-by: Keith Packard <keithp@keithp.com>
15306
15307 commit 70e67925cff98984d49fbc3f60e880c91e6d5079
15308 Author: Keith Packard <keithp@keithp.com>
15309 Date:   Tue Sep 3 17:36:16 2013 -0600
15310
15311     altoslib: Remove duplicate cmd/tick from TM eeprom file code
15312     
15313     Also replace tick setting with super call (which does that)
15314     
15315     Signed-off-by: Keith Packard <keithp@keithp.com>
15316
15317 commit bc54014cfd4dbca67fa9db66e906ab8212a2eaa2
15318 Author: Keith Packard <keithp@keithp.com>
15319 Date:   Tue Sep 3 17:35:23 2013 -0600
15320
15321     altoslib: Clean up metrum eeprom file reading
15322     
15323     Spurious tick setting, fix some local variable names
15324     
15325     Signed-off-by: Keith Packard <keithp@keithp.com>
15326
15327 commit d203a2da2641bec21a4257c8a7b03d9a1eba53a5
15328 Author: Keith Packard <keithp@keithp.com>
15329 Date:   Tue Sep 3 17:34:41 2013 -0600
15330
15331     altoslib: Correct mega/metrum eeprom years by adding 2000
15332     
15333     The files contain a single byte for year, which is always years since 2000.
15334     
15335     Signed-off-by: Keith Packard <keithp@keithp.com>
15336
15337 commit 999c3c7866613e658a6c26374499bc516bbc944d
15338 Author: Keith Packard <keithp@keithp.com>
15339 Date:   Tue Sep 3 17:32:37 2013 -0600
15340
15341     altoslib: Correct tick wrapping in eeprom file reading
15342     
15343     Just need to signal that at least one record has been read to know
15344     when to start checking for wrap
15345     
15346     Signed-off-by: Keith Packard <keithp@keithp.com>
15347
15348 commit 7d3af3d74f70a0933829be91ad3e3be04b1f1023
15349 Author: Keith Packard <keithp@keithp.com>
15350 Date:   Tue Sep 3 17:31:58 2013 -0600
15351
15352     altoslib: Ensure eeprom file body always exists
15353     
15354     Create an empty list of body elements if none were read from the file
15355     
15356     Signed-off-by: Keith Packard <keithp@keithp.com>
15357
15358 commit 528e2e41112cad8a81bccbb89c3bd202b818a506
15359 Author: Keith Packard <keithp@keithp.com>
15360 Date:   Mon Sep 2 23:10:23 2013 -0600
15361
15362     altoslib: More AltosState hacking
15363     
15364     EasyMini graphs are looking good now.
15365     
15366     Signed-off-by: Keith Packard <keithp@keithp.com>
15367
15368 commit 224a1e01bacb7db0076129906ed58e1c785e1b14
15369 Author: Keith Packard <keithp@keithp.com>
15370 Date:   Mon Sep 2 23:08:34 2013 -0600
15371
15372     altos: Not all products have pins to control flash loader
15373     
15374     TeleGPS has no exposed pins for this function
15375     
15376     Signed-off-by: Keith Packard <keithp@keithp.com>
15377
15378 commit 77dc89ed5b7bf8f5b3fa3b6131660f1a98f583ea
15379 Author: Keith Packard <keithp@keithp.com>
15380 Date:   Sat Aug 31 23:11:39 2013 -0500
15381
15382     altoslib/altosui: Further AltosState transition work
15383     
15384     Parses most eeprom and telem records now; altosui updated to show from
15385     AltosState info.
15386     
15387     Signed-off-by: Keith Packard <keithp@keithp.com>
15388
15389 commit c781469ff907a32bd43a5d781391b6859b14cd32
15390 Author: Keith Packard <keithp@keithp.com>
15391 Date:   Sat Aug 31 23:10:56 2013 -0500
15392
15393     altos/telegps: Initialize logging system
15394     
15395     Otherwise, very little logging works
15396     
15397     Signed-off-by: Keith Packard <keithp@keithp.com>
15398
15399 commit 7ec1b97d278c7aec3199fb7270f0dcf9484c879f
15400 Merge: 017ed54 4188153
15401 Author: Keith Packard <keithp@keithp.com>
15402 Date:   Sat Aug 31 08:22:09 2013 -0500
15403
15404     Merge branch 'master' into new-state
15405
15406 commit 4188153548fca104bb49cda2d502c708fe4b49d7
15407 Author: Keith Packard <keithp@keithp.com>
15408 Date:   Sat Aug 31 08:20:48 2013 -0500
15409
15410     altos/lpc: Add bits for building flash loaders
15411     
15412     Signed-off-by: Keith Packard <keithp@keithp.com>
15413
15414 commit 017ed54ff69ef2f7740ea2578e22bf72e88deafb
15415 Author: Keith Packard <keithp@keithp.com>
15416 Date:   Sat Aug 31 08:19:28 2013 -0500
15417
15418     altoslib/altosui: Fixes for state changes
15419     
15420     Format for gps alt (now double).
15421     Use new code for csv file loading.
15422     
15423     Signed-off-by: Keith Packard <keithp@keithp.com>
15424
15425 commit f07f6d55edf5b97020680b3ce1d9e00bb3df64a6
15426 Author: Keith Packard <keithp@keithp.com>
15427 Date:   Sat Aug 31 01:48:02 2013 -0500
15428
15429     altoslib/altosui: Get legacy telem working with new AltosState structure
15430     
15431     Make AltosTelemetry work without AltosRecord
15432     
15433     Signed-off-by: Keith Packard <keithp@keithp.com>
15434
15435 commit de8d9c5630ae46378c50faf97f7d2e97fe139e30
15436 Author: Keith Packard <keithp@keithp.com>
15437 Date:   Thu Aug 29 19:24:51 2013 -0500
15438
15439     altoslib, altosui: Restructured state management now does TM eeprom files
15440     
15441     Removed uses of AltosRecord from AltosState, now just need to rewrite
15442     the other AltosState changing code to match
15443     
15444     Signed-off-by: Keith Packard <keithp@keithp.com>
15445
15446 commit ce1378385ef273010498e81c205f42d8e32c7dc1
15447 Author: Keith Packard <keithp@keithp.com>
15448 Date:   Thu Aug 29 19:22:18 2013 -0500
15449
15450     altos: Split EasyMini and TeleMini log formats
15451     
15452     Same data, but EasyMini uses a 3.0V supply while TeleMini uses 3.3V,
15453     which changes the intepretation of all of the ADC values
15454     
15455     Signed-off-by: Keith Packard <keithp@keithp.com>
15456
15457 commit 04d7d0f829ba953ffeca8ad9887a4b6b2b5d5087
15458 Author: Keith Packard <keithp@keithp.com>
15459 Date:   Tue Aug 27 21:28:07 2013 -0600
15460
15461     altoslib: Start restructuring AltosState harder
15462     
15463     Make per-packet code update state itself rather than having all state
15464     updates done centrally. Will make adding new packet types easier.
15465     
15466     Signed-off-by: Keith Packard <keithp@keithp.com>
15467
15468 commit dcc51bb18985c24fa35bce0dd42ea3d847b960bf
15469 Merge: 7c82acc a73b025
15470 Author: Keith Packard <keithp@keithp.com>
15471 Date:   Wed Aug 28 22:52:58 2013 -0600
15472
15473     Merge remote-tracking branch 'origin/telemini'
15474     
15475     Signed-off-by: Keith Packard <keithp@keithp.com>
15476     
15477     Conflicts:
15478         src/core/ao_telemetry.c
15479         src/core/ao_telemetry.h
15480     
15481     Added both Mini and Metrum telemetry defines
15482
15483 commit 7c82acc1c1c5b7b4da7c7ecb3b2fd90140e4c703
15484 Author: Keith Packard <keithp@keithp.com>
15485 Date:   Wed Aug 28 22:12:25 2013 -0600
15486
15487     altos/stm: Make sure we switch to MSI during timer init
15488     
15489     Need to ensure that the CPU is actually using the MSI during timer
15490     init or all of the other clock changes won't work
15491     
15492     Signed-off-by: Keith Packard <keithp@keithp.com>
15493
15494 commit 6802b6a65b1fec06c2c873282be792c40b3c8f5e
15495 Author: Keith Packard <keithp@keithp.com>
15496 Date:   Wed Aug 28 22:10:58 2013 -0600
15497
15498     altos/stm: Remove stale timer defines
15499     
15500     Stuff from when we weren't using systick
15501     
15502     Signed-off-by: Keith Packard <keithp@keithp.com>
15503
15504 commit 8e9ed70f50e3f535c2580820771bb1bc3cd055fe
15505 Author: Keith Packard <keithp@keithp.com>
15506 Date:   Wed Aug 28 22:08:51 2013 -0600
15507
15508     altos/stm: Make sampling profiler work again
15509     
15510     Disable the separate stack as that means we can't figure out the PC
15511     from the timer interrupt. Move ao_idle_loc after the interrupt release
15512     so that we see idle tasks correctly.
15513     
15514     Signed-off-by: Keith Packard <keithp@keithp.com>
15515
15516 commit 2fa87754c5c11bb86e9b1878580c3d4f4b2463f5
15517 Author: Keith Packard <keithp@keithp.com>
15518 Date:   Wed Aug 28 22:08:04 2013 -0600
15519
15520     altos/stm: New compiler doesn't correctly build flash bits yet
15521     
15522     Use /opt/cortex until we make the packaged one work
15523     
15524     Signed-off-by: Keith Packard <keithp@keithp.com>
15525
15526 commit 4887af0bf90661a3fdca76f1797a704888edab06
15527 Author: Keith Packard <keithp@keithp.com>
15528 Date:   Wed Aug 28 22:04:18 2013 -0600
15529
15530     altos: Force u-blox to 9600 baud for now
15531     
15532     The Max-7 parts just aren't happy switching baud rates, managing only
15533     about half the time. Someday I'll figure out why, but until then, make
15534     things work by just leaving the chips at 9600 baud
15535     
15536     Signed-off-by: Keith Packard <keithp@keithp.com>
15537
15538 commit 61163980f096d555a843e25cd9fe1aec93bbbbba
15539 Author: Keith Packard <keithp@keithp.com>
15540 Date:   Wed Aug 28 22:02:48 2013 -0600
15541
15542     altos: Add debugging to ublox GPS driver
15543     
15544     The new max 7 parts seem to be unhappy about switching baud rates, so
15545     I've added a pile of debugging to help out. Some day, I'll figure out
15546     how to make them work, this code is being left in place to help with that.
15547     
15548     Signed-off-by: Keith Packard <keithp@keithp.com>
15549
15550 commit 44d4c66b21d6b5a0c656fdff6d01ef1d125c1101
15551 Author: Keith Packard <keithp@keithp.com>
15552 Date:   Wed Aug 28 21:54:31 2013 -0600
15553
15554     altos: Update time for next alarm each time a task is added
15555     
15556     Adding a task with a sooner timeout than existing alarm tasks was not
15557     correctly updating the time to fire the next alarm, causing tasks to
15558     be delayed by the wrong amount.
15559     
15560     Signed-off-by: Keith Packard <keithp@keithp.com>
15561
15562 commit 39475c7b8da4f29936f73ffa2bff112f50ee9328
15563 Author: Keith Packard <keithp@keithp.com>
15564 Date:   Wed Aug 28 21:52:29 2013 -0600
15565
15566     altos: TM v2 places the MMA6555 upside down compared to Tmega
15567     
15568     Means we need to invert the data coming out to make it work
15569     
15570     Signed-off-by: Keith Packard <keithp@keithp.com>
15571
15572 commit f222e8504bfd01027e3c380c239a2cde2c367d74
15573 Author: Keith Packard <keithp@keithp.com>
15574 Date:   Tue Aug 27 22:00:29 2013 -0600
15575
15576     altos/telemetrum-v2.0: Use 9600 baud for ublox
15577     
15578     Something is up with the Max 7
15579     
15580     Signed-off-by: Keith Packard <keithp@keithp.com>
15581
15582 commit abde595116f6e8b60ec9ce81554c05de11fd456e
15583 Author: Keith Packard <keithp@keithp.com>
15584 Date:   Tue Aug 27 21:36:02 2013 -0600
15585
15586     altos/telemetrum-v2.0: Fix MMA6555 SPI pin assignment
15587     
15588     For TM v2.0, it's on PB 3-5, not PE13-15
15589     
15590     Signed-off-by: Keith Packard <keithp@keithp.com>
15591
15592 commit 454a41359b94e9bcf8582420abc359bbab9d8176
15593 Author: Keith Packard <keithp@keithp.com>
15594 Date:   Fri Aug 23 11:25:56 2013 -0700
15595
15596     altos: Rename TeleMetrum v2.0 ADC sense members
15597     
15598     Use sense_a and sense_m instead of sense[2]
15599     
15600     Signed-off-by: Keith Packard <keithp@keithp.com>
15601
15602 commit 6aade70be0a7669d65a8606753d21e4eef5592cd
15603 Author: Keith Packard <keithp@keithp.com>
15604 Date:   Tue Aug 20 14:20:56 2013 -0700
15605
15606     altos: Add TeleMetrum v2.0 boot loader
15607     
15608     Signed-off-by: Keith Packard <keithp@keithp.com>
15609
15610 commit 7b0f9b25a56fa8b4aa1c2e9d79c43e6a97cab0c0
15611 Author: Keith Packard <keithp@keithp.com>
15612 Date:   Tue Aug 20 11:40:17 2013 -0700
15613
15614     altos: Initial TeleMetrum v2.0 bits
15615     
15616     Adds new telemetry and logging formats along with code for TeleMetrum
15617     v2.0 design.
15618     
15619     Signed-off-by: Keith Packard <keithp@keithp.com>
15620
15621 commit a73b02518fcbc9fc0807ed8e141d3a06e8ad8214
15622 Author: Keith Packard <keithp@keithp.com>
15623 Date:   Mon Aug 26 18:46:02 2013 -0700
15624
15625     altos: Don't use ao_data on cc1111 projects
15626     
15627     cc1111 ao_adc.c supplies the needed globals at this point, and linking
15628     both into the program leads to two different versions of each at
15629     different addresses (yay SDCC linker!)
15630     
15631     Signed-off-by: Keith Packard <keithp@keithp.com>
15632
15633 commit d54156caf856ab5570f050692b333a2c5d991265
15634 Author: Keith Packard <keithp@keithp.com>
15635 Date:   Mon Aug 26 18:44:23 2013 -0700
15636
15637     altos: Make ao_wakeup reentrant
15638     
15639     In case we end up invoking it from two places at once.
15640     
15641     Signed-off-by: Keith Packard <keithp@keithp.com>
15642
15643 commit 7e941695aa27e5eaf453ca1128b8d835472410a4
15644 Author: Keith Packard <keithp@keithp.com>
15645 Date:   Mon Aug 26 18:43:20 2013 -0700
15646
15647     altos: Check for MS5607 MISO low before sleeping
15648     
15649     If the MISO line goes low before we manage to configure the
15650     interrupts, we'll miss it entirely unless we check the pin explicitly.
15651     
15652     Signed-off-by: Keith Packard <keithp@keithp.com>
15653
15654 commit 9b9acb88aa97e8565cdf9342fc59a5aee08e3d34
15655 Author: Keith Packard <keithp@keithp.com>
15656 Date:   Mon Aug 26 17:18:57 2013 -0700
15657
15658     altos/telemini-v2.0: Add ao_exti.h depend. Init beeper and usb.
15659     
15660     Signed-off-by: Keith Packard <keithp@keithp.com>
15661
15662 commit 7274b77666df9d2cab2854ec1a403d80e5fce73b
15663 Author: Keith Packard <keithp@keithp.com>
15664 Date:   Mon Aug 26 17:18:17 2013 -0700
15665
15666     altos: Use %ld and %lu for MS5607 debug output
15667     
15668     The value are 'long', so use the right printf format.
15669     
15670     Signed-off-by: Keith Packard <keithp@keithp.com>
15671
15672 commit 4e3955a5b0ac125bd807920c467f959618449fbc
15673 Author: Keith Packard <keithp@keithp.com>
15674 Date:   Mon Aug 26 17:17:47 2013 -0700
15675
15676     altos/cc1111: Wake up non-ADC sensor code each timer tick
15677     
15678     Make sure the MS5607 code gets told to sample every tick
15679     
15680     Signed-off-by: Keith Packard <keithp@keithp.com>
15681
15682 commit 3b2f83a7d686b5fbc0aaa56d48cb734f353631c8
15683 Author: Keith Packard <keithp@keithp.com>
15684 Date:   Mon Aug 26 17:16:54 2013 -0700
15685
15686     altos/cc1111: Leave pin interrupts completely disabled at init time
15687     
15688     Don't even turn in the PICTL bits as that seems to cause the chip to
15689     be unhappy.
15690     
15691     Signed-off-by: Keith Packard <keithp@keithp.com>
15692
15693 commit 8ca98dc8c868c47c372d6b666c36e691fa402824
15694 Author: Keith Packard <keithp@keithp.com>
15695 Date:   Mon Aug 26 17:15:55 2013 -0700
15696
15697     altos: Get telemini to copy current MS5607 state to ring.
15698     
15699     The ADC code is responsible for actually inserting the non-ADC data
15700     into the ring, so do the copy there.
15701     
15702     Signed-off-by: Keith Packard <keithp@keithp.com>
15703
15704 commit af9f9cf0c21630562c74fae41773319229bf44d3
15705 Author: Keith Packard <keithp@keithp.com>
15706 Date:   Mon Aug 26 16:42:45 2013 -0700
15707
15708     cc1111: Hacky pin interrupt support. Only useful for TeleMini v2
15709     
15710     This code is designed to support the MS5607 MISO interrupt bits.
15711     
15712     Signed-off-by: Keith Packard <keithp@keithp.com>
15713
15714 commit 2380a4b9bd69629c78eec0a87ff8681a0524d8d2
15715 Author: Keith Packard <keithp@keithp.com>
15716 Date:   Mon Aug 26 16:41:33 2013 -0700
15717
15718     cc1111: Rework ADC configuration a bit, fix Tm V2 ADC usage
15719     
15720     The Tm v2 ADC code was not actually fetching and storing the ADC
15721     conversion values.
15722     
15723     Signed-off-by: Keith Packard <keithp@keithp.com>
15724
15725 commit aeb1c8a2aa533cb2805f0dbe848e098c8cae2b39
15726 Author: Keith Packard <keithp@keithp.com>
15727 Date:   Mon Aug 26 16:39:47 2013 -0700
15728
15729     ao-tools: Use TeleDongle for default ao-dbg target
15730     
15731     Makes more sense than assuming we're still using the old TI developer board.
15732     
15733     Signed-off-by: Keith Packard <keithp@keithp.com>
15734
15735 commit 377a44cbfd5c8a659d2fecabb154726717a41900
15736 Author: Keith Packard <keithp@keithp.com>
15737 Date:   Sun Aug 25 22:34:09 2013 -0700
15738
15739     altos: Build more products by default
15740     
15741     We keep creating more hardware...
15742     
15743     Signed-off-by: Keith Packard <keithp@keithp.com>
15744
15745 commit e72147e215a982ce701099626424b9a856ac9d09
15746 Author: Keith Packard <keithp@keithp.com>
15747 Date:   Sun Aug 25 22:33:30 2013 -0700
15748
15749     altos: Changes required by cc1111 multi-spi support
15750     
15751     These drivers got missed
15752     
15753     Signed-off-by: Keith Packard <keithp@keithp.com>
15754
15755 commit af6f4205b00669af40acffc528cc8093b0236cf6
15756 Author: Keith Packard <keithp@keithp.com>
15757 Date:   Sun Aug 25 22:29:46 2013 -0700
15758
15759     Bump version to 1.2.9.2
15760     
15761     Set version for Airfest testing
15762     
15763     Signed-off-by: Keith Packard <keithp@keithp.com>
15764
15765 commit 312f6194a4bc75473cb0d61a6d58b66fb1f7c068
15766 Author: Keith Packard <keithp@keithp.com>
15767 Date:   Wed Jun 12 00:43:31 2013 -0700
15768
15769     altos/teletiny-v2.0: Support multiple SPI busses on CC1111
15770     
15771     Needed for TeleMini v2.0
15772     
15773     Signed-off-by: Keith Packard <keithp@keithp.com>
15774
15775 commit 2c2bbfd9a1a4b9de42cf566f21f179ff5ede0419
15776 Author: Keith Packard <keithp@keithp.com>
15777 Date:   Thu May 23 16:52:59 2013 -0600
15778
15779     altos: Add exti and spi to telemini-v2.0
15780     
15781     No longer builds like this
15782     
15783     Signed-off-by: Keith Packard <keithp@keithp.com>
15784
15785 commit 56911f27376b0fe91a464e369bb8aa1531b3c7dc
15786 Author: Keith Packard <keithp@keithp.com>
15787 Date:   Thu May 23 02:17:51 2013 -0600
15788
15789     altos: Make TeleMini v2.0 fit
15790     
15791     Mash lots of storage locations and code around to shrink stuff down to size
15792     
15793     Signed-off-by: Keith Packard <keithp@keithp.com>
15794
15795 commit cb844328322fd7d9f4dafb58b322257a70b347e6
15796 Author: Keith Packard <keithp@keithp.com>
15797 Date:   Wed May 22 19:20:54 2013 -0600
15798
15799     altos: Add 64-bit subtraction
15800     
15801     Signed-off-by: Keith Packard <keithp@keithp.com>
15802
15803 commit 5ccd902d0fd2adc40c72982babb60fac4da6a087
15804 Author: Keith Packard <keithp@keithp.com>
15805 Date:   Wed May 22 17:08:55 2013 -0700
15806
15807     altos: Add 64x64 multiply. Test 64 ops for dest same as either source
15808     
15809     The test change is to ensure that the destination may be one of the 64
15810     bit sources.
15811     
15812     Signed-off-by: Keith Packard <keithp@keithp.com>
15813
15814 commit f7602ae566a5cbf2d2cbb1d68bad7e2d1177a33a
15815 Author: Keith Packard <keithp@keithp.com>
15816 Date:   Wed May 22 14:38:19 2013 -0700
15817
15818     altos: Make 64x16 mul a bit faster
15819     
15820     the unsigned 32x32 multiply really does work, just use it
15821     
15822     Signed-off-by: Keith Packard <keithp@keithp.com>
15823
15824 commit 3114baef45803250a2e5cdd2ee4a9171f2045b0c
15825 Author: Keith Packard <keithp@keithp.com>
15826 Date:   Wed May 22 14:32:50 2013 -0700
15827
15828     altos: Add 64-bit add/mul/shift for SDCC
15829     
15830     SDCC doeesn't provide a native 64-bit type (sigh), so
15831     implement the minimal operations necessary for the MS5607 conversion
15832     routine.
15833     
15834     Signed-off-by: Keith Packard <keithp@keithp.com>
15835
15836 commit d0b4e926ecececa7499a301b6135189be119512e
15837 Author: Keith Packard <keithp@keithp.com>
15838 Date:   Wed May 22 13:03:06 2013 -0700
15839
15840     Initial TeleMini bits
15841     
15842     Signed-off-by: Keith Packard <keithp@keithp.com>
15843
15844 commit 3ded57394f6dfd7beb9526c031a5c6c6c9926917
15845 Author: Keith Packard <keithp@keithp.com>
15846 Date:   Sun Aug 25 22:22:55 2013 -0700
15847
15848     altos: Explicitly list the linker script needed for AVR targets.
15849     
15850     Something changed in the binutils-avr package which makes the linker
15851     fail to find the script in the default location.
15852     
15853     Signed-off-by: Keith Packard <keithp@keithp.com>
15854
15855 commit 203951f6e049ec7e95489849a2bfaa01aa19c0c9
15856 Merge: 4babe73 b363a62
15857 Author: Keith Packard <keithp@keithp.com>
15858 Date:   Sun Aug 25 22:00:27 2013 -0700
15859
15860     Merge branch 'master' into telegps-v0.3
15861
15862 commit b363a628fc6137c3395a48ef13de7a799ec3e2c3
15863 Author: Keith Packard <keithp@keithp.com>
15864 Date:   Wed May 22 19:31:15 2013 -0600
15865
15866     altos: MS5607 pressure computation for low temperatures was wrong
15867     
15868     Second correction only applies to temps < -15°C, not 15°C.
15869     
15870     Signed-off-by: Keith Packard <keithp@keithp.com>
15871
15872 commit aa2948803d33dbee6f1eab30370178252df2b56d
15873 Author: Keith Packard <keithp@keithp.com>
15874 Date:   Sat Aug 17 17:45:06 2013 +0200
15875
15876     altos: Wake up on LPC usart ISR only once
15877     
15878     Instead of waking up after every character, wait until the FIFO is
15879     empty to reduce overhead
15880     
15881     Signed-off-by: Keith Packard <keithp@keithp.com>
15882
15883 commit 10f88c46df9a266f62452dc25275c79a3bb0653d
15884 Author: Keith Packard <keithp@keithp.com>
15885 Date:   Sat Aug 17 17:43:18 2013 +0200
15886
15887     altos: Set default LPC stack to 512 bytes, Em to 384 bytes
15888     
15889     The default for lpc has been raised to 512 bytes, but Em doesn't have
15890     enough RAM for that.
15891     
15892     Signed-off-by: Keith Packard <keithp@keithp.com>
15893
15894 commit 41428d1e1e44a17eea5fda2b34cabafbdebf1464
15895 Author: Keith Packard <keithp@keithp.com>
15896 Date:   Sat Aug 17 17:35:08 2013 +0200
15897
15898     altosdroid: Add note to report TeleBT battery level
15899     
15900     Signed-off-by: Keith Packard <keithp@keithp.com>
15901
15902 commit e908eb090fc2aaa03b35dc37c3e008b05ad44d80
15903 Author: Keith Packard <keithp@keithp.com>
15904 Date:   Fri Aug 23 11:24:18 2013 -0700
15905
15906     altos: Use installed arm compiler for LPC
15907     
15908     Signed-off-by: Keith Packard <keithp@keithp.com>
15909
15910 commit 1aed2eb5c7d477a2f3d4fada22980041aba97cb8
15911 Author: Keith Packard <keithp@keithp.com>
15912 Date:   Fri Aug 23 11:22:10 2013 -0700
15913
15914     altos/lpc: Stop using burst mode for LPC ADC
15915     
15916     Burst mode doesn't stop after one round of conversions, so we end up
15917     getting incorrect values in whatever the last conversion register is.
15918     
15919     Just use single conversions and take an interrupt per channel.
15920     
15921     Also, slow down the ADC so that our values are more stable -- just
15922     need to make sure we get the whole conversion sequence done 100 times
15923     a second.
15924     
15925     Signed-off-by: Keith Packard <keithp@keithp.com>
15926
15927 commit 4babe7310f78338ca36ab9d31ac833eada27485f
15928 Author: Keith Packard <keithp@keithp.com>
15929 Date:   Sat Aug 24 23:22:18 2013 -0700
15930
15931     altos: Allow products to disable RDF entirely
15932     
15933     TeleGPS doesn't ever want RDF
15934     
15935     Signed-off-by: Keith Packard <keithp@keithp.com>
15936
15937 commit a1ec15f4585e23eb67affbe7d9d97261576b198d
15938 Author: Keith Packard <keithp@keithp.com>
15939 Date:   Sat Aug 24 23:21:53 2013 -0700
15940
15941     altos: Add telegps v0.3 product
15942     
15943     Signed-off-by: Keith Packard <keithp@keithp.com>
15944
15945 commit e2f385946132690ca6dc141d7c7830ae0cfe3458
15946 Author: Keith Packard <keithp@keithp.com>
15947 Date:   Tue Aug 20 08:54:44 2013 -0700
15948
15949     altos: various cc115l driver hacks
15950     
15951     Try to recover from TX_FIFO_UNDERFLOW by resetting the chip at idle
15952     time.
15953     
15954     Do a calibration phase during setup.
15955     
15956     Program power to ramp up to limit key down noise.
15957     
15958     Signed-off-by: Keith Packard <keithp@keithp.com>
15959
15960 commit 0dd55f66d79f54b450fd8122aecd84d68b810bf4
15961 Author: Keith Packard <keithp@keithp.com>
15962 Date:   Sat Aug 17 17:45:06 2013 +0200
15963
15964     altos: Wake up on LPC usart ISR only once
15965     
15966     Instead of waking up after every character, wait until the FIFO is
15967     empty to reduce overhead
15968     
15969     Signed-off-by: Keith Packard <keithp@keithp.com>
15970
15971 commit a0dd93ccf0920260b41c4003955617fd0cd1c8b4
15972 Author: Keith Packard <keithp@keithp.com>
15973 Date:   Sat Aug 17 17:43:18 2013 +0200
15974
15975     altos: Set default LPC stack to 512 bytes, Em to 384 bytes
15976     
15977     The default for lpc has been raised to 512 bytes, but Em doesn't have
15978     enough RAM for that.
15979     
15980     Signed-off-by: Keith Packard <keithp@keithp.com>
15981
15982 commit 9a22a300009679a14d66214a5d61e9e6a177279f
15983 Author: Keith Packard <keithp@keithp.com>
15984 Date:   Sat Aug 17 17:40:33 2013 +0200
15985
15986     altos: Allow ublox to run at other baud rates
15987     
15988     Provides a configuration option to set the ublox serial baud rate to
15989     something other than 57600 baud
15990     
15991     Signed-off-by: Keith Packard <keithp@keithp.com>
15992
15993 commit e0a0a747624c2df66ca4a73b5a0de014ea204dca
15994 Author: Keith Packard <keithp@keithp.com>
15995 Date:   Sat Aug 17 17:36:35 2013 +0200
15996
15997     altos: allow projects to override default config values
15998     
15999     Override default radio power and APRS interval
16000     
16001     Signed-off-by: Keith Packard <keithp@keithp.com>
16002
16003 commit bed68ef5a6999b2e23853958502a689a7dbc15b3
16004 Author: Keith Packard <keithp@keithp.com>
16005 Date:   Sat Aug 17 17:35:08 2013 +0200
16006
16007     altosdroid: Add note to report TeleBT battery level
16008     
16009     Signed-off-by: Keith Packard <keithp@keithp.com>
16010
16011 commit f0e126251360f050b7121f167771c057bda8747e
16012 Merge: d95a2c5 4fe47ad
16013 Author: Keith Packard <keithp@keithp.com>
16014 Date:   Sat Aug 17 17:33:31 2013 +0200
16015
16016     Merge branch 'master' into telegps-v0.3
16017
16018 commit 4fe47adc7aca54951a50b1c1ae95cb02e46f8d3d
16019 Author: Keith Packard <keithp@keithp.com>
16020 Date:   Sat Aug 17 17:30:52 2013 +0200
16021
16022     altosui: AltosDbm class was missing somehow
16023     
16024     This doesn't appear to have been added?
16025     
16026     Signed-off-by: Keith Packard <keithp@keithp.com>
16027
16028 commit 4ff54bb96f6c00c0c2c7dd32f81403bac331621a
16029 Merge: fa0859a 01f8df0
16030 Author: Keith Packard <keithp@keithp.com>
16031 Date:   Sat Aug 17 16:03:26 2013 +0200
16032
16033     Merge remote-tracking branch 'origin/master'
16034
16035 commit fa0859a51576efe231effcb5995f325f9e7e0fcb
16036 Author: Keith Packard <keithp@keithp.com>
16037 Date:   Sat Aug 17 16:01:44 2013 +0200
16038
16039     altos: Make FAT test program link explicitly against libcrypto
16040     
16041     For some reason, the MD5_Final symbol isn't resolved when linking only
16042     against libssl.
16043     
16044     Signed-off-by: Keith Packard <keithp@keithp.com>
16045
16046 commit 01f8df088759ee7e6bc3900a013e0ea4fafaf984
16047 Merge: e2ebe60 15063cb
16048 Author: Bdale Garbee <bdale@gag.com>
16049 Date:   Tue Jul 30 00:15:06 2013 -0600
16050
16051     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
16052
16053 commit e2ebe60adf061479a1259a5c68b9cd5f5bacf644
16054 Author: Bdale Garbee <bdale@gag.com>
16055 Date:   Tue Jul 30 00:14:41 2013 -0600
16056
16057     add a note about callsign matching and case sensitivity to the manual
16058
16059 commit d95a2c5d1ddce913dcb1d1ab5dc59f6a588ab599
16060 Author: Keith Packard <keithp@keithp.com>
16061 Date:   Mon Jun 24 14:29:43 2013 -0700
16062
16063     altos: Remove ao_radio_gpio_bits from normal build
16064     
16065     Only needed for the CC115L_TRACE code, and it only builds on STM
16066     
16067     Signed-off-by: Keith Packard <keithp@keithp.com>
16068
16069 commit c542a2ed0f222bd0ec84e4a9651585d441dd7ccf
16070 Author: Keith Packard <keithp@keithp.com>
16071 Date:   Mon Jun 24 14:29:01 2013 -0700
16072
16073     altos/lpc: Rename serial port to 'serial0'
16074     
16075     This lets existing serial port users find the right function.
16076     
16077     Signed-off-by: Keith Packard <keithp@keithp.com>
16078
16079 commit 324ceea43c115f4bed3a5276e57559c6c76b07c1
16080 Author: Keith Packard <keithp@keithp.com>
16081 Date:   Tue Jul 2 17:54:38 2013 -0700
16082
16083     micropeak: Add Download button to menu bar
16084     
16085     It's the most common activity, after all
16086     
16087     Signed-off-by: Keith Packard <keithp@keithp.com>
16088
16089 commit 156e60954fae15bc090984f79cd5594f910ca913
16090 Author: Keith Packard <keithp@keithp.com>
16091 Date:   Tue Jul 2 17:53:51 2013 -0700
16092
16093     altosdroid: Just use GPS location provider to build on 4.2
16094     
16095     Attempts to use the network provider cause the app to crash
16096     
16097     Signed-off-by: Keith Packard <keithp@keithp.com>
16098
16099 commit e148582217d6e02ac90a68e2bb2532947378d36f
16100 Author: Keith Packard <keithp@keithp.com>
16101 Date:   Mon Jun 24 14:28:06 2013 -0700
16102
16103     altos: Support mega-style logging without ADC
16104     
16105     Used for TeleGPS, just exposes the necessary log writing function
16106     without also including the ADC writing code.
16107     
16108     Signed-off-by: Keith Packard <keithp@keithp.com>
16109
16110 commit 261ec8fc7043e9314469e919aa96acc461f7e5f2
16111 Author: Keith Packard <keithp@keithp.com>
16112 Date:   Mon Jun 24 14:26:23 2013 -0700
16113
16114     altosui: Add EasyMini USB ids
16115     
16116     Signed-off-by: Keith Packard <keithp@keithp.com>
16117
16118 commit 0dd148e388944d8d265da51d62806c4a00b2c13d
16119 Author: Keith Packard <keithp@keithp.com>
16120 Date:   Mon Jun 24 14:23:53 2013 -0700
16121
16122     altos/lpc: Add boot loader
16123     
16124     Support the USB boot loader, add USB pull-up support.
16125     
16126     Signed-off-by: Keith Packard <keithp@keithp.com>
16127
16128 commit 2568b36ae9d38ae1607ec08b84b06e0fe84bd3ba
16129 Author: Keith Packard <keithp@keithp.com>
16130 Date:   Sat Jun 22 00:53:38 2013 -0700
16131
16132     altos/telefire-v0.1: Use same LED selection as the v0.2 setup
16133     
16134     Signed-off-by: Keith Packard <keithp@keithp.com>
16135
16136 commit 58eda6f873f5d6e8e219f769bdf67ce4dbc96fd7
16137 Author: Keith Packard <keithp@keithp.com>
16138 Date:   Fri Jun 21 19:40:59 2013 -0700
16139
16140     altos/lpc: Don't disable all interrupts when disabling one interrupt
16141     
16142     The nvic iser and icer registers read value indicates all enabled
16143     interrupts, icer writes disable the set interrupts. Re-writing icer
16144     with the current value ends up disabling all interrupts, not exactly
16145     what we wanted.
16146     
16147     Signed-off-by: Keith Packard <keithp@keithp.com>
16148
16149 commit 9081d881bc48bf7fdce617d300ac02c1a5962239
16150 Author: Keith Packard <keithp@keithp.com>
16151 Date:   Fri Jun 21 19:40:03 2013 -0700
16152
16153     altos/lpc: Remove ao_usb_task structure
16154     
16155     It's not used
16156     
16157     Signed-off-by: Keith Packard <keithp@keithp.com>
16158
16159 commit 23f11b188fc6aacd29e7f01a7d8a40853b7655df
16160 Author: Keith Packard <keithp@keithp.com>
16161 Date:   Fri Jun 21 19:39:27 2013 -0700
16162
16163     altos/lpc: Enable brown-out-detector
16164     
16165     Make sure the processor does something sensible when the power disappears.
16166     
16167     Signed-off-by: Keith Packard <keithp@keithp.com>
16168
16169 commit e9e713bc8ab2080d5c1c38570b112f13c886bd11
16170 Author: Keith Packard <keithp@keithp.com>
16171 Date:   Wed Jun 19 22:45:54 2013 -0700
16172
16173     altos/telefire: Radio status (no data, weak data, good data) on LEDs
16174     
16175     Instead of blinking RX/TX, report the radio status on the telefire
16176     nodes, just like telelco does. This makes the LEDs on telefire
16177     *exactly the same* as the LEDs on telelco, which seems like a good idea.
16178     
16179     Signed-off-by: Keith Packard <keithp@keithp.com>
16180
16181 commit d90c2fa650de4cdb008d5e2559463c08da8db934
16182 Author: Keith Packard <keithp@keithp.com>
16183 Date:   Wed Jun 19 22:44:16 2013 -0700
16184
16185     altos: PCA9922 LED driver needs Enable driven low to latch values
16186     
16187     Driving Enable high means anything going past on the clock and data
16188     pair is reflected on the LEDs, which isn't terribly useful
16189     
16190     Signed-off-by: Keith Packard <keithp@keithp.com>
16191
16192 commit 572faa19b9a496866e3b589d5eb9f37a680206ab
16193 Author: Keith Packard <keithp@keithp.com>
16194 Date:   Wed Jun 19 22:42:58 2013 -0700
16195
16196     altos/cc1111: Fetch RSSI for TeleFire from correct byte
16197     
16198     Reading the status byte doesn't provide very useful RSSI info
16199     
16200     Signed-off-by: Keith Packard <keithp@keithp.com>
16201
16202 commit 025beb0fea011d0e3dab59b5d16e7ffae97c613c
16203 Author: Keith Packard <keithp@keithp.com>
16204 Date:   Mon Jun 17 14:52:32 2013 -0700
16205
16206     altos/lpc: Get rid of ADC filter
16207     
16208     Now that the source of the Vcc noise has been identified, remove the
16209     unnecessary ADC filtering.
16210     
16211     Signed-off-by: Keith Packard <keithp@keithp.com>
16212
16213 commit 10f3d0084ff1c0b3dbf28c5d44727b514caeee20
16214 Author: Keith Packard <keithp@keithp.com>
16215 Date:   Mon Jun 17 14:00:43 2013 -0700
16216
16217     altosui: Add raw pressure to the AltosUI graph
16218     
16219     A nice addition, and useful when diagnosing baro sensor issues
16220     
16221     Signed-off-by: Keith Packard <keithp@keithp.com>
16222
16223 commit 298e54856b5f8809b43f24407caa4a6be60822f3
16224 Author: Keith Packard <keithp@keithp.com>
16225 Date:   Mon Jun 17 14:00:11 2013 -0700
16226
16227     altos/lpc: Get the IRC turned off after boot time
16228     
16229     This involved carefully moving the USB away from the IRC before
16230     turning it off.
16231     
16232     Signed-off-by: Keith Packard <keithp@keithp.com>
16233
16234 commit b3ad488477def157e277e239e81f164b49725925
16235 Author: Keith Packard <keithp@keithp.com>
16236 Date:   Mon Jun 17 13:58:41 2013 -0700
16237
16238     altos: Disable USB on all flight computers when in flight mode
16239     
16240     There was a check to only disable USB on boards with radios, but for
16241     EasyMini, we want to disable USB too for flight mode.
16242     
16243     Signed-off-by: Keith Packard <keithp@keithp.com>
16244
16245 commit 2e2f3f2556e714833d8b7d0f65877b07b3dc2cb5
16246 Author: Keith Packard <keithp@keithp.com>
16247 Date:   Sun Jun 16 22:32:16 2013 -0700
16248
16249     altos: Declare m25 write-in-progress as 'ao_port_t'
16250     
16251     This lets us use port bits greater than 7 for M25 chip selects
16252     
16253     Signed-off-by: Keith Packard <keithp@keithp.com>
16254
16255 commit dcf769198863c1b0f1b05f41d0c052a3dbfef247
16256 Author: Keith Packard <keithp@keithp.com>
16257 Date:   Sun Jun 16 22:31:58 2013 -0700
16258
16259     altos/lpc: Remove spurious semicolon
16260     
16261     Signed-off-by: Keith Packard <keithp@keithp.com>
16262
16263 commit d040adeef9df4cda31dce603db81dc7ce19ec0d1
16264 Author: Keith Packard <keithp@keithp.com>
16265 Date:   Sun Jun 16 22:31:31 2013 -0700
16266
16267     altos/lpc: Don't disable all of the clocks just yet, USB doesn't work
16268     
16269     Signed-off-by: Keith Packard <keithp@keithp.com>
16270
16271 commit 1676c7dbc3dcce2962be9ef9a58d37c7b48e3c0f
16272 Author: Keith Packard <keithp@keithp.com>
16273 Date:   Sun Jun 16 15:07:54 2013 -0700
16274
16275     altos/lpc: Turn off more clocks, disable USART for easymini
16276     
16277     Try to reduce noise on the power supply.
16278     
16279     Signed-off-by: Keith Packard <keithp@keithp.com>
16280
16281 commit be9ee9ed2d041c4ab4e77ee2010fe3c7a1ca6597
16282 Author: Keith Packard <keithp@keithp.com>
16283 Date:   Sat Jun 15 01:20:49 2013 -0700
16284
16285     altos/lpc: Filter ADC inputs
16286     
16287     They're amazingly noisy on EasyMini, so just filter them as the only
16288     thing we use them for is battery and pyro numbers.
16289     
16290     Signed-off-by: Keith Packard <keithp@keithp.com>
16291
16292 commit 7361371190bf3805b6d0414e61f697aca7c7cff1
16293 Author: Keith Packard <keithp@keithp.com>
16294 Date:   Fri Jun 14 04:38:11 2013 -0700
16295
16296     altos/lpc: Make ADC inputs work
16297     
16298     They're still very unstable (bouncing around a lot), but at least they
16299     seem to report useful stuff now.
16300     
16301     Signed-off-by: Keith Packard <keithp@keithp.com>
16302
16303 commit 6827d0a7c59d606ea05387465f1ad4d914babd49
16304 Author: Keith Packard <keithp@keithp.com>
16305 Date:   Tue Jun 11 16:31:20 2013 -0700
16306
16307     altosui: Use preferred units for main deployment height configuration
16308     
16309     Show and accept values in the preferred units; create a separate list
16310     of preferred values for each set of units
16311     
16312     Signed-off-by: Keith Packard <keithp@keithp.com>
16313
16314 commit 15063cbb8f76bffea71575d295ca87b7ceca36d8
16315 Author: Keith Packard <keithp@keithp.com>
16316 Date:   Sun Jun 9 23:18:09 2013 -0700
16317
16318     altos/telelco: Add 30ms delay in search after finding a box
16319     
16320     This gives the remote boxes time to get back to listening for messages
16321     after receiving the packet from the found box.
16322     
16323     Signed-off-by: Keith Packard <keithp@keithp.com>
16324
16325 commit 988924b51980ad43e39bc4785a625ff25eb16449
16326 Author: Keith Packard <keithp@keithp.com>
16327 Date:   Sun Jun 9 22:09:13 2013 -0700
16328
16329     altos: Add fast-timer API. Use for quadrature and button drivers
16330     
16331     This splits the fast-timer portion out of the debounce helper code and
16332     shares that with the quadrature driver which now uses it directly.
16333     
16334     Signed-off-by: Keith Packard <keithp@keithp.com>
16335
16336 commit 72b6c699d355fcd41addb9919d846e63105b9db7
16337 Author: Keith Packard <keithp@keithp.com>
16338 Date:   Mon May 13 22:34:19 2013 -0700
16339
16340     altos: Add debounce helper. Use in button and quadrature drivers for TeleLCO
16341     
16342     Signed-off-by: Keith Packard <keithp@keithp.com>
16343
16344 commit 47b7e1d819e48aaebf6ffda49effbee041ce8750
16345 Author: Keith Packard <keithp@keithp.com>
16346 Date:   Sun Jun 9 12:13:06 2013 -0700
16347
16348     altos/telefire: Leave siren on all the time. Add siren/strobe debugging.
16349     
16350     The 50% duty cycle wasn't actually loud enough outside.
16351     
16352     Signed-off-by: Keith Packard <keithp@keithp.com>
16353
16354 commit 187f661c2512e4260d0ca64134de8fad199f5944
16355 Author: Keith Packard <keithp@keithp.com>
16356 Date:   Sun Jun 9 10:00:54 2013 -0700
16357
16358     altos: Add telefire v0.2 support
16359     
16360     Signed-off-by: Keith Packard <keithp@keithp.com>
16361
16362 commit 8ba2035c78293bc312804722249df76dd4692d71
16363 Author: Keith Packard <keithp@keithp.com>
16364 Date:   Sun Jun 9 09:53:07 2013 -0700
16365
16366     altos: Add driver for 74hc165 shift register
16367     
16368     Just reads one byte from the shift register using the SPI driver and returns it
16369     
16370     Signed-off-by: Keith Packard <keithp@keithp.com>
16371
16372 commit 3e8b72a9dc5b6c3a0f6132dc2dec04f8c08a1deb
16373 Author: Keith Packard <keithp@keithp.com>
16374 Date:   Sun May 26 22:38:56 2013 -0600
16375
16376     altos: Add pyro operations to regular ignite commands
16377     
16378     Instead of having separate commands, just mix the two sets together.
16379     
16380     Signed-off-by: Keith Packard <keithp@keithp.com>
16381
16382 commit 4bc1f3390b9ebbe07af4bc0f0a1c0915193ddf42
16383 Author: Keith Packard <keithp@keithp.com>
16384 Date:   Sun May 26 19:41:22 2013 -0600
16385
16386     Set version to 1.2.9.1
16387     
16388     Mark bits to be used on Monday of NSL 2013
16389     
16390     Signed-off-by: Keith Packard <keithp@keithp.com>
16391
16392 commit 6f131e740477d29b6623fa336da79e53f765a55b
16393 Author: Keith Packard <keithp@keithp.com>
16394 Date:   Sun May 26 19:48:03 2013 -0600
16395
16396     altos: Make manual pyro firing command work again
16397     
16398     Signed-off-by: Keith Packard <keithp@keithp.com>
16399
16400 commit 5ca472333a3587f0e47d54f5edc287494262ef98
16401 Author: Keith Packard <keithp@keithp.com>
16402 Date:   Sun May 26 19:47:02 2013 -0600
16403
16404     altos: write pyro fired to correct log field
16405     
16406     Signed-off-by: Keith Packard <keithp@keithp.com>
16407
16408 commit 956f4dff1cc521059434743624b1271fb92b96ae
16409 Author: Keith Packard <keithp@keithp.com>
16410 Date:   Sun May 26 19:39:13 2013 -0600
16411
16412     altos: Light pyro charges simultaneously if so configured
16413     
16414     Don't try to be nice to the battery, just let the pyro circuit deal
16415     with it and try to get all of the specified circuits going at the same
16416     time if they're configured to do so.
16417     
16418     Signed-off-by: Keith Packard <keithp@keithp.com>
16419
16420 commit 62547a042d042fadec652c5081f96816a8e66970
16421 Author: Keith Packard <keithp@keithp.com>
16422 Date:   Sun May 26 19:03:12 2013 -0600
16423
16424     altos,altosui: Add pyro state logging for TeleMega
16425     
16426     Only in the log file (no obvious space in the telem packets), but at
16427     least we should be able to check for pyro failures.
16428     
16429     Signed-off-by: Keith Packard <keithp@keithp.com>
16430
16431 commit 277577fecc71e3c52b823938f396cf42be403ebe
16432 Author: Keith Packard <keithp@keithp.com>
16433 Date:   Sun May 26 19:01:58 2013 -0600
16434
16435     altos: Add pyro code testing to ao_flight_test for TeleMega
16436     
16437     This parses the pyro settings and signals when the pyro channels are
16438     fired in the output.
16439     
16440     Signed-off-by: Keith Packard <keithp@keithp.com>
16441
16442 commit b1408c13f176f3f021e9face48c4cd33528ee96c
16443 Author: Keith Packard <keithp@keithp.com>
16444 Date:   Sun May 26 18:58:41 2013 -0600
16445
16446     ao-tools/ao-mega: Dump 'pyro' state from mega log
16447     
16448     Signed-off-by: Keith Packard <keithp@keithp.com>
16449
16450 commit 8083aa731c99d09bdd4a8c216bb11f846734d7df
16451 Author: Keith Packard <keithp@keithp.com>
16452 Date:   Sun May 26 18:57:58 2013 -0600
16453
16454     ao-tools: Add ao-mega tool to parse TeleMega eeprom files
16455     
16456     Signed-off-by: Keith Packard <keithp@keithp.com>
16457
16458 commit 21689ef744ddf43965ccad89dc1133a905011d7f
16459 Author: Keith Packard <keithp@keithp.com>
16460 Date:   Sun May 26 18:54:02 2013 -0600
16461
16462     altosui: Missing 'break' after selecting 'mega' format detection
16463     
16464     Caused 'mega' logs to be dumped in 'mini' format which didn't work well.
16465     
16466     Signed-off-by: Keith Packard <keithp@keithp.com>
16467
16468 commit 17e0ccccc8619f96d2cf56bd98d63a7e59f5301d
16469 Author: Keith Packard <keithp@keithp.com>
16470 Date:   Sun May 26 18:50:10 2013 -0600
16471
16472     altosui: Stop downloading mega eeprom on empty block
16473     
16474     Signed-off-by: Keith Packard <keithp@keithp.com>
16475
16476 commit 013cba5ed1fde72240a68ec648bd14977f5e48a4
16477 Author: Keith Packard <keithp@keithp.com>
16478 Date:   Mon May 20 21:41:01 2013 -0700
16479
16480     doc: Update description of graph window to note new tabs (config and map)
16481     
16482     Signed-off-by: Keith Packard <keithp@keithp.com>
16483
16484 commit e711c708b0d2c8d8c2d72e34a795ad8e9b5ab5de
16485 Author: Keith Packard <keithp@keithp.com>
16486 Date:   Mon May 20 21:37:20 2013 -0700
16487
16488     Create release notes for 1.2.1
16489     
16490     Move most of the 1.2 content to the 1.2.1 block
16491     
16492     Signed-off-by: Keith Packard <keithp@keithp.com>
16493
16494 commit 2344ba81fa51215471099e56518112478bdf2e73
16495 Author: Keith Packard <keithp@keithp.com>
16496 Date:   Tue May 21 11:31:05 2013 -0700
16497
16498     Separate out cortex-m0 compiler tests in configure
16499     
16500     The summon arm toolchain doesn't work for cortex-m0 parts, but the
16501     linaro toolchain does. Look in /usr/bin for the -m0 compiler but
16502     continue to use /opt/cortex/bin for the -m3 compiler
16503     
16504     Signed-off-by: Keith Packard <keithp@keithp.com>
16505
16506 commit 85eb75c3251d8e141d7269fc7ffa6197174ea8c3
16507 Author: Keith Packard <keithp@keithp.com>
16508 Date:   Tue May 21 11:30:44 2013 -0700
16509
16510     altos: Can't use inline functions because SDCC doesn't do that
16511     
16512     Sigh.
16513     
16514     Signed-off-by: Keith Packard <keithp@keithp.com>
16515
16516 commit fd5567882b732f8947b44b217552077c82a3d28e
16517 Merge: fd55c1f 57b4d82
16518 Author: Keith Packard <keithp@keithp.com>
16519 Date:   Tue May 21 11:16:54 2013 -0700
16520
16521     Merge branch 'lpc'
16522
16523 commit fd55c1fe53adf5c50dcd3ce8296f80871cec73e9
16524 Author: Keith Packard <keithp@keithp.com>
16525 Date:   Tue May 21 11:16:33 2013 -0700
16526
16527     Bump master version to 1.2.9 to avoid confusion with 1.2 releases
16528     
16529     Signed-off-by: Keith Packard <keithp@keithp.com>
16530
16531 commit 1bffe8caf0294e9cfef2dab1c6b5a8d1d87ac3a2
16532 Author: Keith Packard <keithp@keithp.com>
16533 Date:   Tue May 21 11:08:15 2013 -0700
16534
16535     altos: Set the path for the STM32L compiler explicitly
16536     
16537     This makes sure we use the known toolchain for STM32L builds
16538     
16539     Signed-off-by: Keith Packard <keithp@keithp.com>
16540
16541 commit 7282fab337dc48d32606276e5f51c057a3bff8cb
16542 Author: Keith Packard <keithp@keithp.com>
16543 Date:   Tue May 21 11:04:25 2013 -0700
16544
16545     altosui: Add TeleBT firmware to release
16546     
16547     Signed-off-by: Keith Packard <keithp@keithp.com>
16548
16549 commit 57b4d82dee10b142b820aa306028a288a85214f6
16550 Author: Keith Packard <keithp@keithp.com>
16551 Date:   Sun May 19 23:07:54 2013 -0700
16552
16553     Add Mini logging format. Use in EasyMini
16554     
16555     This is a 16-byte record that includes all of the sensor data in each
16556     sensor record, along with records for flight state changes.
16557     
16558     Signed-off-by: Keith Packard <keithp@keithp.com>
16559
16560 commit 27e9b93f3d35890a49575b2ead1983ce3c2fc213
16561 Merge: a4df257 d9cbef8
16562 Author: Keith Packard <keithp@keithp.com>
16563 Date:   Sun May 19 20:40:42 2013 -0700
16564
16565     Merge branch 'master' into lpc
16566
16567 commit d9cbef8cd364aae54855cc5bc64fb8c2b22057b0
16568 Author: Keith Packard <keithp@keithp.com>
16569 Date:   Sun May 19 20:35:42 2013 -0700
16570
16571     altos/telemega: The last two igniters are apogee and main
16572     
16573     Not the first two. TeleMega v0.3 has these marked on the silk
16574     
16575     Signed-off-by: Keith Packard <keithp@keithp.com>
16576
16577 commit a4df2575b4e782e83cc4e9b1d2e5cd2397a97dd8
16578 Author: Keith Packard <keithp@keithp.com>
16579 Date:   Sun May 19 20:33:35 2013 -0700
16580
16581     altos/easymini: Initialize beep and ADC. Declare use of igniter bits.
16582     
16583     This makes easymini actually work!
16584     
16585     Signed-off-by: Keith Packard <keithp@keithp.com>
16586
16587 commit a87a8e8067d7b2d0ff3a3274af9f1e919b5b7793
16588 Author: Keith Packard <keithp@keithp.com>
16589 Date:   Sun May 19 20:32:34 2013 -0700
16590
16591     altos/easymini: Use different pins for igniter outputs
16592     
16593     Was using the I2C outputs which are open drain, which makes it
16594     impossible to force them high as needed to driver our igniters.
16595     
16596     Signed-off-by: Keith Packard <keithp@keithp.com>
16597
16598 commit 16eb0b04df3d1db65bd40717133abe94db0f2a15
16599 Author: Keith Packard <keithp@keithp.com>
16600 Date:   Sun May 19 20:31:48 2013 -0700
16601
16602     altos/easymini: MS5607 chip select bits were defined wrong
16603     
16604     Signed-off-by: Keith Packard <keithp@keithp.com>
16605
16606 commit 455802b7e853956180799c058e9561876d98d831
16607 Author: Keith Packard <keithp@keithp.com>
16608 Date:   Sun May 19 20:30:49 2013 -0700
16609
16610     altos/easymini: Easymini doesn't have USB connect or VBUS wiring
16611     
16612     Disable these in ao_pins.h
16613     
16614     Signed-off-by: Keith Packard <keithp@keithp.com>
16615
16616 commit 35b120c4154df0351c3a802f86dda224a7643068
16617 Author: Keith Packard <keithp@keithp.com>
16618 Date:   Sun May 19 20:27:53 2013 -0700
16619
16620     altos/lpc: Force idle mode if USB gets an address during boot time
16621     
16622     This lets EasyMini be booted to idle mode by simply plugging it into USB.
16623     
16624     Signed-off-by: Keith Packard <keithp@keithp.com>
16625
16626 commit c1f01cd4406063191a51cb68fc4634eabfc60fc2
16627 Author: Keith Packard <keithp@keithp.com>
16628 Date:   Sun May 19 20:27:05 2013 -0700
16629
16630     altos/lpc: Reset SPI device at startup time
16631     
16632     Wasn't doing the reset sequence correctly (write 0, then write 1).
16633     
16634     Signed-off-by: Keith Packard <keithp@keithp.com>
16635
16636 commit e0ad8b5b5e1b4c7a9ffba9d25f3c32ce708c3ec5
16637 Author: Keith Packard <keithp@keithp.com>
16638 Date:   Sun May 19 20:26:07 2013 -0700
16639
16640     altos/lpc: Configuring wrong pin for SPI1 MOSI
16641     
16642     Was setting configuration for PIO1_21 instead of PIO0_21.
16643     
16644     Signed-off-by: Keith Packard <keithp@keithp.com>
16645
16646 commit b9bb088a36fd351809f4c378356327ffa663c974
16647 Author: Keith Packard <keithp@keithp.com>
16648 Date:   Sun May 19 20:25:13 2013 -0700
16649
16650     altos/lpc: Allow for alternate SPI SCLK0 pin usage
16651     
16652     SPI SCLK0 can appear on three different pins; let the application
16653     configure which one it wants.
16654     
16655     Signed-off-by: Keith Packard <keithp@keithp.com>
16656
16657 commit 397109139fb9ff27ec7cfb0cafa65d1dbea053bd
16658 Author: Keith Packard <keithp@keithp.com>
16659 Date:   Sun May 19 20:24:11 2013 -0700
16660
16661     altos/lpc: Leave SPI enabled all the time
16662     
16663     Might be able to turn it off with some care; more experimentation required.
16664     
16665     Signed-off-by: Keith Packard <keithp@keithp.com>
16666
16667 commit e383d7a28d01729c50f933ceda77ea767d1b8087
16668 Author: Keith Packard <keithp@keithp.com>
16669 Date:   Sun May 19 20:22:20 2013 -0700
16670
16671     altos/lpc: Create TX/RX busy macros for SPI driver
16672     
16673     Check for both fifo status *and* device busy to make sure the device
16674     is idle before we touch any registers.
16675     
16676     Signed-off-by: Keith Packard <keithp@keithp.com>
16677
16678 commit 07d261c08214837b5d5cac4d2be43e51a0c47868
16679 Author: Keith Packard <keithp@keithp.com>
16680 Date:   Sun May 19 20:19:15 2013 -0700
16681
16682     altos/lpc: Fix beeper driver
16683     
16684     Set prescale limit, not current prescale value (pr instead of pc).
16685     Flip output 1 on PWM match (set emc toggle for channel 1).
16686     Don't hold counter in reset (turn off CRST bit).
16687     
16688     Signed-off-by: Keith Packard <keithp@keithp.com>
16689
16690 commit 3fe11b277dd7268eb445d120c8f9537f95148891
16691 Author: Keith Packard <keithp@keithp.com>
16692 Date:   Sun May 19 20:18:44 2013 -0700
16693
16694     altos/lpc: Missing parens around ao_gpio_set macro
16695     
16696     Signed-off-by: Keith Packard <keithp@keithp.com>
16697
16698 commit a78012782c779de3433b91e6b854b2fdbd7230fd
16699 Author: Keith Packard <keithp@keithp.com>
16700 Date:   Sun May 19 20:17:48 2013 -0700
16701
16702     altos/lpc: SPI runs off main clock (48MHz), not sysclk (24MHz)
16703     
16704     Update SPI speed definitions to match
16705     
16706     Signed-off-by: Keith Packard <keithp@keithp.com>
16707
16708 commit d51c9fda3478f205e4bcdf1b7bf21eb1e0a516bc
16709 Author: Keith Packard <keithp@keithp.com>
16710 Date:   Sun May 19 20:07:52 2013 -0700
16711
16712     altos/lpc: Pull ADC data from the correct registers
16713     
16714     Was just stepping through register space arbitrarily, which would have
16715     worked for EasyMini, but might have failed later if the ADC pin usage
16716     wasn't consecutive.
16717     
16718     Signed-off-by: Keith Packard <keithp@keithp.com>
16719
16720 commit 6343bd774f542a4f915cf1fca2053d03e93bf2c3
16721 Author: Keith Packard <keithp@keithp.com>
16722 Date:   Sun May 19 20:06:03 2013 -0700
16723
16724     altos/lpc: Don't use loader to place USB endpoint data in USB ram
16725     
16726     Instead, just assign a fixed address in registers.ld. This avoids a
16727     confusing section in the elf file.
16728     
16729     Signed-off-by: Keith Packard <keithp@keithp.com>
16730
16731 commit 35a05041d3ca3e69a146bd3bf8038c0f1cbc1b42
16732 Author: Keith Packard <keithp@keithp.com>
16733 Date:   Sun May 19 20:04:29 2013 -0700
16734
16735     altos: Add EXTI_PIN_NOCONFIGURE to exti interface, use for MS5607
16736     
16737     This asks the EXTI code to not mess with the pin configuration so that
16738     the MS5607 driver can get interrupts on the MISO pin while still using
16739     it for SPI.
16740     
16741     Signed-off-by: Keith Packard <keithp@keithp.com>
16742
16743 commit 098fd43a740ee2a782f82b6b71965b60cdba2d62
16744 Author: Keith Packard <keithp@keithp.com>
16745 Date:   Sun May 19 20:00:24 2013 -0700
16746
16747     altos/lpc: Make EXTI code work.
16748     
16749     Clear rise/fall bits in ISR to avoid re-entering.
16750     Block interrupts around enable/disable bits.
16751     Create shared _ao_exti_set_enable function to control mask changes.
16752     
16753     Signed-off-by: Keith Packard <keithp@keithp.com>
16754
16755 commit f794e6c95697b034be315632fddb3a5475c43b5b
16756 Author: Keith Packard <keithp@keithp.com>
16757 Date:   Sun May 19 19:57:23 2013 -0700
16758
16759     altos: Use ao_spi_get/put_bit in MS5607 driver
16760     
16761     Replace open-coded ao_spi_get/put and ao_gpio_set sequences
16762     
16763     Signed-off-by: Keith Packard <keithp@keithp.com>
16764
16765 commit b7ab41e4dc92dcd382f4c05459088d8df8b70075
16766 Author: Keith Packard <keithp@keithp.com>
16767 Date:   Sun May 19 19:51:32 2013 -0700
16768
16769     altos/attiny: Fix ao_spi_get_bit/ao_spi_put_bit macros
16770     
16771     These were never written, so just use ao_spi_get/put_mask.
16772     
16773     A precursor to changing how the MS5607 drives the SPI bus
16774     
16775     Signed-off-by: Keith Packard <keithp@keithp.com>
16776
16777 commit 49f9cdda5f1812687b82915acc78a9d9136255bf
16778 Author: Keith Packard <keithp@keithp.com>
16779 Date:   Sat May 18 03:54:30 2013 -0700
16780
16781     altos: ignore built files in easymini-v0.1
16782     
16783     Signed-off-by: Keith Packard <keithp@keithp.com>
16784
16785 commit c57e1630002c921739ff22395497d93027d381b6
16786 Author: Keith Packard <keithp@keithp.com>
16787 Date:   Sat May 18 03:53:32 2013 -0700
16788
16789     altos: Build easymini-v0.1
16790     
16791     Signed-off-by: Keith Packard <keithp@keithp.com>
16792
16793 commit 278300b2bc98b92cc71ec016ab0fc93eb3696435
16794 Author: Keith Packard <keithp@keithp.com>
16795 Date:   Sat May 18 03:52:59 2013 -0700
16796
16797     altos: Initialize SPI for easymini
16798     
16799     Doesn't work very well without this
16800     
16801     Signed-off-by: Keith Packard <keithp@keithp.com>
16802
16803 commit cbe5eee76faf386eefe69539935ab318944ac452
16804 Author: Keith Packard <keithp@keithp.com>
16805 Date:   Sat May 18 03:52:14 2013 -0700
16806
16807     altos/lpc: Stick USB control structure in USB memory
16808     
16809     No reason to have that in regular ram, and it means we've got space
16810     for large enough stacks now
16811     
16812     Signed-off-by: Keith Packard <keithp@keithp.com>
16813
16814 commit 3587bfd248e115bb1abb28f71b263575b4e8e367
16815 Author: Keith Packard <keithp@keithp.com>
16816 Date:   Sat May 18 03:22:10 2013 -0700
16817
16818     altos: Add easymini-v0.1 product
16819     
16820     Signed-off-by: Keith Packard <keithp@keithp.com>
16821
16822 commit c4991db4809ae547fdb245e3cb42517fa7524de5
16823 Author: Keith Packard <keithp@keithp.com>
16824 Date:   Sat May 18 03:21:43 2013 -0700
16825
16826     altos/lpc: Use separate interrupt stack
16827     
16828     Signed-off-by: Keith Packard <keithp@keithp.com>
16829
16830 commit 5311720525ac73e9d42067b68adf25fc2e054af5
16831 Author: Keith Packard <keithp@keithp.com>
16832 Date:   Sat May 18 03:21:20 2013 -0700
16833
16834     altos/lpc: Try a smaller stack.
16835     
16836     Signed-off-by: Keith Packard <keithp@keithp.com>
16837
16838 commit f5218e2544dcb659aec6c3adee50d61cab1bba3a
16839 Author: Keith Packard <keithp@keithp.com>
16840 Date:   Sat May 18 03:19:41 2013 -0700
16841
16842     altos/lpc: Add pin interrupt driver
16843     
16844     Signed-off-by: Keith Packard <keithp@keithp.com>
16845
16846 commit c0d0147251bfcebd753196b74c22c00c3116fd22
16847 Author: Keith Packard <keithp@keithp.com>
16848 Date:   Sat May 18 03:18:55 2013 -0700
16849
16850     altos/lpc: Add beep driver
16851     
16852     Hardwired to our current beeper pin
16853     
16854     Signed-off-by: Keith Packard <keithp@keithp.com>
16855
16856 commit 166977c65bddb50d600a3c1e1f278c425b673697
16857 Author: Keith Packard <keithp@keithp.com>
16858 Date:   Sat May 18 03:18:19 2013 -0700
16859
16860     altos/lpc: Add ADC driver
16861     
16862     Uses burst mode to get the whole set of values in one interrupt
16863     
16864     Signed-off-by: Keith Packard <keithp@keithp.com>
16865
16866 commit ed25a46571d988ccf37ae915dff97b5f00bcf9cf
16867 Author: Keith Packard <keithp@keithp.com>
16868 Date:   Sat May 18 03:16:41 2013 -0700
16869
16870     altos/lpc: add gpio int, spi, adc and ct32b defines to lpc.h
16871     
16872     Lots more devices
16873     
16874     Signed-off-by: Keith Packard <keithp@keithp.com>
16875
16876 commit 2b0b7bf1462341718e582223a880f2dfcd79e2ad
16877 Author: Keith Packard <keithp@keithp.com>
16878 Date:   Sat May 18 03:15:58 2013 -0700
16879
16880     altos/lpc: Clean up broken IOCONF defines
16881     
16882     Missing comment closes
16883     
16884     Signed-off-by: Keith Packard <keithp@keithp.com>
16885
16886 commit 08887678f900adae81dcb1a7f5353d98d127aafd
16887 Author: Keith Packard <keithp@keithp.com>
16888 Date:   Sat May 18 03:14:57 2013 -0700
16889
16890     altos/lpc: Fix ao_enable_input, add ao_enable_analog
16891     
16892     Signed-off-by: Keith Packard <keithp@keithp.com>
16893
16894 commit 15ca452b60271e3a0f7327216df04eef5b985240
16895 Author: Keith Packard <keithp@keithp.com>
16896 Date:   Sat May 18 03:14:16 2013 -0700
16897
16898     altos: LPC interrupt priorities are just 0-3
16899     
16900     Signed-off-by: Keith Packard <keithp@keithp.com>
16901
16902 commit 935a7ff38010ec4ad19f315f8a2a1557c01ae554
16903 Author: Keith Packard <keithp@keithp.com>
16904 Date:   Sat May 18 03:13:17 2013 -0700
16905
16906     altos: Add LPC spi driver
16907     
16908     Signed-off-by: Keith Packard <keithp@keithp.com>
16909
16910 commit d9b42470e8889b44bb08858a610285410a200ab9
16911 Author: Keith Packard <keithp@keithp.com>
16912 Date:   Sat May 18 03:02:38 2013 -0700
16913
16914     altos: Use ao_port_t in m25 driver
16915     
16916     This uses ao_port_t for all of the chip select masks
16917     
16918     Signed-off-by: Keith Packard <keithp@keithp.com>
16919
16920 commit 28890aa5893898cd0bb0ac033e491eb307a84ca5
16921 Author: Keith Packard <keithp@keithp.com>
16922 Date:   Sat May 18 03:02:01 2013 -0700
16923
16924     altos: Use ao_data_pres macro in ao_log_tiny
16925     
16926     Now it works on easymini too
16927     
16928     Signed-off-by: Keith Packard <keithp@keithp.com>
16929
16930 commit 82afe3a3b737c43dbeaad41ea5af1841357297a6
16931 Author: Keith Packard <keithp@keithp.com>
16932 Date:   Sat May 18 02:54:55 2013 -0700
16933
16934     altos: Check for packet mode before trying to disable it in flight code
16935     
16936     This is only relevant for telemini
16937     
16938     Signed-off-by: Keith Packard <keithp@keithp.com>
16939
16940 commit 52063c2679752033135fff928c7686e368d2a825
16941 Author: Keith Packard <keithp@keithp.com>
16942 Date:   Sat May 18 02:54:30 2013 -0700
16943
16944     altos: ao_data_get is in ao_data.c now, not ao_adc.c
16945     
16946     Signed-off-by: Keith Packard <keithp@keithp.com>
16947
16948 commit e4385d29fc1b233b3ad56d4af68a175e760c1751
16949 Author: Keith Packard <keithp@keithp.com>
16950 Date:   Sat May 18 02:53:32 2013 -0700
16951
16952     altos: Allow architecture to define the type of port registers
16953     
16954     LPC11U14 has 32-bit ports, STM32 has 16 bit ports.
16955     
16956     Signed-off-by: Keith Packard <keithp@keithp.com>
16957
16958 commit ca4f3161258356c06fe1270f7ccdf0d6939e2d34
16959 Author: Keith Packard <keithp@keithp.com>
16960 Date:   Sat May 18 02:52:49 2013 -0700
16961
16962     altos: Move ao_data.c from stm to core
16963     
16964     This should be used on every processor
16965     
16966     Signed-off-by: Keith Packard <keithp@keithp.com>
16967
16968 commit ac089d4fb930b7dbc4161259fd9bddba94395ebc
16969 Author: Keith Packard <keithp@keithp.com>
16970 Date:   Fri May 17 03:36:47 2013 -0700
16971
16972     altos/lpc: Get USB working
16973     
16974     The lpc demo now has a USB command line.
16975     Also allocates system stack so we know when ram is tight at build time
16976     
16977     Signed-off-by: Keith Packard <keithp@keithp.com>
16978
16979 commit 185e6d15bcda229949a984910d7394203d301db9
16980 Author: Keith Packard <keithp@keithp.com>
16981 Date:   Thu May 16 18:58:24 2013 -0700
16982
16983     altos: Allow target-specific USB endpoint specifications
16984     
16985     The LPC has only a small number of endpoints, and those are not
16986     configurable. Let the LPC USB driver pick the IN and OUT endpoints by itself.
16987     
16988     Signed-off-by: Keith Packard <keithp@keithp.com>
16989
16990 commit 6c35e21a86ab32bc91eb10a60c071b702fc0f963
16991 Author: Keith Packard <keithp@keithp.com>
16992 Date:   Tue May 7 19:27:17 2013 -0700
16993
16994     altos: Finish off LPC USB register definitions
16995     
16996     Signed-off-by: Keith Packard <keithp@keithp.com>
16997
16998 commit 918342016705303baa1630c62c290aaf2dcc2801
16999 Author: Keith Packard <keithp@keithp.com>
17000 Date:   Thu Apr 25 20:38:32 2013 -0700
17001
17002     altos/lpc: Start adding USB register defines
17003     
17004     Signed-off-by: Keith Packard <keithp@keithp.com>
17005
17006 commit 91d201abcbe9373360919406427b7e4fb9e1b42e
17007 Author: Keith Packard <keithp@keithp.com>
17008 Date:   Mon Apr 22 17:10:24 2013 -0500
17009
17010     altos/lpc: Start adding USB register definitions
17011     
17012     Just the bare struct, no defines yet.
17013     
17014     Signed-off-by: Keith Packard <keithp@keithp.com>
17015
17016 commit 9bf67798b134ad796c2f4bc9240ee450722148ec
17017 Author: Keith Packard <keithp@keithp.com>
17018 Date:   Sat Apr 20 00:40:38 2013 -0500
17019
17020     altos/lpc: Take advantage of USART TX fifo
17021     
17022     The USART has a 16-byte TX fifo; keep rough track of how full it is to
17023     avoid waiting for an interrupt after every TX byte.
17024     
17025     Signed-off-by: Keith Packard <keithp@keithp.com>
17026
17027 commit 9e8f6ba8b779cd9635f82d6da5f113715c3ee4c7
17028 Author: Keith Packard <keithp@keithp.com>
17029 Date:   Sat Apr 20 00:20:55 2013 -0500
17030
17031     altos/lpc: Get USART running
17032     
17033     Adds a simple demo thread that spews data to the serial port
17034     
17035     Signed-off-by: Keith Packard <keithp@keithp.com>
17036
17037 commit f9d0eb3f3154f98abb0c8952d7171f3e7d3de9b2
17038 Author: Keith Packard <keithp@keithp.com>
17039 Date:   Thu Apr 18 16:15:52 2013 -0500
17040
17041     altos/lpc: Get 100Hz timer running
17042     
17043     Use systick, which is built into the ARM core
17044     
17045     Signed-off-by: Keith Packard <keithp@keithp.com>
17046
17047 commit 04b243e6ef212f54ed284cfbde6d5abb637bf60e
17048 Author: Keith Packard <keithp@keithp.com>
17049 Date:   Thu Apr 18 15:55:26 2013 -0500
17050
17051     lpcxpresso: Add ao_demo.c
17052     
17053     Kinda necessary for the demo to build
17054     
17055     Signed-off-by: Keith Packard <keithp@keithp.com>
17056
17057 commit bcc65597d3d20f1d58df784100af766cee5f0f20
17058 Author: Keith Packard <keithp@keithp.com>
17059 Date:   Thu Apr 18 15:54:13 2013 -0500
17060
17061     lpc: Initial lpcxpresso bits
17062     
17063     This gets the LPC11U14 clock set to the PLL and blinks the LED.
17064     
17065     Signed-off-by: Keith Packard <keithp@keithp.com>
17066
17067 commit 6735a391c2a1e3be01ac9e68b44ec0974592c11c
17068 Author: Keith Packard <keithp@keithp.com>
17069 Date:   Fri May 17 03:34:50 2013 -0700
17070
17071     libaltos: use PurgeComm in Windows altos_close to abort in-progress ops
17072     
17073     Instead of manually signalling the related events, use PurgeComm which
17074     can then abort the operations itself. Also make sure all of the
17075     relevant handles are set to INVALID before closing them to avoid race conditions.
17076     
17077     Signed-off-by: Keith Packard <keithp@keithp.com>
17078
17079 commit bd8d061d0f63158b5b03814d77cb76fdf5a0abad
17080 Author: Keith Packard <keithp@keithp.com>
17081 Date:   Fri May 17 03:27:20 2013 -0700
17082
17083     libaltos: Build the linux library targets when doing a 'fat' build
17084     
17085     These are necessary for the fat release, so make sure they're built then.
17086     
17087     Signed-off-by: Keith Packard <keithp@keithp.com>
17088
17089 commit 8a19805a6b079450b5afd5fa2334cede8495ae4a
17090 Author: Keith Packard <keithp@keithp.com>
17091 Date:   Fri May 17 03:21:08 2013 -0700
17092
17093     altos/cc1111: Hack on USB driver to make Windows happy
17094     
17095     The Windows modem driver is quite chatty at startup time, getting and
17096     setting the comm parameters each time the device is opened. Sometimes,
17097     when setting the parameters, the cc1111 would STALL EP0.
17098     
17099     Most of the time, Windows would happily pass this as an error back to
17100     AltosUI which would then re-try the open (and succeed, most of the
17101     time).
17102     
17103     Sometimes, Windows would stall for 30 seconds before passing the error
17104     back. This made the whole UI freeze, and I suspect most people assumed
17105     our app had died.
17106     
17107     A bit of analysis with the beagle USB sniffer and I discovered the
17108     STALL settings, but there wasn't any correlation between the data on
17109     the wire and when the STALL would be generated.
17110     
17111     So, I found a couple of other cc1111 USB stacks on the net and just
17112     looked to see how our driver differed. There wasn't anything clearly
17113     related, but there were a list of small differences:
17114     
17115      1) Other drivers didn't bother waiting for the hardware to
17116         ack the USBADDR setting; doing it this way means we can set
17117         the address *before* acking the setup packet. It'll get
17118         set eventually, at which point the device will start responding to
17119         packets again.
17120     
17121         Easy to fix, and saves a bit of code space too.
17122     
17123      2) The other drivers set the STALL bit for setup packets which aren't
17124         understood. This shouldn't have any effect on 'good' systems as
17125         those shouldn't ever be generating bogus setup packets anyways.
17126     
17127         The driver already handled the STALL state in the interrupt
17128         handler, the only requirement was to figure out when to explicitly
17129         set the STALL bit.
17130     
17131         That required moving the state updating code from the start of the
17132         ep0 setup handling to the end, after the setup packet had been
17133         examined and data queued in or out as appropriate.
17134     
17135      3) Our driver explicitly queued an IN packet for any setup request
17136         that wasn't waiting for an OUT pack. This appears to tie in with
17137         the USBADDR change above as before I made that change, this change
17138         caused the driver to fail to respond to most setup packets.
17139     
17140         This was simple once the above change was made, just move the
17141         generation of the IN packet inside the code that switched to the
17142         IN state.
17143     
17144     Signed-off-by: Keith Packard <keithp@keithp.com>
17145
17146 commit 4ef0136c27e8f47a1eb38f9cbcd2c61288732d78
17147 Author: Keith Packard <keithp@keithp.com>
17148 Date:   Wed May 15 15:32:59 2013 -0700
17149
17150     altos: Generate unmodulated carrier for CC1120 test mode
17151     
17152     This sets the deviation to 0, enables the preamble and turns on the
17153     transmitter. It will sit there happily sending a bare carrier forever
17154     
17155     Signed-off-by: Keith Packard <keithp@keithp.com>
17156
17157 commit 1931e028bebc3cd8df9392e30eb0e888d0799768
17158 Author: Keith Packard <keithp@keithp.com>
17159 Date:   Tue May 14 22:29:06 2013 -0700
17160
17161     altos: Move MS5607 info from 'v' to 'c s'
17162     
17163     Makes more sense there.
17164     
17165     Signed-off-by: Keith Packard <keithp@keithp.com>
17166
17167 commit 69b9f613ad36b8039f223ed30f8c75913916d82c
17168 Author: Keith Packard <keithp@keithp.com>
17169 Date:   Tue May 14 22:19:07 2013 -0700
17170
17171     altos: Remove some MMA655x debugging printfs
17172     
17173     Signed-off-by: Keith Packard <keithp@keithp.com>
17174
17175 commit 0571531066918fdefe9447f3b4192d0c6c477afa
17176 Author: Keith Packard <keithp@keithp.com>
17177 Date:   Tue May 14 10:48:24 2013 -0700
17178
17179     altos: Grab SPI mutex until MPU6000 I2C mode is disabled
17180     
17181     If other drivers use the SPI bus, the MPU6000 gets confused as its
17182     sitting on the bus looking for I2C messages. Just grab the mutex
17183     before the OS is running and hold onto it until the MPU6000 has been initialized.
17184     
17185     Signed-off-by: Keith Packard <keithp@keithp.com>
17186
17187 commit 9beacd77b3e8106e036e50a67312dfee414fbc51
17188 Author: Keith Packard <keithp@keithp.com>
17189 Date:   Tue May 14 09:01:49 2013 -0700
17190
17191     altos: Initialize MPU6000 CS pin for SPI mode
17192     
17193     Without this, we can't talk to the chip very well
17194     
17195     Signed-off-by: Keith Packard <keithp@keithp.com>
17196
17197 commit 6d553230903ddd0ec522c07be0df975b38ef23d3
17198 Author: Keith Packard <keithp@keithp.com>
17199 Date:   Tue May 14 09:56:16 2013 -0700
17200
17201     altos: Fix telemega v0.3 igniter order (drogue/main moved). Label ADC dump
17202     
17203     telemega moves the igniters around so that E/F are now drogue/main.
17204     Add custom labels for ADC values to make parsing possible
17205     
17206     Signed-off-by: Keith Packard <keithp@keithp.com>
17207
17208 commit a4e4eec827d61a05fda52ddb68b55f17b6028d5e
17209 Author: Keith Packard <keithp@keithp.com>
17210 Date:   Tue May 14 09:25:08 2013 -0700
17211
17212     altos: gps serial routines are called ao_gps_*, not ao_ublox_*
17213     
17214     This caused the u-blox driver to use serial port 1 instead of the
17215     project-specified serial port.
17216     
17217     Signed-off-by: Keith Packard <keithp@keithp.com>
17218
17219 commit 461215eea72ff9d64748304e76b08da37ee3dfe9
17220 Author: Keith Packard <keithp@keithp.com>
17221 Date:   Tue May 14 09:21:54 2013 -0700
17222
17223     altos: Give u-blox 3 seconds after boot before we bug it
17224     
17225     Signed-off-by: Keith Packard <keithp@keithp.com>
17226
17227 commit 5e9193f6375be27e5f7a0321fd34b6acfe81247f
17228 Author: Keith Packard <keithp@keithp.com>
17229 Date:   Tue May 14 09:12:29 2013 -0700
17230
17231     altos: Add 'g' command to ublox GPS code.
17232     
17233     Take the gps_dump function from ao_gps_skytraq.c and move it to a new
17234     file so it can be shared with the u-blox driver. That affects every
17235     skytraq and u-blox user as they need to include the new file.
17236     
17237     Signed-off-by: Keith Packard <keithp@keithp.com>
17238
17239 commit cdad289a0803babecd30cbc0a95be99c5caadeb5
17240 Author: Keith Packard <keithp@keithp.com>
17241 Date:   Wed May 15 01:24:56 2013 -0700
17242
17243     altos: Add flash-loader for telescience-v0.2
17244     
17245     Signed-off-by: Keith Packard <keithp@keithp.com>
17246
17247 commit 116d8570766fbd3ef529111171935637a2e466af
17248 Author: Keith Packard <keithp@keithp.com>
17249 Date:   Tue May 14 08:51:22 2013 -0700
17250
17251     altos: Set u-blox navigation settings
17252     
17253     Airborne mode, < 4g (as good as it gets)
17254     Only use 3D fixes (2D isn't very useful)
17255     
17256     Signed-off-by: Keith Packard <keithp@keithp.com>
17257
17258 commit fb0fb6f4beab484e7fe55b39d18c1f19778f1211
17259 Author: Keith Packard <keithp@keithp.com>
17260 Date:   Tue May 14 08:35:24 2013 -0700
17261
17262     altos: Use symbolic names for ublox packet id
17263     
17264     Signed-off-by: Keith Packard <keithp@keithp.com>
17265
17266 commit 1ccfd2d2e4b84e72e5502cb72a7da6372b5e2b47
17267 Author: Keith Packard <keithp@keithp.com>
17268 Date:   Tue May 14 01:06:20 2013 -0700
17269
17270     altosui: Generate useful KML files from TeleGPS logs
17271     
17272     Use GPS altitude when baro altitude is not present.
17273     Don't require flight number.
17274     
17275     Signed-off-by: Keith Packard <keithp@keithp.com>
17276
17277 commit bdea4c88318a41ade3d3b6b2cbfc097ae3e4f3be
17278 Author: Keith Packard <keithp@keithp.com>
17279 Date:   Tue May 14 00:38:34 2013 -0700
17280
17281     altosui: Use GPS alt + baro height for KML altitude
17282     
17283     GPS altitude is generally more absolutely correct than baro altitude,
17284     so use that as the nominal pad altitude when generating a KML
17285     file. This results in a KML file that has the flight trace start and
17286     end closer to the ground, which is always nice.
17287     
17288     Signed-off-by: Keith Packard <keithp@keithp.com>
17289
17290 commit 43f94e923a6a87520edcbb8fb4829e6ddf708908
17291 Author: Keith Packard <keithp@keithp.com>
17292 Date:   Tue May 14 00:24:53 2013 -0700
17293
17294     altoslib: Use sequence numbers to track GPS updates to AltosRecord
17295     
17296     State objects now record what GPS sequence ID they have to know when
17297     the GPS data has been updated. Record objects bump the GPS sequence
17298     each time new GPS data is recorded. This way, record objects aren't
17299     modified as they're iterated over to generate the list of state
17300     objects which makes it possible to iterate multiple times and get the
17301     same resulting set of states.
17302     
17303     Signed-off-by: Keith Packard <keithp@keithp.com>
17304
17305 commit c88aa32b979f379e3cf316dcb651e264c32a5283
17306 Author: Keith Packard <keithp@keithp.com>
17307 Date:   Mon May 13 22:59:26 2013 -0700
17308
17309     altos/test: ao_gps_test_ublox uses ao_gps_blox.h
17310     
17311     Signed-off-by: Keith Packard <keithp@keithp.com>
17312
17313 commit 61f5183fb6aff63c1133011b5625814ee56e96da
17314 Author: Keith Packard <keithp@keithp.com>
17315 Date:   Mon May 13 22:58:18 2013 -0700
17316
17317     altos: Struct used for u-blox testing had lat/lon swapped
17318     
17319     The structs in ao_gps_ublox.h are used only by the test framework, but
17320     it's useful to have that look right anyways.
17321     
17322     Signed-off-by: Keith Packard <keithp@keithp.com>
17323
17324 commit 5a730dd7a78b5ae428bcfe809257dabedc4338f5
17325 Author: Keith Packard <keithp@keithp.com>
17326 Date:   Mon May 13 22:33:12 2013 -0700
17327
17328     altos: Switch TeleMega v0.3 to u-blox
17329     
17330     Signed-off-by: Keith Packard <keithp@keithp.com>
17331
17332 commit d2f0dcc73df612d10ed12d364fe661ccd831f037
17333 Author: Keith Packard <keithp@keithp.com>
17334 Date:   Mon May 13 22:32:25 2013 -0700
17335
17336     altos: Provide a define for the number of sat infos in a telem packet
17337     
17338     12 fit, but it's best to use a symbolic constant
17339     
17340     Signed-off-by: Keith Packard <keithp@keithp.com>
17341
17342 commit 50457f9983ec0a432f1050464382749436e3da94
17343 Author: Keith Packard <keithp@keithp.com>
17344 Date:   Mon May 13 22:31:31 2013 -0700
17345
17346     altos: Add U-Blox GPS driver
17347     
17348     Uses binary mode.
17349     
17350     Signed-off-by: Keith Packard <keithp@keithp.com>
17351
17352 commit 125ff0b7c74af4db98a81439ee9f1b92fe8b8833
17353 Author: Keith Packard <keithp@keithp.com>
17354 Date:   Mon May 13 22:29:22 2013 -0700
17355
17356     altos: Don't bother fixing telelco-v0.1, just disable it
17357     
17358     Lots of stuff to do to make this old project build; just disable it
17359     instead of fixing
17360     
17361     Signed-off-by: Keith Packard <keithp@keithp.com>
17362
17363 commit 672edb20434248038ef5fbb87f2c0984bd5ad513
17364 Author: Keith Packard <keithp@keithp.com>
17365 Date:   Mon May 13 22:28:27 2013 -0700
17366
17367     altosuilib: Mistake in the MegaDongle listing -- was set to TeleMega
17368     
17369     Signed-off-by: Keith Packard <keithp@keithp.com>
17370
17371 commit 80a6b0ea5c36c307a8edc79ad10ef7a8ff3d480e
17372 Author: Keith Packard <keithp@keithp.com>
17373 Date:   Mon May 13 22:27:00 2013 -0700
17374
17375     altoslib: Correct hexfile address ranges
17376     
17377     Stop trying to use sentinal values for addresses and just keep a
17378     boolean tracking whether they've been initialized. Avoids precision
17379     errors in the variables.
17380     
17381     Signed-off-by: Keith Packard <keithp@keithp.com>
17382
17383 commit 9bd717e71d69338b1af521b37e8bd975e503398e
17384 Author: Keith Packard <keithp@keithp.com>
17385 Date:   Fri May 10 19:21:18 2013 -0700
17386
17387     altosui: Wait for valid callsign/flight when graphing
17388     
17389     Wait for the data record to indicate that the flight value is valid
17390     before setting the graph callsign/flight/serial data.
17391     
17392     Signed-off-by: Keith Packard <keithp@keithp.com>
17393
17394 commit 106d212ff5920c39d95751ef6249dc141970412c
17395 Merge: ecb1285 09d5d6f
17396 Author: Keith Packard <keithp@keithp.com>
17397 Date:   Thu May 9 21:06:52 2013 -0700
17398
17399     Merge branch 'master-fixes' into stm-flash-fixes
17400
17401 commit 09d5d6f546ccef2bfd4941e590f047485bb73d76
17402 Author: Keith Packard <keithp@keithp.com>
17403 Date:   Thu May 9 21:06:23 2013 -0700
17404
17405     micropeak: Use new 'last logdir' preference for MicroPeak save/load dialogs
17406     
17407     Signed-off-by: Keith Packard <keithp@keithp.com>
17408
17409 commit 95a3a089f9c97684918937eecd94dcac77c47696
17410 Author: Keith Packard <keithp@keithp.com>
17411 Date:   Thu May 9 21:04:52 2013 -0700
17412
17413     Information from configure about android build was misprinted
17414     
17415     A typo in the script caused it to print either 'yes' or ''
17416     
17417     Signed-off-by: Keith Packard <keithp@keithp.com>
17418
17419 commit 17eada6e586731defa9fd75316670c2b2b1601ee
17420 Author: Keith Packard <keithp@keithp.com>
17421 Date:   Thu May 9 21:04:11 2013 -0700
17422
17423     altoslib: Add non-persistent 'last logdir' preference
17424     
17425     This is used to record the last directory for reading or writing log
17426     files so that the UI can pop back to the same place next time.
17427     
17428     Signed-off-by: Keith Packard <keithp@keithp.com>
17429
17430 commit 271e8adbc9549c7b3b4d0ec14e4edb1a6ab715d1
17431 Author: Keith Packard <keithp@keithp.com>
17432 Date:   Thu May 9 21:03:38 2013 -0700
17433
17434     Add altosdroid notebook entry for imperial units
17435     
17436     Signed-off-by: Keith Packard <keithp@keithp.com>
17437
17438 commit ecb128579e7576fc27c8ca93708f316b9ac91630
17439 Author: Keith Packard <keithp@keithp.com>
17440 Date:   Sun Apr 28 23:06:24 2013 -0700
17441
17442     altos: Wait after configuring boot pin before testing it
17443     
17444     Clearly the pin isn't quite ready just after it's been configured, so
17445     hang around for a while (100 nops) to let things setting down before
17446     testing the value of the pin. Makes booting a lot more reliable.
17447     
17448     Signed-off-by: Keith Packard <keithp@keithp.com>
17449
17450 commit 4a90eec4b8ee4a35711aa74c13b3f30d12c0fe08
17451 Author: Keith Packard <keithp@keithp.com>
17452 Date:   Sat Apr 27 15:33:04 2013 -0700
17453
17454     altos/stm: Create per-product flash loaders
17455     
17456     Split the flash loader prototype into pieces so that each product can
17457     build a custom flash loader with very little code.
17458     
17459     Signed-off-by: Keith Packard <keithp@keithp.com>
17460
17461 commit b131c5ac59bbd339a724892586023a43f97c7f90
17462 Author: Keith Packard <keithp@keithp.com>
17463 Date:   Sat Apr 27 00:37:15 2013 -0700
17464
17465     altos: Add ao_boot_chain to telemega v0.3
17466     
17467     Signed-off-by: Keith Packard <keithp@keithp.com>
17468
17469 commit 1695f6af46ea647119d651fc09c97d604d08c736
17470 Author: Keith Packard <keithp@keithp.com>
17471 Date:   Sat Apr 27 00:26:11 2013 -0700
17472
17473     ao-tools/ao-stmload: Add --verbose flag
17474     
17475     This dumps out the serial communication so you can see where things go wrong.
17476     
17477     Signed-off-by: Keith Packard <keithp@keithp.com>
17478
17479 commit f6d6df03826083a244715b88a30ad681f17b4510
17480 Author: Keith Packard <keithp@keithp.com>
17481 Date:   Sat Apr 27 00:25:36 2013 -0700
17482
17483     altos: Remove stdio from stm-flash
17484     
17485     This saves enough memory to fit in under 4kB
17486     
17487     Signed-off-by: Keith Packard <keithp@keithp.com>
17488
17489 commit a2e0676f476b0e2bdd5102315ebd5904b57f384a
17490 Author: Keith Packard <keithp@keithp.com>
17491 Date:   Sat Apr 27 00:24:08 2013 -0700
17492
17493     altos: Get rodata into flash, make sure sections are aligned
17494     
17495     .rodata* needs to be in flash; otherwise strings get left in ram.
17496     Failing to align sections makes the initialized data get dumped into
17497     the wrong place in memory.
17498     
17499     Signed-off-by: Keith Packard <keithp@keithp.com>
17500
17501 commit 2e092b383d55bcf9e2a230ccfe85052adb18b254
17502 Author: Keith Packard <keithp@keithp.com>
17503 Date:   Sat Apr 27 00:23:14 2013 -0700
17504
17505     altos: Make stm-bringup build again
17506     
17507     stm requires AO_BOOT_LOADER_BASE now
17508     
17509     Signed-off-by: Keith Packard <keithp@keithp.com>
17510
17511 commit 0b1797312b34ba2b8121f82605f8d2c419167737
17512 Author: Keith Packard <keithp@keithp.com>
17513 Date:   Sat Apr 27 00:20:47 2013 -0700
17514
17515     altos: Run self loader when application sets boot addr to 0
17516     
17517     This causes the flash loader startup code to fall into the loader when
17518     the application sets the boot address to zero.
17519     
17520     Signed-off-by: Keith Packard <keithp@keithp.com>
17521
17522 commit e2412e867138635d79ea0fa8d43efc0a6aa19784
17523 Author: Keith Packard <keithp@keithp.com>
17524 Date:   Sat Apr 27 00:19:13 2013 -0700
17525
17526     altos: Allow STM usb driver to be used without stdio
17527     
17528     This lets the self flashing loader be linked without any of the stdio
17529     code, which saves a bunch of memory.
17530     
17531     Signed-off-by: Keith Packard <keithp@keithp.com>
17532
17533 commit afad5ae893a48785f3b50ff4125dc78648343a2d
17534 Author: Keith Packard <keithp@keithp.com>
17535 Date:   Mon Apr 22 20:08:35 2013 -0600
17536
17537     altos/stm-flash: Check target flash address against AO_BOOT_APPLICATION_BASE
17538     
17539     Allows that value to change
17540     
17541     Signed-off-by: Keith Packard <keithp@keithp.com>
17542
17543 commit 9ae987073f90402821120dbe962fceb4fc9f5435
17544 Author: Keith Packard <keithp@keithp.com>
17545 Date:   Mon Apr 22 20:59:12 2013 -0500
17546
17547     ao-tools/ao-stmload: application base moved to 0x08001000
17548     
17549     And, use a symbolic name so it can be easily moved in the future
17550     
17551     Signed-off-by: Keith Packard <keithp@keithp.com>
17552
17553 commit 9029722708b54826aa9374555470cb40922c5da5
17554 Author: Keith Packard <keithp@keithp.com>
17555 Date:   Mon Apr 22 20:56:00 2013 -0500
17556
17557     ao-tools: reboot to loader now uses 'X' instead of 'L'
17558     
17559     'L' is used by lots of other commands; switch to 'X' which is free.
17560     
17561     Sigh. Someday we'll have words for commands instead of just letters
17562     
17563     Signed-off-by: Keith Packard <keithp@keithp.com>
17564
17565 commit dfc268e0021e1cd3045f73339a749d292a6a6300
17566 Author: Keith Packard <keithp@keithp.com>
17567 Date:   Mon Apr 22 20:35:57 2013 -0500
17568
17569     altos: Use flash loader on all STM products
17570     
17571     Includes the boot chain stuff
17572     
17573     Signed-off-by: Keith Packard <keithp@keithp.com>
17574
17575 commit 8ded61d59888c79ef1f94e664b5fb770841a801a
17576 Author: Keith Packard <keithp@keithp.com>
17577 Date:   Mon Apr 22 20:33:33 2013 -0500
17578
17579     altos/stm: Provide another 4kB of flash space for apps
17580     
17581     With the flash loader now < 4kB, we can use the spare 4kB for applications
17582     
17583     Signed-off-by: Keith Packard <keithp@keithp.com>
17584
17585 commit 6cd015b8b6b02bd8e0ce28f248426ae75c242b53
17586 Author: Keith Packard <keithp@keithp.com>
17587 Date:   Mon Apr 22 20:32:18 2013 -0500
17588
17589     altos/stm: Shrink stm flash loader to < 4kB
17590     
17591     Saves 4kB of flash space for applications.
17592     
17593     Signed-off-by: Keith Packard <keithp@keithp.com>
17594
17595 commit 02681adbc5919bd3713788da352aa36ace619ef4
17596 Author: Keith Packard <keithp@keithp.com>
17597 Date:   Mon Apr 22 20:30:31 2013 -0500
17598
17599     altos/stm: Allow core timer to be excluded from build
17600     
17601     This removes all of the support for the base 100Hz timer from the
17602     system, saving space when not needed
17603     
17604     Signed-off-by: Keith Packard <keithp@keithp.com>
17605
17606 commit a453e2245996854e722346789f972fd088e33ba8
17607 Author: Keith Packard <keithp@keithp.com>
17608 Date:   Mon Apr 22 20:29:56 2013 -0500
17609
17610     altos/stm: Don't define task macros when not tasking
17611     
17612     The necessary data structures aren't defined in this case.
17613     
17614     Signed-off-by: Keith Packard <keithp@keithp.com>
17615
17616 commit 8d0f4bc23eae4f1e085bfb853c995f1fb6b8b594
17617 Author: Keith Packard <keithp@keithp.com>
17618 Date:   Mon Apr 22 20:27:52 2013 -0500
17619
17620     altos: Eliminate stdio looping when system has a single stdio source
17621     
17622     No need to loop if there's only one
17623     
17624     Signed-off-by: Keith Packard <keithp@keithp.com>
17625
17626 commit 6f3bbb11880f45284f1f094990ffa32a66bf4560
17627 Author: Keith Packard <keithp@keithp.com>
17628 Date:   Mon Apr 22 20:24:48 2013 -0500
17629
17630     altos: Move ao_notask to core
17631     
17632     The STM flash loader wants to be taskless too, share this very simple
17633     implementation of sleep/wakeup.
17634     
17635     Signed-off-by: Keith Packard <keithp@keithp.com>
17636
17637 commit 21356aec543dd85426a52469426351ce006a17dd
17638 Author: Keith Packard <keithp@keithp.com>
17639 Date:   Sun Mar 24 16:16:55 2013 -0700
17640
17641     ao-tools/ao-stmload: Remove IRC dregs in source code
17642     
17643     oops.
17644     
17645     Signed-off-by: Keith Packard <keithp@keithp.com>
17646
17647 commit 9df4e874b2785aec4aecce2f767543ee9f638b4f
17648 Author: Keith Packard <keithp@keithp.com>
17649 Date:   Sun Mar 24 16:15:21 2013 -0700
17650
17651     altosui/altoslib: Move more flashing code from altosui to altoslib
17652     
17653     Required a bit of refactoring to eliminate swing types from the
17654     flashing code, but nothing major.
17655     
17656     Signed-off-by: Keith Packard <keithp@keithp.com>
17657
17658 commit 09e0c304b420a12fa1616005db946523c6e5bef1
17659 Author: Keith Packard <keithp@keithp.com>
17660 Date:   Sun Mar 24 16:01:08 2013 -0700
17661
17662     altosui & altoslib: Move a pile of debug/programming bits to altoslib
17663     
17664     Prepare to create external Java utilities to flash devices
17665     
17666     Signed-off-by: Keith Packard <keithp@keithp.com>
17667
17668 commit 9acd488c5f945511f813d84c3c6f69846d4601e8
17669 Author: Keith Packard <keithp@keithp.com>
17670 Date:   Sun Mar 24 15:35:15 2013 -0700
17671
17672     altosui: Support 32-bit ihx files
17673     
17674     This just borrows the same 32-bit ihx parsing changes from ao-tools.
17675     
17676     Signed-off-by: Keith Packard <keithp@keithp.com>
17677
17678 commit c9ba2d17b979410acfa41f9954674757f7f321fc
17679 Author: Keith Packard <keithp@keithp.com>
17680 Date:   Sun Mar 24 15:33:31 2013 -0700
17681
17682     ao-tools/ao-stmload: Fix ELF, add IHX, add self-flashing
17683     
17684     This splits loading into ELF and IHX paths, and splits flashing into
17685     stlink and self-flashing paths.
17686     
17687     Signed-off-by: Keith Packard <keithp@keithp.com>
17688
17689 commit 1f30b1f14dbab6e6ea94177e459c80732e31e433
17690 Author: Keith Packard <keithp@keithp.com>
17691 Date:   Sun Mar 24 15:30:24 2013 -0700
17692
17693     ao-tools/lib: Add loading support for 32-bit ihx files
17694     
17695     These place the upper 16 bits of the address in a special record. That
17696     requires handling records in file order, so don't sort them in address
17697     order anymore, instead find the bounds of the loaded data by scanning
17698     them all.
17699     
17700     Signed-off-by: Keith Packard <keithp@keithp.com>
17701
17702 commit 7d98fc5d3f106f3063608a2e5c69d9359061437a
17703 Author: Keith Packard <keithp@keithp.com>
17704 Date:   Sun Mar 24 15:27:42 2013 -0700
17705
17706     altos/stm: Add comments to the .ld files explaining how the romconfig stuff works
17707     
17708     Would be nice to be able to explicitly define addresses for the
17709     romconfig variables, but I can't figure out how to make that
17710     work. Instead, just explicitly load the files in teh right order to
17711     make things land in the right places.
17712     
17713     Signed-off-by: Keith Packard <keithp@keithp.com>
17714
17715 commit ab1cbc0f51ddf897a3a7a768862d9dfe26a6c14d
17716 Author: Keith Packard <keithp@keithp.com>
17717 Date:   Sun Mar 24 15:26:26 2013 -0700
17718
17719     altos/stm: Add .elf to .ihx rule
17720     
17721     Uses objcopy -O ihex to extract the initialized bits from an elf file
17722     
17723     Signed-off-by: Keith Packard <keithp@keithp.com>
17724
17725 commit 9362d400d06aa3badfc826d8edbd7c55406b4f7d
17726 Author: Keith Packard <keithp@keithp.com>
17727 Date:   Sun Mar 24 15:24:42 2013 -0700
17728
17729     altos: Switch ao_stm_flash to read/write binary blocks
17730     
17731     Change from development testing code to something that actually reads
17732     and writes data from the USB link.
17733     
17734     Signed-off-by: Keith Packard <keithp@keithp.com>
17735
17736 commit a3f668e71751608ea2e38519003446bc6ceb348f
17737 Author: Keith Packard <keithp@keithp.com>
17738 Date:   Sun Mar 24 15:21:58 2013 -0700
17739
17740     altos: Create ihx version of stm-demo
17741     
17742     Both ao-stmload and the eventual java loader will support ihx files.
17743     
17744     Signed-off-by: Keith Packard <keithp@keithp.com>
17745
17746 commit 5db4d5e5b1272b161102e889e65b9c7bc7928352
17747 Author: Keith Packard <keithp@keithp.com>
17748 Date:   Sat Mar 23 02:23:03 2013 -0700
17749
17750     altos: Add erase command to stm-flash app. Validate addresses.
17751     
17752     This also leaves the code writing fixed values and printing read data
17753     in ascii instead of binary. Useful for debugging, will want changing
17754     for the product.
17755     
17756     Signed-off-by: Keith Packard <keithp@keithp.com>
17757
17758 commit ac6b4fca0970faa0a537a813242585693b839469
17759 Author: Keith Packard <keithp@keithp.com>
17760 Date:   Sat Mar 23 02:21:27 2013 -0700
17761
17762     altos: Fix STM flash programming
17763     
17764     Wait for flash to go non-busy after writing or erasing a page and
17765     before jumping back out of the RAM code.
17766     
17767     Export a separate 'erase' operation for testing.
17768     
17769     Re-lock flash after every operation.
17770     
17771     Signed-off-by: Keith Packard <keithp@keithp.com>
17772
17773 commit 35ef1f17e3efaa6d586ab7bb301f8133d52023b6
17774 Author: Keith Packard <keithp@keithp.com>
17775 Date:   Sat Mar 23 02:18:55 2013 -0700
17776
17777     altos: Validate boot chain start address
17778     
17779     If the first block of boot memory has been smashed, and the start
17780     address is bogus, don't bother trying to jump to the
17781     application. This makes the system more resiliant to flash failures,
17782     presuming the loader erases the first block, programs the other blocks
17783     and then finally comes back to program the first block.
17784     
17785     Signed-off-by: Keith Packard <keithp@keithp.com>
17786
17787 commit db7f17980c303e442f88c8a4168351dbc2c0b1a0
17788 Author: Keith Packard <keithp@keithp.com>
17789 Date:   Sat Mar 23 02:17:04 2013 -0700
17790
17791     altos: Mark .boot section as (NOLOAD)
17792     
17793     For some reason, the silly linker marks things in section .boot as
17794     data rather than bss, so they'd end up initialized by default. Force
17795     them to be NOLOAD so they preserve values across reboot so that boot
17796     chaining works properly.
17797     
17798     Signed-off-by: Keith Packard <keithp@keithp.com>
17799
17800 commit efc0898d824ebd0abe0b088ed9a8b40c34623ab7
17801 Author: Keith Packard <keithp@keithp.com>
17802 Date:   Sat Mar 23 02:15:35 2013 -0700
17803
17804     altos: Fix up stm-flash output file name. Use discovery LED pins
17805     
17806     Include the AltOS version in the file name, just like any other AltOS
17807     program.
17808     
17809     Switch the LEDs to the discovery board as we're using
17810     that. Eventually, we'll stop using LEDs entirely.
17811     
17812     Signed-off-by: Keith Packard <keithp@keithp.com>
17813
17814 commit 4bc55ee8fabc9f4c997c2a515d74baada590c93e
17815 Author: Keith Packard <keithp@keithp.com>
17816 Date:   Mon Mar 11 18:14:28 2013 -0700
17817
17818     altos: Add actual flashing functions to stm-flash app
17819     
17820     Signed-off-by: Keith Packard <keithp@keithp.com>
17821
17822 commit b1a43ce313c85cb7f8f16f7f0647d9d4320ba692
17823 Author: Keith Packard <keithp@keithp.com>
17824 Date:   Mon Mar 11 13:21:04 2013 -0700
17825
17826     altos: Clean up boot loader support
17827     
17828     Split out code into separate files.
17829     Add support for getting back to boot loader from application.
17830     
17831     Signed-off-by: Keith Packard <keithp@keithp.com>
17832
17833 commit 56a7cbbf51f5c9ebbfe17d1cc30ed807572af3cc
17834 Author: Keith Packard <keithp@keithp.com>
17835 Date:   Mon Mar 11 00:01:52 2013 -0700
17836
17837     altos: Add program flash function
17838     
17839     And get it loaded to RAM so it can execute correctly.
17840     
17841     Nothing calls it yet...
17842     
17843     Signed-off-by: Keith Packard <keithp@keithp.com>
17844
17845 commit c9c35b100c3fcae661501d2bf89eedc7fceb2e1c
17846 Author: Keith Packard <keithp@keithp.com>
17847 Date:   Sun Mar 10 21:02:59 2013 -0700
17848
17849     altos: Make stm-flash capable of switching to application
17850     
17851     This shrinks the base OS load down a bit as well so that stm-flash
17852     fits comfortably in the first 8kB of memory.
17853     
17854     Signed-off-by: Keith Packard <keithp@keithp.com>
17855
17856 commit a6887032b4d217bca5236ea15389218f10d69545
17857 Author: Keith Packard <keithp@keithp.com>
17858 Date:   Sun Feb 24 00:18:14 2013 -0800
17859
17860     Add STM self-flashing loader
17861     
17862     This allows the real application to get loaded at 0x2000 and jumps to
17863     that at startup time if the boot pin is set appropriately
17864     
17865     Signed-off-by: Keith Packard <keithp@keithp.com>
17866
17867 commit 887209b61ac3012d0fd2206cf1016c44f59cb432
17868 Author: Keith Packard <keithp@keithp.com>
17869 Date:   Tue May 7 19:29:06 2013 -0700
17870
17871     altos: Sanity check barometer before going to pad mode
17872     
17873     Make sure the barometer is reporting some sensible value before
17874     letting TM try to fly the rocket.
17875     
17876     Signed-off-by: Keith Packard <keithp@keithp.com>
17877
17878 commit 802ca114ca064a9dd557a82e992653b145f8e660
17879 Author: Keith Packard <keithp@keithp.com>
17880 Date:   Tue May 7 19:28:07 2013 -0700
17881
17882     altos: Elide M25 debug output from storage info command
17883     
17884     This is just chip-specific info that no UI actually needs. It takes a
17885     bunch of ROM to write it though, making TeleMetrum not have much space left.
17886     
17887     Signed-off-by: Keith Packard <keithp@keithp.com>
17888
17889 commit 3876b5bfad383119339aea51e2cf301012a1f991
17890 Author: Keith Packard <keithp@keithp.com>
17891 Date:   Mon May 6 16:08:52 2013 -0700
17892
17893     altos: Set APRS deviation to 3kHz
17894     
17895     I finally found a bunch of references to APRS on the net and they all
17896     appear to assume a 3kHz deviation. Let's see if this works better with
17897     Yaesu radios.
17898     
17899     Signed-off-by: Keith Packard <keithp@keithp.com>
17900
17901 commit 4458b5a3cd3f88188c820cd0763f4e1d99fff311
17902 Author: Keith Packard <keithp@keithp.com>
17903 Date:   Fri May 3 01:07:06 2013 -0700
17904
17905     altos/test: Fix warning in ao_aprs_test
17906     
17907     Was not forward-declaring ao_radio_send_aprs, causing a warning
17908     
17909     Signed-off-by: Keith Packard <keithp@keithp.com>
17910
17911 commit 091582c446319fe4a79154153ece5372b2faec83
17912 Author: Keith Packard <keithp@keithp.com>
17913 Date:   Wed May 1 08:58:17 2013 -0700
17914
17915     altos: Use SYSTICK on STM32L
17916     
17917     It's probably more power efficient than using one of the timers, and
17918     it's certainly easier to configure.
17919     
17920     Signed-off-by: Keith Packard <keithp@keithp.com>
17921
17922 commit b7b0ddfddee3f8e21f21d67cd9f522fa50777265
17923 Author: Keith Packard <keithp@keithp.com>
17924 Date:   Wed May 1 08:56:57 2013 -0700
17925
17926     altos: Mark GPS telemetry packets with GPS time stamp
17927     
17928     This provides a reasonable accurate indication of the system time when
17929     the GPS location data was received, and also makes sure GPS packets
17930     get some timestamp when no other telemetry is being transmitted.
17931     
17932     Signed-off-by: Keith Packard <keithp@keithp.com>
17933
17934 commit 6a6a5d0afa646564a9277ad3bd80c4225247a27b
17935 Author: Keith Packard <keithp@keithp.com>
17936 Date:   Tue Apr 30 20:25:20 2013 -0700
17937
17938     altoslib: Update GPS state even if new state is unlocked
17939     
17940     Otherwise, we can't see fine GPS details while GPS is unlocked, and
17941     that's annoying
17942     
17943     Signed-off-by: Keith Packard <keithp@keithp.com>
17944
17945 commit 1e9b405e939136d25d937334d1f14f06c7d6127b
17946 Author: Keith Packard <keithp@keithp.com>
17947 Date:   Tue Apr 30 19:04:26 2013 -0700
17948
17949     altos: Use separate exception stack on STM32L
17950     
17951     This reserves 512 bytes of memory for a stack, then makes sure that
17952     exceptions continue to use that stack while processes use the per-task
17953     stack.
17954     
17955     Signed-off-by: Keith Packard <keithp@keithp.com>
17956
17957 commit ac72d1c298fc553808a8e04a65482d4990f177d7
17958 Author: Keith Packard <keithp@keithp.com>
17959 Date:   Tue Apr 30 18:57:53 2013 -0700
17960
17961     altos: Reduce stack usage of FAT driver and logger
17962     
17963     Move some large stack arrays to static storage.
17964     Also eliminates some printf error messages which don't seem that
17965     useful except for debugging.
17966     
17967     Signed-off-by: Keith Packard <keithp@keithp.com>
17968
17969 commit df70e3e87874d80516c6d43cfe745d511d54f206
17970 Author: Keith Packard <keithp@keithp.com>
17971 Date:   Tue Apr 30 00:12:44 2013 -0700
17972
17973     altos: Open up the DVGA gain to use all of the available settings
17974     
17975     We usually work in RF quiet areas; let the AGC hardware try all of the
17976     available gain settings.
17977     
17978     Signed-off-by: Keith Packard <keithp@keithp.com>
17979
17980 commit e18910659e56ea52ee493d8cc4bce4b219d5bb75
17981 Author: Keith Packard <keithp@keithp.com>
17982 Date:   Tue Apr 30 00:06:08 2013 -0700
17983
17984     altos: Stop using telelco v0.2 top LEDS for radio TX/RX
17985     
17986     The top LEDs are now used for signal strength; a red LED indicates
17987     failed communcations, so we don't need to blink stuff and annoy the user.
17988     
17989     Signed-off-by: Keith Packard <keithp@keithp.com>
17990
17991 commit 8744fd5d541955b0920c7d8e2696039cdcfdf1dc
17992 Author: Keith Packard <keithp@keithp.com>
17993 Date:   Tue Apr 30 00:05:33 2013 -0700
17994
17995     altos: Make cc1120 driver return false on recv timeout
17996     
17997     Was returning an uninitialized value, which was often not zero
17998     
17999     Signed-off-by: Keith Packard <keithp@keithp.com>
18000
18001 commit 4fe42801f42f2fc2688555f4585dbebc28bb2d61
18002 Author: Keith Packard <keithp@keithp.com>
18003 Date:   Mon Apr 29 23:53:43 2013 -0700
18004
18005     altos: Reconfigure CC1120 receiver to match our usage
18006     
18007     Open up the AGC to the full range.
18008     Set the AGC ref based on our receive BW (100kHz).
18009     
18010     Signed-off-by: Keith Packard <keithp@keithp.com>
18011
18012 commit eb0e1720be2aa4fb6729ceada09c18947bfee2bc
18013 Author: Keith Packard <keithp@keithp.com>
18014 Date:   Mon Apr 29 23:20:25 2013 -0700
18015
18016     altos: Compute "real" RSSI value in radio code as needed
18017     
18018     Instead of dragging around the weird CC1111 RSSI values, just compute
18019     a dBm value in a signed 8-bit integer, ao_radio_rssi. Use that
18020     everywhere we need RSSI internally. We leave the weird CC1111 value in
18021     the packet reply as that's what the host expects.
18022     
18023     Signed-off-by: Keith Packard <keithp@keithp.com>
18024
18025 commit 949700f276b80b4eb28f15b5559714f430f227f1
18026 Author: Keith Packard <keithp@keithp.com>
18027 Date:   Mon Apr 29 20:24:16 2013 -0700
18028
18029     altosdroid: Add Notebook entry for reloading telem data option
18030     
18031     This lets the user recover the rocket flight data after stopping the
18032     application but before recovering the rocket.
18033     
18034     Signed-off-by: Keith Packard <keithp@keithp.com>
18035
18036 commit c9f2e6471c11a1f9feb183e05f24c53968098bdb
18037 Author: Keith Packard <keithp@keithp.com>
18038 Date:   Sun Apr 28 23:30:29 2013 -0700
18039
18040     altos: More .gitignore bits
18041     
18042     stm-demo
18043     
18044     Signed-off-by: Keith Packard <keithp@keithp.com>
18045
18046 commit ab99d71c4ba97a28ee463170d10712b2de94dc50
18047 Author: Keith Packard <keithp@keithp.com>
18048 Date:   Sun Apr 28 23:27:32 2013 -0700
18049
18050     altos: Add a bunch of .gitignore files
18051     
18052     Ignore ao_product.h and built binaries
18053     
18054     Signed-off-by: Keith Packard <keithp@keithp.com>
18055
18056 commit 85d32468210c9989ae52bd29f883c4380af43961
18057 Author: Keith Packard <keithp@keithp.com>
18058 Date:   Sun Apr 28 23:25:37 2013 -0700
18059
18060     altos: Add ublox checksum app to generate ublox config lines
18061     
18062     Signed-off-by: Keith Packard <keithp@keithp.com>
18063
18064 commit 257500776935b5950cd7c49f9c799b3174d9232d
18065 Author: Keith Packard <keithp@keithp.com>
18066 Date:   Sun Apr 28 23:22:41 2013 -0700
18067
18068     altos: Add .gitignore to kalman test dir
18069
18070 commit 5a77a62bce5e5ab5998f24588839f3c8a1cc6221
18071 Author: Keith Packard <keithp@keithp.com>
18072 Date:   Sun Apr 28 23:21:17 2013 -0700
18073
18074     altos: Build test framework for kalman filter
18075     
18076     This has some known flight data and generates kalman filter
18077     information for them to test
18078     
18079     Signed-off-by: Keith Packard <keithp@keithp.com>
18080
18081 commit 24a03d0c64fc0b56ad5ccfd6588aa47690ea2a65
18082 Author: Keith Packard <keithp@keithp.com>
18083 Date:   Sun Apr 28 23:15:28 2013 -0700
18084
18085     altos: Ignore ao_aes_test binary
18086     
18087     Signed-off-by: Keith Packard <keithp@keithp.com>
18088
18089 commit e2c697af790d53c68154facc19e4096aed5de798
18090 Author: Keith Packard <keithp@keithp.com>
18091 Date:   Sun Apr 28 23:14:50 2013 -0700
18092
18093     altos/test: Add telemega plot helper script
18094     
18095     Signed-off-by: Keith Packard <keithp@keithp.com>
18096
18097 commit 086217bbde6d549cad61bdde728c75d29023d1c6
18098 Author: Keith Packard <keithp@keithp.com>
18099 Date:   Sun Apr 28 23:11:27 2013 -0700
18100
18101     altos: Add nickle micropeak log parsing code
18102     
18103     I think this was just some debugging stuff, but it doesn't seem useless
18104     
18105     Signed-off-by: Keith Packard <keithp@keithp.com>
18106
18107 commit 5d46d26d714cc172b5ea493478d9dd3cad323152
18108 Author: Keith Packard <keithp@keithp.com>
18109 Date:   Sun Apr 28 23:09:54 2013 -0700
18110
18111     altos: Add telelco-v0.2 project
18112     
18113     Signed-off-by: Keith Packard <keithp@keithp.com>
18114
18115 commit 38d4110e59a44687d8a4743b8cd04cbf2761c9d8
18116 Author: Keith Packard <keithp@keithp.com>
18117 Date:   Sun Apr 28 23:08:03 2013 -0700
18118
18119     altos: Allow LCD segments to not be multiplexed across digits
18120     
18121     This allows each LCD segment to be individually configured as to which
18122     COM and which SEG drives it, permitting maximum flexibility in wiring.
18123     
18124     Signed-off-by: Keith Packard <keithp@keithp.com>
18125
18126 commit f09b2fc7fcfb1b3dcb1a46a8b9856092dd59866b
18127 Author: Keith Packard <keithp@keithp.com>
18128 Date:   Sun Apr 28 23:05:18 2013 -0700
18129
18130     altos: Clear any broken cc1120 TX fifo bits before transmitting
18131     
18132     This just goes and clears the transmitter before using it, just in
18133     case it got wedged somehow. It also clears the bits while waiting for
18134     the radio to go idle, otherwise it'd never make it.
18135     
18136     Signed-off-by: Keith Packard <keithp@keithp.com>
18137
18138 commit b878ca38045b1bee6ea4d649298727ac3fa197c2
18139 Author: Keith Packard <keithp@keithp.com>
18140 Date:   Sun Apr 28 23:03:57 2013 -0700
18141
18142     altos: Make cc1120 driver wait for TX finished
18143     
18144     Otherwise, we may come in and try to use the radio again too quickly,
18145     causing it to go into a TX fifo error state.
18146     
18147     This change watches the MARC status until the transmitter is
18148     explicitly marked as finished.
18149     
18150     Signed-off-by: Keith Packard <keithp@keithp.com>
18151
18152 commit f677a83348a9568679240ee9d731ab454f289831
18153 Author: Keith Packard <keithp@keithp.com>
18154 Date:   Sun Apr 28 23:02:12 2013 -0700
18155
18156     altos: Provide timeout value to ao_radio_recv
18157     
18158     Instead of using ao_alarm around calls to ao_radio_recv, provide an
18159     explicit timeout value as needed by radio functions with more
18160     complicated system interaction than the cc1111. The timeout is 8 bits
18161     of clock ticks.
18162     
18163     Signed-off-by: Keith Packard <keithp@keithp.com>
18164
18165 commit 0488cd9cffc837e99490a0761216bbc5847ff400
18166 Author: Keith Packard <keithp@keithp.com>
18167 Date:   Sun Apr 28 22:52:23 2013 -0700
18168
18169     altos: Build test framework for AES code
18170     
18171     Simple CBC-CMAC test with a constant 0 key and constant 0 data for now.
18172     
18173     Signed-off-by: Keith Packard <keithp@keithp.com>
18174
18175 commit 3edbaa90fb7cb31fa0bd835a7c6c8930fd6dfeb6
18176 Author: Keith Packard <keithp@keithp.com>
18177 Date:   Sat Apr 27 23:23:33 2013 -0700
18178
18179     altos: Make telemega-v0.3 binary use the right name
18180     
18181     Signed-off-by: Keith Packard <keithp@keithp.com>
18182
18183 commit 168188f6650dc9a777d57f9c7a8ff1be957bc892
18184 Author: Keith Packard <keithp@keithp.com>
18185 Date:   Mon Apr 22 20:23:48 2013 -0500
18186
18187     altos/stm: Remove USB EP0 task
18188     
18189     Handl EP0 actions from interrupt handler. This allows USB to be used
18190     in a taskless environment, like the STM flash loader
18191     
18192     Signed-off-by: Keith Packard <keithp@keithp.com>
18193
18194 commit 0b6128d634c49e1790675ae8111e970b1af1f141
18195 Author: Keith Packard <keithp@keithp.com>
18196 Date:   Sun Mar 24 15:29:32 2013 -0700
18197
18198     ao-tools/lib: Deal with binary USB data in debugging output
18199     
18200     Dump non-ascii characters in hex format.
18201     
18202     Signed-off-by: Keith Packard <keithp@keithp.com>
18203
18204 commit 3cbec0292d5167bce5c23eeea95f7a2d13bccc79
18205 Author: Keith Packard <keithp@keithp.com>
18206 Date:   Sun Mar 24 15:20:09 2013 -0700
18207
18208     altos/stm: Always declare all romconfig variables
18209     
18210     I haven't figured out how to assign addresses for specific initialized
18211     variables, so we'll just have to always declare all of them and make
18212     sure that we add new ones at the end.
18213     
18214     Signed-off-by: Keith Packard <keithp@keithp.com>
18215
18216 commit 4551be8b03a795ece94fd303a1f556c63c0a0096
18217 Author: Keith Packard <keithp@keithp.com>
18218 Date:   Sun Mar 24 15:14:12 2013 -0700
18219
18220     altos: Call ao_task_init before initializing any drivers
18221     
18222     When using task queues, the sleep queues must be initialized before
18223     any invocation of ao_wakeup or the OS will crash. Just make sure
18224     ao_task_init is always invoked early in the task process to get that done.
18225     
18226     Signed-off-by: Keith Packard <keithp@keithp.com>
18227
18228 commit 6dea353e732b6e19586c844796bc3bb848cc92f8
18229 Author: Keith Packard <keithp@keithp.com>
18230 Date:   Sun Mar 10 21:05:34 2013 -0700
18231
18232     altos: Expose ao_put_string function
18233     
18234     This works like puts, except it doesn't add a trailing newline.
18235     
18236     Signed-off-by: Keith Packard <keithp@keithp.com>
18237
18238 commit 1629acba4a63baae2c687ed56a17d02faf45f5e5
18239 Author: Keith Packard <keithp@keithp.com>
18240 Date:   Thu May 2 23:14:02 2013 -0700
18241
18242     Allow build without SDCC
18243     
18244     The AltOS directory handles not building the cc1111 apps when sdcc is
18245     missing already, so don't require it, just whinge if it's missing
18246     
18247     Signed-off-by: Keith Packard <keithp@keithp.com>
18248
18249 commit 7cce6c205e4595894e033ab8f0acc8064bf9f561
18250 Merge: 75f8229 5591509
18251 Author: Bdale Garbee <bdale@gag.com>
18252 Date:   Mon Apr 29 17:24:43 2013 -0600
18253
18254     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
18255
18256 commit 75f8229d4a8d7c9a28ea3d88fda72af0d1f1ccc2
18257 Author: Bdale Garbee <bdale@gag.com>
18258 Date:   Mon Apr 29 17:11:48 2013 -0600
18259
18260     add libssl-dev as a build dep since it's used in FAT filesystem test code
18261
18262 commit f2a8ac537d254cc08c0be9c16bf2d5cc03fd04fc
18263 Author: Bdale Garbee <bdale@gag.com>
18264 Date:   Mon Apr 29 17:06:57 2013 -0600
18265
18266     point to pkgconfig content in /opt/cortex so stlink stuff works
18267
18268 commit 55915098f2668e3a71568d51a9888dc4bdf40992
18269 Author: Keith Packard <keithp@keithp.com>
18270 Date:   Sat Apr 27 16:07:34 2013 -0700
18271
18272     altosdroid: Add wish for persistent TBT and freq settings
18273     
18274     Signed-off-by: Keith Packard <keithp@keithp.com>
18275
18276 commit 38a680e1407a80ff8ad19e1a90dd4e87b22fe922
18277 Author: Keith Packard <keithp@keithp.com>
18278 Date:   Sat Apr 27 00:37:36 2013 -0700
18279
18280     altos: All STM ADC users need to declare HAS_ADC_TEMP
18281     
18282     Otherwise we can't configure the ADC unit correctly at boot time
18283     
18284     Signed-off-by: Keith Packard <keithp@keithp.com>
18285
18286 commit 2717f14567c1fe1bb061024332c8022ef0e06049
18287 Author: Keith Packard <keithp@keithp.com>
18288 Date:   Sat Apr 27 00:36:11 2013 -0700
18289
18290     altos: Build telemega-v0.3 by default
18291     
18292     Signed-off-by: Keith Packard <keithp@keithp.com>
18293
18294 commit cef4e3ee95037050ae859fb2fdc0a57373764bd8
18295 Merge: fefc021 f3ee7de
18296 Author: Keith Packard <keithp@keithp.com>
18297 Date:   Thu Apr 25 22:22:50 2013 -0700
18298
18299     Merge remote-tracking branch 'origin/master'
18300
18301 commit fefc021045089ffd00d03e4c4e6cf42a13692828
18302 Author: Keith Packard <keithp@keithp.com>
18303 Date:   Thu Apr 25 22:21:26 2013 -0700
18304
18305     altos: Add TeleMega v0.3 support
18306     
18307     Includes adding SPI support to the MPU6000 driver
18308     
18309     Signed-off-by: Keith Packard <keithp@keithp.com>
18310
18311 commit 38206dd71e70565ded505a1e86257cd49b10bf9b
18312 Author: Keith Packard <keithp@keithp.com>
18313 Date:   Thu Apr 25 21:27:03 2013 -0700
18314
18315     altos: Add MR25 everspin MRAM driver
18316     
18317     Signed-off-by: Keith Packard <keithp@keithp.com>
18318
18319 commit 4ed83e34d1163c7fae0a205528c60dc83973082a
18320 Author: Keith Packard <keithp@keithp.com>
18321 Date:   Thu Apr 25 21:25:39 2013 -0700
18322
18323     altos: Make SD card driver compile without radio support
18324     
18325     The SD card driver blocks the radio when trying to access the card as
18326     that operation appears very sensitive to RFI. This fix makes the
18327     driver work when there *isn't* a radio driver in the same device.
18328     
18329     Signed-off-by: Keith Packard <keithp@keithp.com>
18330
18331 commit f3ee7deb6b2fbae7e3c66fe0af0cba36378793f1
18332 Author: Bdale Garbee <bdale@gag.com>
18333 Date:   Thu Apr 25 00:26:39 2013 -0600
18334
18335     document need for an ARM Cortex toolchain in /opt/cortex, point to build docs
18336
18337 commit 90b0db1ae53182c94bf12d661446fc369d916366
18338 Author: Keith Packard <keithp@keithp.com>
18339 Date:   Mon Apr 22 15:53:04 2013 -0500
18340
18341     Re-add telemega outline pictures
18342     
18343     after the great renaming
18344     
18345     Signed-off-by: Keith Packard <keithp@keithp.com>
18346
18347 commit e9a6c4f71e02bb0073dcd030de735904494da81f
18348 Author: Keith Packard <keithp@keithp.com>
18349 Date:   Mon Apr 22 15:15:03 2013 -0500
18350
18351     altos: Re-generate TeleMega bits
18352     
18353     Lost in the great megametrum rename
18354     
18355     Signed-off-by: Keith Packard <keithp@keithp.com>
18356
18357 commit aa7eac32adf4c2cdf441991d02411758f2682d1e
18358 Author: Bdale Garbee <bdale@gag.com>
18359 Date:   Mon Apr 22 13:00:26 2013 -0600
18360
18361     name change from MegaMetrum to TeleMega
18362
18363 commit 8c05f608c8f103649c1e5ec0d5742621e233af78
18364 Author: Keith Packard <keithp@keithp.com>
18365 Date:   Mon Apr 22 11:06:36 2013 -0500
18366
18367     Move cortex toolchain to /opt/cortex
18368     
18369     Signed-off-by: Keith Packard <keithp@keithp.com>
18370
18371 commit 6f92ab336a258e8b1ddf58de33d6883251b9532d
18372 Author: Keith Packard <keithp@keithp.com>
18373 Date:   Sun Apr 21 21:04:50 2013 -0500
18374
18375     altosdroid: Add request for sat images to AltosDroid Notebook
18376     
18377     Signed-off-by: Keith Packard <keithp@keithp.com>
18378
18379 commit 045da152fae82712b937bc81f02c9531e042cbe0
18380 Author: Keith Packard <keithp@keithp.com>
18381 Date:   Sun Apr 21 20:53:14 2013 -0500
18382
18383     altosdroid: Add a few more Notebook entries
18384     
18385     Signed-off-by: Keith Packard <keithp@keithp.com>
18386
18387 commit 27afe30176051fca816d85c1be265ac663ef851c
18388 Author: Mike Beattie <mike@ethernal.org>
18389 Date:   Mon Apr 22 13:50:35 2013 +1200
18390
18391     altosdroid: Bump APK version, and re-upload.
18392     
18393     Didn't re-build altoslib for the previous APK!
18394     
18395     Signed-off-by: Mike Beattie <mike@ethernal.org>
18396
18397 commit 759376cd0aac61c5afce31aed27ef98aba791173
18398 Author: Mike Beattie <mike@ethernal.org>
18399 Date:   Mon Apr 22 13:50:13 2013 +1200
18400
18401     altos: update .gitignore files
18402     
18403     Signed-off-by: Mike Beattie <mike@ethernal.org>
18404
18405 commit b4ffb3ed36fc8696603616bf5f31b07fb3829614
18406 Author: Bdale Garbee <bdale@gag.com>
18407 Date:   Sat Apr 20 23:55:06 2013 -0600
18408
18409     document my snazzy new 4-pin to MM v0.1 debug cable
18410
18411 commit 45d638634e389bab61b0ee792420609eb8a9ad97
18412 Author: Keith Packard <keithp@keithp.com>
18413 Date:   Sat Apr 20 22:30:23 2013 -0500
18414
18415     altosdroid: Add Notebook to track feature requests
18416     
18417     Signed-off-by: Keith Packard <keithp@keithp.com>
18418
18419 commit 2e28d3541b8da31ebef5a199baf8f544d238298e
18420 Author: Keith Packard <keithp@keithp.com>
18421 Date:   Sat Apr 20 22:16:28 2013 -0500
18422
18423     libaltos: Delay after opening bluetooth device on linux
18424     
18425     Writes immediately after the open disappear sometimes.
18426     
18427     Signed-off-by: Keith Packard <keithp@keithp.com>
18428
18429 commit 02a564bbc3a23b4f90685e8b29083ddb3e4b3563
18430 Author: Keith Packard <keithp@keithp.com>
18431 Date:   Sat Apr 20 22:05:01 2013 -0500
18432
18433     libaltos: Try Bluetooth open 5 times on EBUSY
18434     
18435     After closing Bluetooth, it can take a second before the device is up
18436     for another connection. Hang around retrying a few times.
18437     
18438     Signed-off-by: Keith Packard <keithp@keithp.com>
18439
18440 commit 6348186397dbef6da912586cea58d6663c511501
18441 Author: Keith Packard <keithp@keithp.com>
18442 Date:   Sat Apr 20 21:40:47 2013 -0500
18443
18444     doc: Start filling in details about Altos Droid flight monitoring
18445     
18446     This is almost all identical to AltosUI; I think we'll want to share
18447     the two sections.
18448     
18449     Signed-off-by: Keith Packard <keithp@keithp.com>
18450
18451 commit 0d49c16c6c33264952854b9f24bc737d92036449
18452 Author: Keith Packard <keithp@keithp.com>
18453 Date:   Sat Apr 20 17:38:15 2013 -0500
18454
18455     doc: Add a bunch of Altos Droid material to the docs
18456     
18457     Signed-off-by: Keith Packard <keithp@keithp.com>
18458
18459 commit 6055ee0b7fb99f1b41ece8ba912bdd201ea35b1b
18460 Author: Mike Beattie <mike@ethernal.org>
18461 Date:   Sun Apr 21 14:52:56 2013 +1200
18462
18463     altosdroid: Release v1.2, push to play store.
18464     
18465     Signed-off-by: Mike Beattie <mike@ethernal.org>
18466
18467 commit 49caac78786014d443d9c05f47b5eb3070ec9bd3
18468 Merge: 5b7bbf1 cbf38c5
18469 Author: Mike Beattie <mike@ethernal.org>
18470 Date:   Sun Apr 21 14:51:07 2013 +1200
18471
18472     Merge branch 'altosdroid'
18473
18474 commit cbf38c557a2046b6d6af3a9aebc0cef8e0dc5f11
18475 Author: Mike Beattie <mike@ethernal.org>
18476 Date:   Sun Apr 21 14:46:41 2013 +1200
18477
18478     altosdroid: Make the service class implement locationlistener
18479     
18480     Signed-off-by: Mike Beattie <mike@ethernal.org>
18481
18482 commit c5b31a14e1ceeb9a33e0016f345832344d24ced7
18483 Author: Mike Beattie <mike@ethernal.org>
18484 Date:   Sun Apr 21 14:44:07 2013 +1200
18485
18486     altosdroid: fix up 'send last' code.
18487     
18488     Signed-off-by: Mike Beattie <mike@ethernal.org>
18489
18490 commit cc674d8f991a3a055236ad8b51fecd99080540e1
18491 Author: Mike Beattie <mike@ethernal.org>
18492 Date:   Sun Apr 21 14:41:50 2013 +1200
18493
18494     altosdroid: check for mAltosVoice being null.
18495     
18496     Signed-off-by: Mike Beattie <mike@ethernal.org>
18497
18498 commit 7701e142f9e3a81c536c546c9a0abfb3ba709abc
18499 Author: Mike Beattie <mike@ethernal.org>
18500 Date:   Sun Apr 21 14:41:28 2013 +1200
18501
18502     altosdroid: set tab height based on screen density.
18503     
18504     Signed-off-by: Mike Beattie <mike@ethernal.org>
18505
18506 commit a9e02e32cb10e5b5f17cd555bb28fdc205ac3612
18507 Author: Mike Beattie <mike@ethernal.org>
18508 Date:   Sun Apr 21 14:40:58 2013 +1200
18509
18510     altosdroid: Add filters for TeleBT bluetooth devices.
18511     
18512     Signed-off-by: Mike Beattie <mike@ethernal.org>
18513
18514 commit b0d6e2000d1b48859f5a276a5af254cc1a6cc9ad
18515 Author: Mike Beattie <mike@ethernal.org>
18516 Date:   Sun Apr 21 14:40:33 2013 +1200
18517
18518     altosdroid: incorrect property syntax in pad xml
18519     
18520     Signed-off-by: Mike Beattie <mike@ethernal.org>
18521
18522 commit d1ca6b5805cb5e934e013463448b75dd4a3c864f
18523 Author: Mike Beattie <mike@ethernal.org>
18524 Date:   Sun Apr 21 14:40:03 2013 +1200
18525
18526     altosdroid: whitespace and import tidyup
18527     
18528     Signed-off-by: Mike Beattie <mike@ethernal.org>
18529
18530 commit ecfc8a08147cfd179b341475333d68a39c978f0f
18531 Author: Keith Packard <keithp@keithp.com>
18532 Date:   Sat Apr 20 17:16:50 2013 -0500
18533
18534     altosdroid: Update distance/bearing on map tab
18535     
18536     Signed-off-by: Keith Packard <keithp@keithp.com>
18537
18538 commit 5b7bbf183e558330d27702aa1bebf205f0e094aa
18539 Author: Bdale Garbee <bdale@gag.com>
18540 Date:   Sat Apr 20 12:22:38 2013 -0600
18541
18542     improve text in telebt turn-on script
18543
18544 commit ff332e640b27c6be37dabef58ebac350ac2347b2
18545 Merge: b300060 87d6ed2
18546 Author: Keith Packard <keithp@keithp.com>
18547 Date:   Wed Apr 17 10:41:05 2013 -0700
18548
18549     Merge branch 'master' into droid-gps
18550
18551 commit b3000609e4010ff4d29debe72ea1866e775af539
18552 Author: Keith Packard <keithp@keithp.com>
18553 Date:   Wed Apr 17 10:38:54 2013 -0700
18554
18555     altosdroid: Fix integer formatting in tabs
18556     
18557     Was trying to use AltosDroid.number for integers, which didn't work as
18558     it expected doubles.
18559     
18560     Signed-off-by: Keith Packard <keithp@keithp.com>
18561
18562 commit 87d6ed24f3650981ae1ff9bfdb0298d2c01e7575
18563 Author: Keith Packard <keithp@keithp.com>
18564 Date:   Tue Apr 16 17:47:17 2013 -0700
18565
18566     altosui: Disable main deploy setting for TeleGPS
18567     
18568     Just like all of the other flight computer settings, disable the main
18569     deploy altitude configuration for TeleGPS.
18570     
18571     Signed-off-by: Keith Packard <keithp@keithp.com>
18572
18573 commit a03aaaca60ccb4b44595e5e1c1047d07d8b6d60f
18574 Author: Keith Packard <keithp@keithp.com>
18575 Date:   Tue Apr 16 17:33:42 2013 -0700
18576
18577     altosui: Handle broken network in map tile loading
18578     
18579     Handle missing pngfiles in AltosSetMapCache by checking ImageIO.read
18580     for null return.
18581     
18582     Do incremental map tile downloading asynchronously so that the UI
18583     doesn't lock up when the network is slow
18584     
18585     Signed-off-by: Keith Packard <keithp@keithp.com>
18586
18587 commit c2640c09c76ce32e471dcf6df83095d146bb39a2
18588 Author: Keith Packard <keithp@keithp.com>
18589 Date:   Tue Apr 16 14:22:23 2013 -0700
18590
18591     altosdroid: Check for missing values
18592     
18593     When displaying numbers, check for MISSING values and display nothing
18594     
18595     Signed-off-by: Keith Packard <keithp@keithp.com>
18596
18597 commit d5a557004c00d1ae25da04dc63c78b816562a236
18598 Merge: 6592a5b 5b04176
18599 Author: Keith Packard <keithp@keithp.com>
18600 Date:   Mon Apr 15 23:26:33 2013 -0700
18601
18602     Merge branch 'master' into droid-gps
18603
18604 commit 5b041769dc926f0aa18072f46abca60b11ede44b
18605 Author: Keith Packard <keithp@keithp.com>
18606 Date:   Mon Apr 15 23:25:55 2013 -0700
18607
18608     altosui: remove debug message from AltosFlightUI
18609     
18610     Signed-off-by: Keith Packard <keithp@keithp.com>
18611
18612 commit 6592a5be127a9c95d3b2e7d5aa6ffba71c6748b9
18613 Merge: c6f85cb eba3aa9
18614 Author: Keith Packard <keithp@keithp.com>
18615 Date:   Mon Apr 15 23:19:44 2013 -0700
18616
18617     Merge branch 'master' into droid-gps
18618
18619 commit eba3aa949decacd5592472a3cda920aa6a06d96f
18620 Author: Keith Packard <keithp@keithp.com>
18621 Date:   Mon Apr 15 23:14:22 2013 -0700
18622
18623     altoslib: Check for null state.gps before accessing it in eeprom records
18624     
18625     Used to be we'd set state.gps to garbage before seeing the first GPS
18626     record; now we leave it null, which will cause crashes for code that
18627     doesn't expect it. The code for reading and replaying eeprom data was
18628     not checking and was nicely crashing as a result.
18629     
18630     Signed-off-by: Keith Packard <keithp@keithp.com>
18631
18632 commit c6f85cb149dff8732104521cb62b355e8a0d7148
18633 Merge: 3cd8ff1 58dd4b8
18634 Author: Keith Packard <keithp@keithp.com>
18635 Date:   Sun Apr 14 20:02:10 2013 -0700
18636
18637     Merge branch 'master' into droid-gps
18638
18639 commit 58dd4b88fe738e005a13dfd69651853ea7f79205
18640 Author: Keith Packard <keithp@keithp.com>
18641 Date:   Sun Apr 14 14:54:52 2013 -0700
18642
18643     micropeak: Oops. Lost the call to actually start downloading data
18644     
18645     Lost when adding the 'help' text somehow; presumably a debugging issue.
18646     
18647     Signed-off-by: Keith Packard <keithp@keithp.com>
18648
18649 commit 3cd8ff18a7546c1e251747ba26240cb130003ef1
18650 Author: Keith Packard <keithp@keithp.com>
18651 Date:   Sat Apr 13 12:13:18 2013 -0700
18652
18653     altosdroid: Update UI even if no telem has been received. Center map.
18654     
18655     This allows the receiver location to be displayed even when telemetry
18656     is not.
18657     
18658     Center the map on the first valid location, either receiver or
18659     rocket. Update center if a significantly more precise location is received.
18660     
18661     Signed-off-by: Keith Packard <keithp@keithp.com>
18662
18663 commit 192bc28fbe2a8613d0b42e4fb3f7674a1a50abc7
18664 Author: Keith Packard <keithp@keithp.com>
18665 Date:   Sat Apr 13 11:45:23 2013 -0700
18666
18667     altosdroid: Get rid of a couple of startup messages
18668     
18669     These are just annoying
18670     
18671     Signed-off-by: Keith Packard <keithp@keithp.com>
18672
18673 commit e4b6fc3238ad9911fd40ef25accf82a401cb190f
18674 Author: Keith Packard <keithp@keithp.com>
18675 Date:   Sat Apr 13 11:39:14 2013 -0700
18676
18677     altosdroid: Show our position in the map tab. Squeeze to fit phones
18678     
18679     Shrink everything to fit on phones, then add phone location to the map tab
18680     
18681     Signed-off-by: Keith Packard <keithp@keithp.com>
18682
18683 commit 2f7015afcca7c6042365d2124d3a5b7219e8e588
18684 Merge: 5077f3a 778daf0
18685 Author: Keith Packard <keithp@keithp.com>
18686 Date:   Sat Apr 13 10:51:04 2013 -0700
18687
18688     Merge branch 'master' into droid-gps
18689
18690 commit 5077f3ad1967a33712e9ff411e3b2a0b4e1a5c4a
18691 Author: Keith Packard <keithp@keithp.com>
18692 Date:   Sat Apr 13 10:50:26 2013 -0700
18693
18694     altosdroid: Shrink text so it fits on my phone
18695     
18696     Yes, this is a hack; will try to figure out how to make it resizeable
18697     
18698     Signed-off-by: Keith Packard <keithp@keithp.com>
18699
18700 commit 778daf0ccbd8a073da33497e33c29400d0ecc464
18701 Author: Keith Packard <keithp@keithp.com>
18702 Date:   Sat Apr 13 10:39:14 2013 -0700
18703
18704     Windows: Add all of the AltusMetrum USB IDs to telemetrum.inf
18705     
18706     This should make Windows load the driver
18707     
18708     Signed-off-by: Keith Packard <keithp@keithp.com>
18709
18710 commit 25c01719f17be8da73a859867c14df0fc29b5441
18711 Author: Keith Packard <keithp@keithp.com>
18712 Date:   Thu Apr 11 22:16:03 2013 -0700
18713
18714     libaltos: Retry Windows serial port open five times
18715     
18716     Maybe this helps?
18717     
18718     Signed-off-by: Keith Packard <keithp@keithp.com>
18719
18720 commit 679401fff981b675dd5a188c64e8940254588800
18721 Author: Keith Packard <keithp@keithp.com>
18722 Date:   Fri Apr 12 03:09:16 2013 -0700
18723
18724     altos: Make sure the packet format is set reasonably for radio test
18725     
18726     Dunno if this matters, but it might as well be set reasonably
18727     
18728     Signed-off-by: Keith Packard <keithp@keithp.com>
18729
18730 commit 1430c48cfef1ef21831205f4fadd26ca6c7f5dbe
18731 Author: Keith Packard <keithp@keithp.com>
18732 Date:   Fri Apr 12 00:55:59 2013 -0700
18733
18734     altoslib: Remove spurious debug message
18735     
18736     Signed-off-by: Keith Packard <keithp@keithp.com>
18737
18738 commit cdbf8053658c71a657005af68202023d0b4af1fe
18739 Author: Keith Packard <keithp@keithp.com>
18740 Date:   Fri Apr 12 02:42:37 2013 -0700
18741
18742     altos: Don't include bufio debug commands by default
18743     
18744     We shouldn't need these
18745     
18746     Signed-off-by: Keith Packard <keithp@keithp.com>
18747
18748 commit c54bd59780275ece87eafb8143cf0637b35e794c
18749 Author: Keith Packard <keithp@keithp.com>
18750 Date:   Fri Apr 12 02:35:15 2013 -0700
18751
18752     altos: Stick a mutex around FAT operations
18753     
18754     This allows the command line and logging operations to occur safely in parallel
18755     
18756     Signed-off-by: Keith Packard <keithp@keithp.com>
18757
18758 commit 7e6e2ca60c65a4fe2bee0bd8b9b89d45a7dbcfb3
18759 Author: Keith Packard <keithp@keithp.com>
18760 Date:   Fri Apr 12 01:55:33 2013 -0700
18761
18762     altos: Delay while waking up SD card a bit
18763     
18764     This seems to make bringing the card from idle to ready mode more
18765     reliable. If you spam the card with requests, it will eventually
18766     whinge and shut down communications.
18767     
18768     Signed-off-by: Keith Packard <keithp@keithp.com>
18769
18770 commit 19ef593be9ff3f329e44472735d90c80129d2795
18771 Author: Keith Packard <keithp@keithp.com>
18772 Date:   Fri Apr 12 01:04:55 2013 -0700
18773
18774     altosdroid: The Map already draws our location; no receiver marker needed
18775     
18776     Signed-off-by: Keith Packard <keithp@keithp.com>
18777
18778 commit 1ec6fb3b9cec0f864d6e65d0cc6b4dd42edd3e16
18779 Author: Keith Packard <keithp@keithp.com>
18780 Date:   Fri Apr 12 01:00:36 2013 -0700
18781
18782     altosdroid: Check state.gps != null before using it
18783     
18784     Avoid crashing.
18785     
18786     Signed-off-by: Keith Packard <keithp@keithp.com>
18787
18788 commit 02243463adbdfb860f69580f544da9026dc7cbd4
18789 Author: Keith Packard <keithp@keithp.com>
18790 Date:   Fri Apr 12 00:55:59 2013 -0700
18791
18792     altoslib: Remove spurious debug message
18793     
18794     Signed-off-by: Keith Packard <keithp@keithp.com>
18795
18796 commit 9212ce268f3a4a9f3f019f23f6eef8b57207d340
18797 Author: Keith Packard <keithp@keithp.com>
18798 Date:   Fri Apr 12 00:19:24 2013 -0700
18799
18800     altosdroid: Compute course from android device to rocket, display it
18801     
18802     Signed-off-by: Keith Packard <keithp@keithp.com>
18803
18804 commit f02bb1df132443fc27b69f23f382ea87e610f533
18805 Author: Keith Packard <keithp@keithp.com>
18806 Date:   Thu Apr 11 23:56:47 2013 -0700
18807
18808     altoslib: Add range and elevation to AltosGreatCircle
18809     
18810     Move the computations from AltosState here so they can be re-used elsewhere.
18811     
18812     Signed-off-by: Keith Packard <keithp@keithp.com>
18813
18814 commit 9a8cc23de5776ea3fa2bdc96cbe63422eb555d63
18815 Author: Keith Packard <keithp@keithp.com>
18816 Date:   Thu Apr 11 22:39:14 2013 -0700
18817
18818     altosdroid: Mike was right -- only need one LocationListener
18819     
18820     I mis-read the docs and thought we needed two listeners, one for GPS
18821     and one for network position. Looks like we don't
18822     
18823     Signed-off-by: Keith Packard <keithp@keithp.com>
18824
18825 commit 83ce46c73b0e876f9f630943af19ea97b3a21d3c
18826 Author: Keith Packard <keithp@keithp.com>
18827 Date:   Thu Apr 11 22:34:36 2013 -0700
18828
18829     altosdroid: Send LOCATION and CRC_ERROR messages to UI.
18830     
18831     This collects all position changes and crc error increments and sends
18832     them along to the UI for presentation.
18833     
18834     Signed-off-by: Keith Packard <keithp@keithp.com>
18835
18836 commit 1f88d345c407e409611448d0e8813ab5a6de0a0b
18837 Author: Keith Packard <keithp@keithp.com>
18838 Date:   Thu Apr 11 22:16:25 2013 -0700
18839
18840     altosdroid: Hook up the position listeners
18841     
18842     Signed-off-by: Keith Packard <keithp@keithp.com>
18843
18844 commit 81730670b6848bebb2c6a8ac7813419112f2779a
18845 Author: Keith Packard <keithp@keithp.com>
18846 Date:   Tue Apr 9 14:53:25 2013 -0700
18847
18848     doc: Add an outline of an AltosDroid chapter
18849     
18850     Not much content yet, but I think this is pretty much the sections we need
18851     
18852     Signed-off-by: Keith Packard <keithp@keithp.com>
18853
18854 commit 07fb6efc54b8575627572a2113bdbc62914bafb5
18855 Author: Keith Packard <keithp@keithp.com>
18856 Date:   Tue Apr 9 00:38:25 2013 -0700
18857
18858     altoslib/altosui: Adapt monitor idle to new AltosListenerState
18859     
18860     Move the receiver battery monitoring to the new spot
18861     
18862     Signed-off-by: Keith Packard <keithp@keithp.com>
18863
18864 commit 398c02b945a58634c8932f07df2c2be8438da7d1
18865 Author: Keith Packard <keithp@keithp.com>
18866 Date:   Tue Apr 9 00:28:05 2013 -0700
18867
18868     altoslib/altosui: Carry receiver status around in AltosListenerState
18869     
18870     This moves the crc_errors into the new structure and adds a receiver
18871     battery voltage value there as well. Now the receiver status can be
18872     monitored separately from the flight status. That also means that code
18873     receiving state updates should be prepared to accept missing listener
18874     or flight state values.
18875     
18876     Signed-off-by: Keith Packard <keithp@keithp.com>
18877
18878 commit 08eb1e3e1abb1aa4f5ea92b781a2ff8f480006c5
18879 Author: Keith Packard <keithp@keithp.com>
18880 Date:   Mon Apr 8 17:42:18 2013 -0700
18881
18882     altos: Monitor battery voltage on telebt
18883     
18884     Signed-off-by: Keith Packard <keithp@keithp.com>
18885
18886 commit 6ba0df9b440b69bf5bc5f4e435b431adf303fee2
18887 Merge: 1d3ab47 28adf55
18888 Author: Bdale Garbee <bdale@gag.com>
18889 Date:   Mon Apr 8 18:02:37 2013 -0600
18890
18891     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
18892
18893 commit 28adf5541354715b185dbb45b28c97c7d9cf8bcd
18894 Author: Keith Packard <keithp@keithp.com>
18895 Date:   Mon Apr 8 16:48:40 2013 -0700
18896
18897     altos: Create telebt-v1.0 product. Remove old telebt products
18898     
18899     Signed-off-by: Keith Packard <keithp@keithp.com>
18900
18901 commit 1d3ab47d82fe005ab6854386c0ffa5771ee49bf6
18902 Author: Keith Packard <keithp@keithp.com>
18903 Date:   Mon Apr 8 16:48:40 2013 -0700
18904
18905     altos: Create telebt-v1.0 product. Remove old telebt products
18906     
18907     Signed-off-by: Keith Packard <keithp@keithp.com>
18908
18909 commit 0c0dc761095a5a77c87c3b4dcd1d42a4e79f6604
18910 Author: Keith Packard <keithp@keithp.com>
18911 Date:   Sat Apr 6 23:48:36 2013 -0700
18912
18913     altos: Try RDF mode for TX calibration
18914     
18915     Trying to get the radio to stop modulating the carrier when
18916     calibrating the radio, we'll try RDF mode which says no preamble or
18917     sync data. This might shift the frequency though?
18918     
18919     Signed-off-by: Keith Packard <keithp@keithp.com>
18920
18921 commit 30c397296bcdaceb4c2c9d0509dc591b489ece02
18922 Author: Keith Packard <keithp@keithp.com>
18923 Date:   Tue Apr 2 17:44:06 2013 -0700
18924
18925     altosui: Graph TeleMini flights without crashing
18926     
18927     Adding maps to the graph UI failed to check for missing GPS data in a
18928     couple of places causing crashes when fed a TeleMini file.
18929     
18930     Signed-off-by: Keith Packard <keithp@keithp.com>
18931
18932 commit 67b8bdb4ea8c22688d4f18416593346585595cfa
18933 Author: Keith Packard <keithp@keithp.com>
18934 Date:   Tue Apr 2 17:29:40 2013 -0700
18935
18936     altosui: Display current GPS in 'pad' tab for 'startup' staten
18937     
18938     This is the state for telegps, so just display the current GPS info as
18939     we don't know where it started at.
18940     
18941     Signed-off-by: Keith Packard <keithp@keithp.com>
18942
18943 commit 907cc6c50755c0d19b93c15678d6f3022a6ee10b
18944 Author: Keith Packard <keithp@keithp.com>
18945 Date:   Tue Apr 2 16:48:05 2013 -0700
18946
18947     altosui: Hide flight-related tabs for telegps
18948     
18949     Products without a flight state don't need ascent/descent/landed tabs.
18950     
18951     Signed-off-by: Keith Packard <keithp@keithp.com>
18952
18953 commit e747156d0ea4b62eea30a8f486ee105ee35dcaf5
18954 Author: Keith Packard <keithp@keithp.com>
18955 Date:   Tue Apr 2 16:47:07 2013 -0700
18956
18957     altosui: Don't display missing sensor data
18958     
18959     For devices without sensors, don't display temperature, barometric and
18960     accelerometer-derived values.
18961     
18962     Signed-off-by: Keith Packard <keithp@keithp.com>
18963
18964 commit 997cdef3fe04acdd566d287e70981f7b7934d0c8
18965 Author: Keith Packard <keithp@keithp.com>
18966 Date:   Tue Apr 2 16:44:58 2013 -0700
18967
18968     altoslib: Make any incoming telem packet update the RSSI value
18969     
18970     Every packet has RSSI info, so use the latest one available. This
18971     makes telegps RSSI available as it never sends sensor packets (having
18972     no sensors).
18973     
18974     Signed-off-by: Keith Packard <keithp@keithp.com>
18975
18976 commit 0cd203e418e73a1f11460425985b7575c2f0a76c
18977 Author: Keith Packard <keithp@keithp.com>
18978 Date:   Tue Apr 2 16:43:53 2013 -0700
18979
18980     Set telegps USB id to 0025
18981     
18982     It was accidentally using the same ID as megadongle...
18983     
18984     Signed-off-by: Keith Packard <keithp@keithp.com>
18985
18986 commit 96c32125a780ad6b39c015f4abbae07fead68582
18987 Author: Keith Packard <keithp@keithp.com>
18988 Date:   Tue Apr 2 16:41:29 2013 -0700
18989
18990     altos: Shorten SD initialization timeouts.
18991     
18992     This makes failure when no card is present much quicker.
18993     
18994     Signed-off-by: Keith Packard <keithp@keithp.com>
18995
18996 commit 985df526ec142258ef990d0b55b0a14e13c099b4
18997 Author: Keith Packard <keithp@keithp.com>
18998 Date:   Mon Apr 1 02:39:35 2013 -0700
18999
19000     altos: Horrible kludge -- disable radio while talking with SD card
19001     
19002     The SD card really doesn't like the RFI generated by our enormous
19003     radio, so just lock the radio out while working with the card.
19004     
19005     Signed-off-by: Keith Packard <keithp@keithp.com>
19006
19007 commit 14c63f94f36a95272d91695039abf54efb423a91
19008 Author: Keith Packard <keithp@keithp.com>
19009 Date:   Mon Apr 1 02:10:14 2013 -0700
19010
19011     altos: Add defines for the specific pins used for telegps SPI
19012     
19013     These aren't needed at this point, but who knows?
19014     
19015     Signed-off-by: Keith Packard <keithp@keithp.com>
19016
19017 commit b34370cea662eb245e43aca20a6650b84b55ef6f
19018 Author: Keith Packard <keithp@keithp.com>
19019 Date:   Mon Apr 1 02:08:18 2013 -0700
19020
19021     altos: Retry SD card I/O. Use time for timeouts instead of counts
19022     
19023     Sometimes I/O operations may fail; give the card a chance and retry
19024     the operation in case it works the next time.
19025     
19026     Replace the loop counts with loops that check the clock so that
19027     they'll have consistent timeouts even if the CPU or SPI speed changes.
19028     
19029     Signed-off-by: Keith Packard <keithp@keithp.com>
19030
19031 commit b3a41bed39ec1abfc3ab74e9be7dd393e975542b
19032 Author: Keith Packard <keithp@keithp.com>
19033 Date:   Mon Apr 1 02:07:06 2013 -0700
19034
19035     altos: Provide build hooks for sampling profiler in telegps
19036     
19037     Might prove useful if the CPU is ever doing anything?
19038     
19039     Signed-off-by: Keith Packard <keithp@keithp.com>
19040
19041 commit fae116fbebb9658fe15690ff43dfe8568a58c2a9
19042 Author: Keith Packard <keithp@keithp.com>
19043 Date:   Mon Apr 1 02:06:03 2013 -0700
19044
19045     altos: Add a FAT test that re-writes the same file multiple times
19046     
19047     This caught a bunch of FAT cluster chain allocation bugs.
19048     
19049     Signed-off-by: Keith Packard <keithp@keithp.com>
19050
19051 commit 79d01a571935138b24b86a7181307ee014d248ed
19052 Author: Keith Packard <keithp@keithp.com>
19053 Date:   Mon Apr 1 02:03:57 2013 -0700
19054
19055     altos: Support open on multiple simultaneous FAT files
19056     
19057     Need to be able to see the contents of a log file, even if the logger
19058     is running.
19059     
19060     Signed-off-by: Keith Packard <keithp@keithp.com>
19061
19062 commit 0838b6c8797b84cf8df8f92ee20fb6ae79e434d7
19063 Author: Keith Packard <keithp@keithp.com>
19064 Date:   Mon Apr 1 02:02:14 2013 -0700
19065
19066     altos: Make sure FAT cluster allocation works for size zero files
19067     
19068     There were some rounding errors mis-computing the number of clusters
19069     needed, and the logic to figure out how to re-connect a chain was broken.
19070     
19071     Signed-off-by: Keith Packard <keithp@keithp.com>
19072
19073 commit 76bd204de744c34e5cbf6efa93adb89bc2cb08b3
19074 Author: Keith Packard <keithp@keithp.com>
19075 Date:   Mon Apr 1 02:00:21 2013 -0700
19076
19077     altos: let FAT tracing work in ao_fat_test as needed
19078     
19079     This allows the FAT DBG hooks to be enabled even if some other module
19080     turned DBG off.
19081     
19082     Signed-off-by: Keith Packard <keithp@keithp.com>
19083
19084 commit a764bf06d0975cbf1620b079351c7437053ea1a8
19085 Author: Keith Packard <keithp@keithp.com>
19086 Date:   Mon Apr 1 01:58:37 2013 -0700
19087
19088     altos: Flush the on-board mega log after every sample interval.
19089     
19090     SPI flash parts don't need flushing, but the SD card does. Make sure
19091     the SD card contents are sane after every logging interval has passed
19092     by flushing all dirty blocks to the device.
19093     
19094     Signed-off-by: Keith Packard <keithp@keithp.com>
19095
19096 commit c2de64b10894b366398a8b37ebd2305d9be46d46
19097 Author: Keith Packard <keithp@keithp.com>
19098 Date:   Sun Mar 31 16:11:27 2013 -0700
19099
19100     altos: Create the log file if it doesn't already exist
19101     
19102     open will return failure unless the file already exists.
19103     
19104     Signed-off-by: Keith Packard <keithp@keithp.com>
19105
19106 commit 659a6915f5ba5129096e55ccc04c975d216546ae
19107 Author: Keith Packard <keithp@keithp.com>
19108 Date:   Sun Mar 31 16:10:33 2013 -0700
19109
19110     altos: Make ao_fat_readdir return real error values instead of 1/0
19111     
19112     This way, we can distinguish between 'something bad happened' and
19113     'you're at the end of the directory'.
19114     
19115     Signed-off-by: Keith Packard <keithp@keithp.com>
19116
19117 commit 182ceaac7d91dc6e9ebac6455d5de0c10687796b
19118 Author: Keith Packard <keithp@keithp.com>
19119 Date:   Sun Mar 31 13:55:16 2013 -0700
19120
19121     altos: Increase SD card timeout at startup time
19122     
19123     Sometimes the SD card takes 'a while' to go into idle mode at first
19124     power up. Just hang around waiting for a long time.
19125     
19126     Signed-off-by: Keith Packard <keithp@keithp.com>
19127
19128 commit d813566cdc4d43a43ed988dde4a3ceeccf24efe6
19129 Author: Keith Packard <keithp@keithp.com>
19130 Date:   Sun Mar 31 12:46:41 2013 -0700
19131
19132     altos: Fix command-line FAT filename parsing
19133     
19134     Pad extension with spaces
19135     
19136     Signed-off-by: Keith Packard <keithp@keithp.com>
19137
19138 commit db01557ce493c435db177fda78653697ba2afa51
19139 Author: Keith Packard <keithp@keithp.com>
19140 Date:   Sat Mar 23 02:10:38 2013 -0700
19141
19142     ao-tools/ao-stmload: Be smarter about ELF parsing. Retry open on failure.
19143     
19144     Figuring out what goes where is tricky; turns out we want to pull all
19145     of the sections that map inside any program area that is supposed to
19146     be loaded from the file.
19147     
19148     So, we walk the program headers, then walk all of the section headers
19149     looking for those that suck data from the same portion of the
19150     file. Compute where in ROM each relevant section goes and build a full
19151     ROM image in memory using that.
19152     
19153     This patch also adds code to close and re-open the device if the first
19154     open failed to do what we want. Much nicer to have the computer figure
19155     out when the open succeeded rather than having people re-run the app.
19156     
19157     Signed-off-by: Keith Packard <keithp@keithp.com>
19158
19159 commit 144b44e13ce3361ff59cbb555e84d542455a4e17
19160 Author: Keith Packard <keithp@keithp.com>
19161 Date:   Sun Mar 31 12:39:32 2013 -0700
19162
19163     altos: Unmount file system after each testing pass in ao_fat_test
19164     
19165     Otherwise, we use stale data and 'bad things' happen.
19166     
19167     Signed-off-by: Keith Packard <keithp@keithp.com>
19168
19169 commit a70139c9a8a177df8f20f525703b13c0aec0fbc7
19170 Author: Keith Packard <keithp@keithp.com>
19171 Date:   Sun Mar 31 12:29:37 2013 -0700
19172
19173     altos: Don't add fat commands when building ao_fat_test
19174     
19175     Signed-off-by: Keith Packard <keithp@keithp.com>
19176
19177 commit 8b2f211758dfa97230a730b8c4b31e0e711c19c9
19178 Author: Keith Packard <keithp@keithp.com>
19179 Date:   Sun Mar 24 15:04:57 2013 -0700
19180
19181     altos/stm: Always check for idle IN buffer before sending
19182     
19183     Unlike the AVR and CC1111 USB drivers, the STM usb driver queues IN
19184     bytes in a local buffer instead of in the driver; this means that the
19185     driver is queuing bytes while the previous IN packet is queued for the
19186     host, which allows for overlapping execution.
19187     
19188     It also means that when the local buffer is full, we must check to see
19189     if the host has picked up the previous IN packet before trying to
19190     queue another IN packet for transmission. This is done by always
19191     waiting for the IN buffer to be ready before sending data.
19192     
19193     Signed-off-by: Keith Packard <keithp@keithp.com>
19194
19195 commit de199601a177fc2d45ad9bd7357111111844d40a
19196 Author: Keith Packard <keithp@keithp.com>
19197 Date:   Sun Mar 24 15:03:59 2013 -0700
19198
19199     altos/stm: Add debugging mechanism to STM USB driver
19200     
19201     This adds a pile of debugging hooks to the USB driver to try and
19202     isolate various lockup-related issues. It's all disabled by default,
19203     of course.
19204     
19205     Signed-off-by: Keith Packard <keithp@keithp.com>
19206
19207 commit 4f1f3e836393304434130d362771a39f6f8f859a
19208 Author: Keith Packard <keithp@keithp.com>
19209 Date:   Sun Mar 24 15:00:20 2013 -0700
19210
19211     altos: Do not release interrupts from any pollchar function
19212     
19213     getchar relies on interrupts being blocked across the pollchar calls
19214     and into the sleep call or it may go to sleep with data pending.
19215     
19216     This prefixes all pollchar functions with _ to indicate that they are
19217     to be called with interrupts blocked and eliminates all interrupt
19218     manipulation calls from within the pollchar functions.
19219     
19220     Signed-off-by: Keith Packard <keithp@keithp.com>
19221
19222 commit 7afcec1a1dce140dfa569469df4ef42ed407a742
19223 Author: Keith Packard <keithp@keithp.com>
19224 Date:   Sun Mar 31 12:23:31 2013 -0700
19225
19226     altos: Add sdcard read/write tracing
19227     
19228     This just dumps info in trace mode about read and write commands
19229     
19230     Signed-off-by: Keith Packard <keithp@keithp.com>
19231
19232 commit a0595d94c7deea29d9e3d4bcbc106b9bed5ee103
19233 Author: Keith Packard <keithp@keithp.com>
19234 Date:   Sun Mar 31 12:22:28 2013 -0700
19235
19236     altos: Move fat mount information to separate command.
19237     
19238     This makes the mount report precise error information and then prints
19239     that with the 'M' command.
19240     
19241     Signed-off-by: Keith Packard <keithp@keithp.com>
19242
19243 commit a0628541e1bfc3e4a122cc824188ed53fddf733e
19244 Author: Keith Packard <keithp@keithp.com>
19245 Date:   Sun Mar 31 12:21:03 2013 -0700
19246
19247     altos: Disable CC115L debug commands
19248     
19249     now that it appears to work, leave these disabled by default
19250     
19251     Signed-off-by: Keith Packard <keithp@keithp.com>
19252
19253 commit d8826b1ad5487de9345b7dcaf6c75a45117ff538
19254 Author: Keith Packard <keithp@keithp.com>
19255 Date:   Sun Mar 31 10:35:47 2013 -0700
19256
19257     altos: Add SD card writing function
19258     
19259     Now that the FAT code seems to be operational, go back and add
19260     SD writing.
19261     
19262     Signed-off-by: Keith Packard <keithp@keithp.com>
19263
19264 commit 649999863c7228ead0225968752d068dc0d30091
19265 Author: Keith Packard <keithp@keithp.com>
19266 Date:   Sat Mar 30 01:33:49 2013 -0700
19267
19268     altos: Add logging and telem to telegps
19269     
19270     This turns on telemetry, APRS, RDF and data logging for telegps.
19271     
19272     Data is logged as soon as GPS has a date to create the right
19273     filename, using files of the form YYYYMMDD.LOG which just barely fits
19274     in a FAT filename.
19275     
19276     Telemetry/RDF/APRS are all separately controllable.
19277     
19278     Signed-off-by: Keith Packard <keithp@keithp.com>
19279
19280 commit b3d8956df3a3ecb3918b5db4d78b057d68541c33
19281 Author: Keith Packard <keithp@keithp.com>
19282 Date:   Sat Mar 30 01:32:30 2013 -0700
19283
19284     altos: Export ao_fat_sync and ao_fat_full functions
19285     
19286     ao_fat_sync() flushes the bufio data to disk along with any fsinfo
19287     changes. ao_fat_full() returns whether the file system is full.
19288     
19289     Signed-off-by: Keith Packard <keithp@keithp.com>
19290
19291 commit 7455a892e8bf5402e7ff2c4bd2ddad05dfe76638
19292 Author: Keith Packard <keithp@keithp.com>
19293 Date:   Sat Mar 30 01:31:12 2013 -0700
19294
19295     altos: Lock cc115l radio mutex when using global radio values
19296     
19297     This moves the locking up above the global state variable uses so that
19298     multiple radio users (as if we had any) won't collide.
19299     
19300     Signed-off-by: Keith Packard <keithp@keithp.com>
19301
19302 commit bd32140df2a595ce66d603b98516bae519327c5d
19303 Author: Keith Packard <keithp@keithp.com>
19304 Date:   Sat Mar 30 01:30:18 2013 -0700
19305
19306     altos: Configure cc115l sync byte count for each radio mode
19307     
19308     two sync bytes for packet mode, disable sync for rdf/aprs mode.
19309     
19310     Signed-off-by: Keith Packard <keithp@keithp.com>
19311
19312 commit 93a9aa703a0173e13b327ed432e6d52e90ebfa1b
19313 Author: Keith Packard <keithp@keithp.com>
19314 Date:   Fri Mar 29 17:05:36 2013 -0700
19315
19316     altos: Get CC115L radio working.
19317     
19318     This involved figuring out which GPIO signal would reliably indicate
19319     that the transmitter was finished; I ended up using the PA_PD bit for
19320     this.
19321     
19322     This also converts all of the radio users to the long packet support
19323     as the CC115L has only a 64-byte fifo, not large enough to hold either
19324     an RDF tone or a regular AltOS telemetry packet.
19325     
19326     This also renames the public API for sending APRS packets from
19327     ao_radio_send_lots to ao_radio_send_aprs, which is at least more
19328     accurate. The workings of that API haven't changed, just the name.
19329     
19330     Signed-off-by: Keith Packard <keithp@keithp.com>
19331
19332 commit 9aeed244879f90b5b6dab1c7ca095cc001b03fe5
19333 Author: Keith Packard <keithp@keithp.com>
19334 Date:   Fri Mar 29 12:13:59 2013 -0700
19335
19336     altos: Add temporary RF power settings
19337     
19338     These expose the raw cc115l and rfpa0133 register settings so that we
19339     can calibrate them against measured power outputs.
19340     
19341     I've tested them to verify that they change how much power the board
19342     consumes, so they're clearly doing something...
19343     
19344     Signed-off-by: Keith Packard <keithp@keithp.com>
19345
19346 commit 86e1039e14304ac13db540f2ee3afd4ff170b8b4
19347 Author: Keith Packard <keithp@keithp.com>
19348 Date:   Fri Mar 29 00:32:23 2013 -0700
19349
19350     altos: Add FAT32 support. And lots more testing.
19351     
19352     Generalizes the FAT code to deal with either 16-bit or 32-bit
19353     versions. The testing code now runs over a variety of disk images to
19354     check for compatibility on all of them.
19355     
19356     Signed-off-by: Keith Packard <keithp@keithp.com>
19357
19358 commit 44e418bbecd3a3deae942803141cf115d92f29d2
19359 Author: Keith Packard <keithp@keithp.com>
19360 Date:   Thu Mar 28 17:38:14 2013 -0700
19361
19362     altos: seek forward on FAT cluster chain instead of restarting
19363     
19364     This improves sequential file performance by taking advantage of any
19365     previous cached cluster/offset pair and starting from there when the
19366     cluster changes rather than starting from scratch at the begining again.
19367     
19368     Signed-off-by: Keith Packard <keithp@keithp.com>
19369
19370 commit 8101e4af199a3d79bff434f788cce9f97aeac53a
19371 Author: Keith Packard <keithp@keithp.com>
19372 Date:   Thu Mar 28 16:57:02 2013 -0700
19373
19374     altos: Add a simple cache for the FAT position->cluster computation
19375     
19376     This improves read/write performance with large files by not
19377     re-walking the cluster chain for every operation
19378     
19379     Signed-off-by: Keith Packard <keithp@keithp.com>
19380
19381 commit c7b606e93a4e4fbd2c0e883352ed74619ee24cf7
19382 Author: Keith Packard <keithp@keithp.com>
19383 Date:   Thu Mar 28 16:05:24 2013 -0700
19384
19385     altos: Clean up fat driver API. Improve fat test
19386     
19387     Make FAT api provide reasonable error return values, change the tests
19388     to write and then read a pile of files, checking that the contents are
19389     correct (using md5sum).
19390     
19391     Signed-off-by: Keith Packard <keithp@keithp.com>
19392
19393 commit d1fe0654b45cc8f944394308cf29945b537becc4
19394 Author: Keith Packard <keithp@keithp.com>
19395 Date:   Thu Mar 28 15:55:35 2013 -0700
19396
19397     altos: Add sanity checking to busy counts in bufio driver
19398     
19399     Make sure the busy counts don't underflow or overflow.
19400     
19401     Signed-off-by: Keith Packard <keithp@keithp.com>
19402
19403 commit 6fe32e0fc407522101e805cf2653253cb3cee291
19404 Author: Keith Packard <keithp@keithp.com>
19405 Date:   Wed Mar 27 22:11:53 2013 -0700
19406
19407     altosui: Don't deref null pyros when saving altimeter config
19408     
19409     The check for no pyro config is to compare npyros against zero rather
19410     than check the length of the pyros array as the latter may be null.
19411     
19412     Signed-off-by: Keith Packard <keithp@keithp.com>
19413
19414 commit 985cd22b941415b1ae2709ae1ab6b60c3d815ec1
19415 Author: Keith Packard <keithp@keithp.com>
19416 Date:   Wed Mar 27 18:43:42 2013 -0700
19417
19418     altos: Use FTDW, clear DATA bit. Disable backup write protection
19419     
19420     The newer(?) chips in telegps didn't like the previous programming
19421     scheme, so go back to fixed time for write, which does an implicit
19422     erase before every write. Also clear the DATA bit, which is only
19423     needed for double word erase/programming.
19424     
19425     Signed-off-by: Keith Packard <keithp@keithp.com>
19426
19427 commit 4a68878a66508e6f1523cd813b2e37bcf2e90ab3
19428 Author: Keith Packard <keithp@keithp.com>
19429 Date:   Wed Mar 27 01:25:24 2013 -0700
19430
19431     altos: Teleshield has a radio, set HAS_RADIO in ao_pins.h
19432     
19433     Otherwise, lots of random code won't know about the radio..
19434     
19435     Signed-off-by: Keith Packard <keithp@keithp.com>
19436
19437 commit 561175afebc63ec3d2f8f7305235c9812ceaf501
19438 Author: Keith Packard <keithp@keithp.com>
19439 Date:   Wed Mar 27 01:15:04 2013 -0700
19440
19441     altos: Add new panic flag for bufio misuse
19442     
19443     Allow the bufio code to signal a fatal error if someone misuses the API
19444     
19445     Signed-off-by: Keith Packard <keithp@keithp.com>
19446
19447 commit bd43955ff0c4d39a685b79e91cb62898a5f1b875
19448 Author: Keith Packard <keithp@keithp.com>
19449 Date:   Wed Mar 27 01:14:15 2013 -0700
19450
19451     altos: Hook up the FAT16 and SD card support to telegps
19452     
19453     Signed-off-by: Keith Packard <keithp@keithp.com>
19454
19455 commit e14834817f78a04b4d9b44a8373119dffd42c966
19456 Author: Keith Packard <keithp@keithp.com>
19457 Date:   Wed Mar 27 01:12:33 2013 -0700
19458
19459     altos: Add SDCARD and FAT16 filesystem support
19460     
19461     This adds a fairly primitive FAT16 file system implementation
19462     along with support for SD cards.
19463     
19464     Signed-off-by: Keith Packard <keithp@keithp.com>
19465
19466 commit 747114786512339211d4981a7828c8c6f1f46c20
19467 Author: Keith Packard <keithp@keithp.com>
19468 Date:   Tue Mar 26 14:28:37 2013 -0700
19469
19470     altos: Fix config to not abort radio recv when no recv is available
19471     
19472     Use the new radio recv define to skip disabling the receiver when
19473     there isn't a receiver.
19474     
19475     Signed-off-by: Keith Packard <keithp@keithp.com>
19476
19477 commit 237e853b820b01409562b93b82684e5147286806
19478 Author: Keith Packard <keithp@keithp.com>
19479 Date:   Tue Mar 26 14:27:46 2013 -0700
19480
19481     altos: Allow radio recv and xmit to be separately configured
19482     
19483     The CC115L is xmit only, so split out the functions and provide
19484     defines to check for xmit or recv separately as needed.
19485     
19486     Signed-off-by: Keith Packard <keithp@keithp.com>
19487
19488 commit 4d187460bdcb97bf6d0a3550e4e03c4c223e4cc1
19489 Author: Keith Packard <keithp@keithp.com>
19490 Date:   Tue Mar 26 14:26:38 2013 -0700
19491
19492     altos/stm: Ensure SPI always sends 0xff during receive
19493     
19494     SD cards require 0xff when fetching data
19495     
19496     Signed-off-by: Keith Packard <keithp@keithp.com>
19497
19498 commit 136ca0922e968d650e9e420a47d228611a3cb45e
19499 Author: Keith Packard <keithp@keithp.com>
19500 Date:   Tue Mar 26 14:25:48 2013 -0700
19501
19502     altos: Improve CC115L driver. Generates carrier now.
19503     
19504     Still no data, but at least the carrier comes up on frequency now.
19505     
19506     Signed-off-by: Keith Packard <keithp@keithp.com>
19507
19508 commit 4889b33af9700b9d872364f0cadaf9425cf84a7d
19509 Author: Keith Packard <keithp@keithp.com>
19510 Date:   Tue Mar 26 14:24:45 2013 -0700
19511
19512     altos: Add RFPA0133 amplifier driver
19513     
19514     No configuration of power level yet, just the bare driver.
19515     
19516     Signed-off-by: Keith Packard <keithp@keithp.com>
19517
19518 commit 6fe1e32f5361e901b88b63a30f070e67d460ada1
19519 Author: Keith Packard <keithp@keithp.com>
19520 Date:   Sun Mar 24 23:52:14 2013 -0700
19521
19522     altos/telegps: Hook up cc115l driver
19523     
19524     Doesn't actually do anything yet, but should initialize the chip at least
19525     
19526     Signed-off-by: Keith Packard <keithp@keithp.com>
19527
19528 commit 4ddfb3ea07c2073f8c4d79feaf262c9fb910cfce
19529 Author: Keith Packard <keithp@keithp.com>
19530 Date:   Sun Mar 24 23:51:11 2013 -0700
19531
19532     altos: Add cc115l driver (untested)
19533     
19534     Includes support for sending telemetry, RDF and APRS tones
19535     
19536     Signed-off-by: Keith Packard <keithp@keithp.com>
19537
19538 commit 15bc83a0eaaa9a43d67fdc3e9f412d5b2c1f06dd
19539 Author: Keith Packard <keithp@keithp.com>
19540 Date:   Wed Mar 20 23:22:37 2013 -0700
19541
19542     ao-tools: Make library support µPusb
19543     
19544     Set baud rate to 9600, look for FTDI-style names
19545     
19546     Signed-off-by: Keith Packard <keithp@keithp.com>
19547
19548 commit 50dd268a715224a01f8a6b481670a4ae6621cb28
19549 Author: Keith Packard <keithp@keithp.com>
19550 Date:   Wed Mar 20 23:21:37 2013 -0700
19551
19552     Add telegps initial version
19553     
19554     Just lights up the GPS and USB
19555     
19556     Signed-off-by: Keith Packard <keithp@keithp.com>
19557
19558 commit 548cf57d5a5ea323bbfc3605b44c23fc48dec96b
19559 Author: Keith Packard <keithp@keithp.com>
19560 Date:   Mon Mar 18 22:12:48 2013 -0700
19561
19562     ao-tools: add ao-dump-up
19563     
19564     Dumps out a µP log. Useful for µPusb bring-up
19565     
19566     Signed-off-by: Keith Packard <keithp@keithp.com>
19567
19568 commit d171d10d97307a1a1a62e660e9194121b79a09be
19569 Author: Keith Packard <keithp@keithp.com>
19570 Date:   Mon Mar 11 18:16:55 2013 -0700
19571
19572     micropeak: Improve download docs and UI
19573     
19574     Add text explaining that the LED and phototransistor must be
19575     touching to both the doc and the UI.
19576     
19577     Signed-off-by: Keith Packard <keithp@keithp.com>
19578
19579 commit 90ee11542b111befa0e96e27292dc548e5c37396
19580 Merge: 97efce5 d7973de
19581 Author: Keith Packard <keithp@keithp.com>
19582 Date:   Sun Mar 10 11:43:06 2013 -0700
19583
19584     Merge remote-tracking branch 'mjb/altosdroid'
19585
19586 commit 97efce5f7ff227aaa8990529217d3d10db3443dc
19587 Author: Keith Packard <keithp@keithp.com>
19588 Date:   Sun Mar 10 11:41:49 2013 -0700
19589
19590     altos: re-enable optimization for stm-demo. remove unused bits
19591     
19592     This makes stm-demo run on the discovery board again.
19593     
19594     Signed-off-by: Keith Packard <keithp@keithp.com>
19595
19596 commit d7973de32adff5402844cc1e1da3eced05265074
19597 Author: Mike Beattie <mike@ethernal.org>
19598 Date:   Sun Mar 10 23:28:26 2013 +1300
19599
19600     altosdroid: Add map polyline between pad and rocket
19601     
19602     Signed-off-by: Mike Beattie <mike@ethernal.org>
19603
19604 commit b691fc48f5e879045e68e070162af56cd08f03b4
19605 Author: Mike Beattie <mike@ethernal.org>
19606 Date:   Sun Mar 10 23:27:28 2013 +1300
19607
19608     altosdroid: Add rocket and pad map markers
19609     
19610     Signed-off-by: Mike Beattie <mike@ethernal.org>
19611
19612 commit b7c82b867b12ca016164725f3736bc5b55048999
19613 Author: Mike Beattie <mike@ethernal.org>
19614 Date:   Sun Mar 10 20:40:13 2013 +1300
19615
19616     altosdroid: programmatically create map fragment
19617     
19618     * Allows reliable fetching of a GoogleMap handle.
19619     * Set map options, initial location (NCR North for now, temporarily)
19620     * Add some info fields below map, and update them accordingly
19621     
19622     Signed-off-by: Mike Beattie <mike@ethernal.org>
19623
19624 commit 8adadf6bd2ba623642675e4beafac4ac98b1916d
19625 Merge: d029aca 0c0c6d6
19626 Author: Mike Beattie <mike@ethernal.org>
19627 Date:   Sun Mar 10 20:24:56 2013 +1300
19628
19629     Merge branch 'master' into altosdroid
19630
19631 commit 0c0c6d60cdce39582fa5350e9b016a08e76f27a1
19632 Author: Mike Beattie <mike@ethernal.org>
19633 Date:   Sun Mar 10 20:24:15 2013 +1300
19634
19635     altosdroid: Add SDK checks to configure.ac
19636     
19637     Signed-off-by: Mike Beattie <mike@ethernal.org>
19638
19639 commit c2d966a8ca9dcf6ccf5c268c616cf1384d45002d
19640 Author: Mike Beattie <mike@ethernal.org>
19641 Date:   Sun Mar 10 20:22:51 2013 +1300
19642
19643     altosdroid: adjust clean targets to get rid of automake warning
19644     
19645     Signed-off-by: Mike Beattie <mike@ethernal.org>
19646
19647 commit 988e9079e20133554acfecc74a109195688c2752
19648 Author: Mike Beattie <mike@ethernal.org>
19649 Date:   Sun Mar 10 20:22:09 2013 +1300
19650
19651     ao-tools: Add ao-edit-telem to .gitignore
19652     
19653     Signed-off-by: Mike Beattie <mike@ethernal.org>
19654
19655 commit d029acad6a992be9b7b4498e70605f8a1e1a4ef6
19656 Merge: eba7b2e 72c5b14
19657 Author: Mike Beattie <mike@ethernal.org>
19658 Date:   Sun Mar 10 19:07:01 2013 +1300
19659
19660     Merge branch 'master' into altosdroid
19661
19662 commit 72c5b1429bdfd6e9d2185bad7d0adb281fdf659a
19663 Author: Keith Packard <keithp@keithp.com>
19664 Date:   Sat Mar 9 20:40:52 2013 -0800
19665
19666     ao-tools: Add ao-edit-telem
19667     
19668     This lets you edit a telemetry file. The only current editing
19669     available is to change the pad location, allowing a flight to be
19670     replayed anywhere in the world.
19671     
19672     Signed-off-by: Keith Packard <keithp@keithp.com>
19673
19674 commit 9b460d38bc2685bca7f530b7749c0e0381f6264c
19675 Author: Keith Packard <keithp@keithp.com>
19676 Date:   Sat Mar 9 20:39:31 2013 -0800
19677
19678     ao-tools/lib: Add cc_telemetry_unparse
19679     
19680     This takes a telemetry structure and generates a string version
19681     
19682     Signed-off-by: Keith Packard <keithp@keithp.com>
19683
19684 commit 0803da851e2e061affc172fdde6301652d1be755
19685 Author: Keith Packard <keithp@keithp.com>
19686 Date:   Sat Mar 9 20:37:38 2013 -0800
19687
19688     altosui: Add N/S and E/W to info table lat/lon values
19689     
19690     Signed-off-by: Keith Packard <keithp@keithp.com>
19691
19692 commit eba7b2ef8ef23bdb61b0390e47be6f27ffde31dc
19693 Author: Mike Beattie <mike@ethernal.org>
19694 Date:   Fri Mar 8 19:41:32 2013 +1300
19695
19696     altosdroid: fix side-to-side scrolling in map tab
19697     
19698     Signed-off-by: Mike Beattie <mike@ethernal.org>
19699
19700 commit 84d35e4cbd7ea2f681c43496b9b9db84f9dd923f
19701 Merge: 760b1f0 e0d9128
19702 Author: Keith Packard <keithp@keithp.com>
19703 Date:   Thu Mar 7 13:00:44 2013 -0800
19704
19705     Merge remote-tracking branch 'mjb/altosdroid'
19706
19707 commit e0d9128b7219b4c8ee68245a44b3428e796ca2f1
19708 Author: Mike Beattie <mike@ethernal.org>
19709 Date:   Thu Mar 7 21:37:51 2013 +1300
19710
19711     altosdroid: Auto tab changing
19712     
19713     Signed-off-by: Mike Beattie <mike@ethernal.org>
19714
19715 commit ecfc568574ababd23b2c4dc1323cb7265c097933
19716 Author: Mike Beattie <mike@ethernal.org>
19717 Date:   Thu Mar 7 21:37:22 2013 +1300
19718
19719     altosdroid: implement Age field updating
19720     
19721     Signed-off-by: Mike Beattie <mike@ethernal.org>
19722
19723 commit 86b742743b26693cf8e56034d4ea68ff277931c1
19724 Author: Mike Beattie <mike@ethernal.org>
19725 Date:   Thu Mar 7 21:35:43 2013 +1300
19726
19727     altosdroid: implement UI updating on tabs
19728     
19729     Signed-off-by: Mike Beattie <mike@ethernal.org>
19730
19731 commit 2a81d637308e680b99d7218ba9e03c9ade6626f1
19732 Author: Mike Beattie <mike@ethernal.org>
19733 Date:   Thu Mar 7 21:33:27 2013 +1300
19734
19735     altosdroid: implement tabs interface
19736     
19737     Signed-off-by: Mike Beattie <mike@ethernal.org>
19738
19739 commit 59dfcbe14622c20aaa7d5b131eece9f4c8db6887
19740 Author: Mike Beattie <mike@ethernal.org>
19741 Date:   Thu Mar 7 21:28:45 2013 +1300
19742
19743     altosdroid: Import initial versions of XML and Java for Tab content
19744     
19745     * Includes TabsAdapter class borrowed from Support Library sample code
19746     * New "GoNoGoLights" class for dealing with the red/green/gray LEDs
19747     * extra required strings in strings.xml
19748     * Couple of support functions in AltosDroid.java
19749     * rudimentary Maps tab - does nothing at present.
19750     
19751     Signed-off-by: Mike Beattie <mike@ethernal.org>
19752
19753 commit d6f1b176f4005af3b6fd16d8c7d22260a3ccdfd8
19754 Author: Mike Beattie <mike@ethernal.org>
19755 Date:   Thu Mar 7 21:20:47 2013 +1300
19756
19757     altosdroid: whitespace cleanup
19758     
19759     DAMN my OCD.
19760     
19761     Signed-off-by: Mike Beattie <mike@ethernal.org>
19762
19763 commit d229d702c8532f477e2ace2af36f2d0cc6e728d3
19764 Author: Mike Beattie <mike@ethernal.org>
19765 Date:   Thu Mar 7 21:20:06 2013 +1300
19766
19767     altosdroid: make AltosDroid.pos() static
19768     
19769     * Will be used from tabs that display lat/lon
19770     
19771     Signed-off-by: Mike Beattie <mike@ethernal.org>
19772
19773 commit cf03ddb42042002bfb88e13ecfb89b27e7aeb91e
19774 Author: Mike Beattie <mike@ethernal.org>
19775 Date:   Thu Mar 7 20:53:26 2013 +1300
19776
19777     altosdroid: convert spaces to tabs in strings.xml
19778     
19779     Signed-off-by: Mike Beattie <mike@ethernal.org>
19780
19781 commit 89f8bb52ea858f059374474c0adda3cd5095a589
19782 Author: Mike Beattie <mike@ethernal.org>
19783 Date:   Thu Mar 7 20:49:41 2013 +1300
19784
19785     altosdroid: adjust release Makefile target
19786     
19787     * Rename target
19788     * Add dependency on unsigned release APK
19789     * use $(ZIPALIGN) variable
19790     
19791     Signed-off-by: Mike Beattie <mike@ethernal.org>
19792
19793 commit 6ff45bef719bafd2c827e479186c8fadf6f779aa
19794 Author: Mike Beattie <mike@ethernal.org>
19795 Date:   Thu Mar 7 20:48:16 2013 +1300
19796
19797     altosdroid: Symlink red/green/gray LEDs via build system
19798     
19799     Signed-off-by: Mike Beattie <mike@ethernal.org>
19800
19801 commit 795fba09a3ca273cd2daeeb7d9fed6bae6fa6a86
19802 Author: Mike Beattie <mike@ethernal.org>
19803 Date:   Thu Mar 7 19:23:39 2013 +1300
19804
19805     altosdroid: Adjust build system for GMaps & Tabs support
19806     
19807     * Use SupportV4 library for Tab support
19808     * Use Google Services Lib for Google Maps
19809     * revert to a standard Android target, not Google API's
19810     * Add permissions required for Google Maps to manifest, and API key
19811     
19812     Signed-off-by: Mike Beattie <mike@ethernal.org>
19813
19814 commit b7dc6045892b33b04ec7c27bdc940b4d3e1b9cbf
19815 Author: Mike Beattie <mike@ethernal.org>
19816 Date:   Thu Mar 7 19:05:43 2013 +1300
19817
19818     altosdroid: adjust Makefile rules
19819     
19820     separate altoslib linking and, making of external lib directory.
19821     
19822     Signed-off-by: Mike Beattie <mike@ethernal.org>
19823
19824 commit 353372425550177cf0531a05706491a96414d12c
19825 Author: Mike Beattie <mike@ethernal.org>
19826 Date:   Thu Mar 7 19:02:48 2013 +1300
19827
19828     altosdroid: use a glob for source files
19829     
19830     Signed-off-by: Mike Beattie <mike@ethernal.org>
19831
19832 commit 1c9a3a5080ca0e21f45c2b7ea889793645796751
19833 Author: Mike Beattie <mike@ethernal.org>
19834 Date:   Thu Mar 7 18:59:30 2013 +1300
19835
19836     altosdroid: Only update BuildInfo.java when other source files change
19837     
19838     Signed-off-by: Mike Beattie <mike@ethernal.org>
19839
19840 commit 10042fed36d19c1b21b8f04c57da708afc085b25
19841 Author: Mike Beattie <mike@ethernal.org>
19842 Date:   Thu Mar 7 18:54:45 2013 +1300
19843
19844     altosdroid: Fix up some formatting in manifest
19845     
19846     (And add flag to allow settings backup by google services)
19847     
19848     Signed-off-by: Mike Beattie <mike@ethernal.org>
19849
19850 commit 760b1f02c178c600226f39b5e66d8cbadbf4a29b
19851 Merge: afd2674 cbad587
19852 Author: Keith Packard <keithp@keithp.com>
19853 Date:   Wed Mar 6 21:53:22 2013 -0800
19854
19855     Merge remote-tracking branch 'mjb/master'
19856
19857 commit 5560148ffea1a718a303d999a0f8a625deceef23
19858 Author: Mike Beattie <mike@ethernal.org>
19859 Date:   Thu Mar 7 18:51:27 2013 +1300
19860
19861     altosdroid: minor whitespace cleanup
19862     
19863     (damn my OCD!)
19864     
19865     Signed-off-by: Mike Beattie <mike@ethernal.org>
19866
19867 commit 9a54e278298540582b91ff3eda476265082e890c
19868 Author: Mike Beattie <mike@ethernal.org>
19869 Date:   Thu Mar 7 18:46:32 2013 +1300
19870
19871     altosdroid: update copyrights/licensing
19872     
19873     Signed-off-by: Mike Beattie <mike@ethernal.org>
19874
19875 commit afd2674261e128a0ecff8fbf5dd6a64196b026f6
19876 Author: Keith Packard <keithp@keithp.com>
19877 Date:   Mon Mar 4 19:44:30 2013 -0800
19878
19879     altoslib: Invalidate GPS new data bit when updating state
19880     
19881     Somehow this line got lost when the GPS ground altitude fix was made.
19882     
19883     Signed-off-by: Keith Packard <keithp@keithp.com>
19884
19885 commit 3605e97ee918b3f87e4c471906f708c3ea027eef
19886 Author: Keith Packard <keithp@keithp.com>
19887 Date:   Sun Mar 3 16:53:52 2013 -0800
19888
19889     ao-tools: Add ao-dumpflash program
19890     
19891     This program dumps the entire flash contents of an AltOS device to
19892     allow for external analysis.
19893     
19894     Signed-off-by: Keith Packard <keithp@keithp.com>
19895
19896 commit 784edcda52d681bbc9302fbc7efb80cb214f71b8
19897 Author: Keith Packard <keithp@keithp.com>
19898 Date:   Sat Mar 2 17:46:29 2013 -0800
19899
19900     libaltos: Open FTDI serial devices twice on Windows.
19901     
19902     Looks like the Windows FTDI driver has 'issues' and opening it only
19903     once doesn't work correctly. Just close and re-open the device and it
19904     seems to be perfectly happy.
19905     
19906     Who knows?
19907     
19908     Signed-off-by: Keith Packard <keithp@keithp.com>
19909
19910 commit cb09076fe16d28e25f5b20b2178cfad10adbeddb
19911 Author: Keith Packard <keithp@keithp.com>
19912 Date:   Fri Mar 1 20:48:28 2013 -0800
19913
19914     doc: Add version 1.2 release notes
19915     
19916     Signed-off-by: Keith Packard <keithp@keithp.com>
19917
19918 commit c9cba68049f957d69a88150470c086dd6f4a42c0
19919 Author: Keith Packard <keithp@keithp.com>
19920 Date:   Fri Mar 1 20:45:43 2013 -0800
19921
19922     doc: Document how to get TeleMini to 'emergency recovery' mode
19923     
19924     TeleMini needs emergency recovery mode in case you forget the radio
19925     parameters and need to get things back to a known state. Add
19926     documentation to describe what this does and how to get it enabled.
19927     
19928     Signed-off-by: Keith Packard <keithp@keithp.com>
19929
19930 commit 113b1146f6ac0ecd423f3fb409e02730604b8aca
19931 Author: Keith Packard <keithp@keithp.com>
19932 Date:   Fri Mar 1 12:34:04 2013 -0800
19933
19934     altosuilib: Disable graph element notifies for each add()
19935     
19936     This reduces the number of notify calls made and dramatically speeds
19937     up graph creation.
19938     
19939     Signed-off-by: Keith Packard <keithp@keithp.com>
19940
19941 commit 351e4110f519d18bb36747955578e9e5b9aeec7b
19942 Author: Keith Packard <keithp@keithp.com>
19943 Date:   Fri Mar 1 12:28:34 2013 -0800
19944
19945     altosuilib: Add setNotify/fireSeriesChanged methods to AltosUIGrapher
19946     
19947     This will let the data adding functions disable notifications while
19948     adding all of the graph data, and then send a single notification when
19949     the data sets are complete, which speeds up creating of the graph
19950     elements quite a bit.
19951     
19952     Signed-off-by: Keith Packard <keithp@keithp.com>
19953
19954 commit d0bd0093a65b73a178da6ddcafcc4dbaa3caca39
19955 Author: Keith Packard <keithp@keithp.com>
19956 Date:   Sun Feb 24 01:20:41 2013 -0800
19957
19958     altos: telescience-v0.2 is an ARM product
19959     
19960     Move it from SDCC to ARM targets as Jenkins doesn't have an ARM compiler.
19961     
19962     Signed-off-by: Keith Packard <keithp@keithp.com>
19963
19964 commit 9230f0a5b119044235c0c419e85a83115aae924d
19965 Author: Keith Packard <keithp@keithp.com>
19966 Date:   Sun Feb 24 01:20:16 2013 -0800
19967
19968     altos/driver: Make HMC5883 driver build again
19969     
19970     Adapt to changes in OS interfaces
19971     
19972     Signed-off-by: Keith Packard <keithp@keithp.com>
19973
19974 commit 2120d362cefceba69e75996b6391d9558978c01d
19975 Merge: 5246acb a04c4f7
19976 Author: Keith Packard <keithp@keithp.com>
19977 Date:   Sun Feb 24 00:20:54 2013 -0800
19978
19979     Merge branch 'telescience-v0.2'
19980
19981 commit 5246acb70b79980de36bd5d0ba0d017529ae9a78
19982 Author: Keith Packard <keithp@keithp.com>
19983 Date:   Sun Feb 24 00:20:36 2013 -0800
19984
19985     Update build version to 1.2
19986     
19987     Prepare for 1.2 release
19988     
19989     Signed-off-by: Keith Packard <keithp@keithp.com>
19990
19991 commit 25435dcbc6416935aa432fc090ea977bfff5d153
19992 Author: Keith Packard <keithp@keithp.com>
19993 Date:   Sun Feb 24 00:19:49 2013 -0800
19994
19995     altos/stm: Add more bits to NVIC register definitions
19996     
19997     This cleans up a few values, adds more comments and a few more NVIC fields.
19998     
19999     Signed-off-by: Keith Packard <keithp@keithp.com>
20000
20001 commit cbad587b49c565edd2c9356a015d6cfd52df93a3
20002 Author: Mike Beattie <mike@ethernal.org>
20003 Date:   Fri Feb 15 22:09:16 2013 +1300
20004
20005     altosdroid: excise old code/xml
20006     
20007     Signed-off-by: Mike Beattie <mike@ethernal.org>
20008
20009 commit 5e53a485310cc11e6add077fb4bd0b0267734ff0
20010 Author: Mike Beattie <mike@ethernal.org>
20011 Date:   Fri Feb 15 21:59:08 2013 +1300
20012
20013     all: clean up .gitignore files and Makefile clean targets
20014     
20015     Signed-off-by: Mike Beattie <mike@ethernal.org>
20016
20017 commit be8eecc4117a14139e4421ce86b67d29a0f0c3d4
20018 Author: Keith Packard <keithp@keithp.com>
20019 Date:   Mon Feb 11 11:40:38 2013 -0800
20020
20021     altosui: Fix AltosLanded call to AltosGraphUI
20022     
20023     Changed the argument from String to File but forgot this one.
20024     
20025     Signed-off-by: Keith Packard <keithp@keithp.com>
20026
20027 commit 59365eb4e1f63a1ced1667ac233058a06a8eecef
20028 Author: Keith Packard <keithp@keithp.com>
20029 Date:   Mon Feb 11 10:34:47 2013 -0800
20030
20031     altosui: Remove graph series which aren't available
20032     
20033     Make sure all graph series have actual data underlying them by
20034     checking the available data before creating the series objects.
20035     
20036     Signed-off-by: Keith Packard <keithp@keithp.com>
20037
20038 commit 2a9ca1dcd00da2cfdd0a2ea616308dfb64ee80d4
20039 Author: Keith Packard <keithp@keithp.com>
20040 Date:   Mon Feb 11 10:31:24 2013 -0800
20041
20042     altosui: Stick file basename in graph window title
20043     
20044     The title was empty before, this seems more useful than that.
20045     
20046     Signed-off-by: Keith Packard <keithp@keithp.com>
20047
20048 commit 5a4cd7b9b318ddea5d1dcc71918819f11256ca94
20049 Author: Keith Packard <keithp@keithp.com>
20050 Date:   Mon Feb 11 10:24:34 2013 -0800
20051
20052     altosuilib: rescale axis when enabling data series
20053     
20054     This makes sure new series are visible when you enable them.
20055     
20056     Signed-off-by: Keith Packard <keithp@keithp.com>
20057
20058 commit 169a6d51718d6b9fae757df9950d2e960d1c8c1d
20059 Author: Keith Packard <keithp@keithp.com>
20060 Date:   Sun Feb 10 19:33:50 2013 -0800
20061
20062     micropeak: Remove Info.plist
20063     
20064     It's built from Info.plist.in
20065     
20066     Signed-off-by: Keith Packard <keithp@keithp.com>
20067
20068 commit 64399500ad1a7ad70452cbda4d60723b5904ca3d
20069 Author: Keith Packard <keithp@keithp.com>
20070 Date:   Sun Feb 10 19:01:41 2013 -0800
20071
20072     Build Windows .nsi files in configure script
20073     
20074     These need the library version numbers embedded in them.
20075     
20076     Signed-off-by: Keith Packard <keithp@keithp.com>
20077
20078 commit cbd9dd989a662f41ddcb0c9e0f4453840687fd4a
20079 Author: Keith Packard <keithp@keithp.com>
20080 Date:   Sun Feb 10 15:34:56 2013 -0800
20081
20082     altosui: Add map and GPS data to graph window. Trac #50
20083     
20084     See where the rocket landed without having to replay the whole flight.
20085     
20086     Signed-off-by: Keith Packard <keithp@keithp.com>
20087
20088 commit f0a125503e502d213711df0d7774d837d4d98447
20089 Author: Keith Packard <keithp@keithp.com>
20090 Date:   Sun Feb 10 14:56:10 2013 -0800
20091
20092     altosui: Display count of erased flights along with their numbers
20093     
20094     An attempt to clarify what's going on by providing both a count and
20095     the flight numbers.
20096     
20097     Signed-off-by: Keith Packard <keithp@keithp.com>
20098
20099 commit 17455da530833d3db03ee2ace7b15130ed307670
20100 Author: Keith Packard <keithp@keithp.com>
20101 Date:   Sun Feb 10 14:51:46 2013 -0800
20102
20103     altosui: Display block number while downloading flights. Track #51
20104     
20105     We don't know how long the flight log is, but we can at least provide
20106     a block number in the pacifier to let the user know it's not wedged.
20107     
20108     Signed-off-by: Keith Packard <keithp@keithp.com>
20109
20110 commit a9cf50c9f29f42cc3ca0daff3c69a4087cf9aa1c
20111 Author: Keith Packard <keithp@keithp.com>
20112 Date:   Sun Feb 10 14:40:48 2013 -0800
20113
20114     altoslib: Fix available flight log storage computation
20115     
20116     number of flights was off by one as it was initialized to -1
20117     storage erase unit wasn't getting fetched correctly
20118     flight_log_max is in kB, not B; need to multiply by 1024
20119     
20120     Signed-off-by: Keith Packard <keithp@keithp.com>
20121
20122 commit 504cf412e8b60b5ff2dea93ed3336f0e058dea62
20123 Author: Keith Packard <keithp@keithp.com>
20124 Date:   Sun Feb 10 14:18:16 2013 -0800
20125
20126     altosui: Display callsign in connecting message window
20127     
20128     When waiting for the remote end to respond, display the callsign along
20129     with the frequency so that the user remembers that it's important to
20130     set that too.
20131     
20132     Signed-off-by: Keith Packard <keithp@keithp.com>
20133
20134 commit c2701ae646124f0668c5f2d1df3fc80f0075a9d7
20135 Author: Keith Packard <keithp@keithp.com>
20136 Date:   Sun Feb 10 14:17:04 2013 -0800
20137
20138     altosui: Interrupt MonitorIdle when changing frequency/callsign
20139     
20140     When switching radio parameters, the local device needs to have the
20141     parameters switched, so interrupt the current operation and start
20142     over, the frequency and callsign will be set the next time through.
20143     
20144     Signed-off-by: Keith Packard <keithp@keithp.com>
20145
20146 commit cc0ea39fee73417ecd69c020d9eca723ebb2cf65
20147 Author: Keith Packard <keithp@keithp.com>
20148 Date:   Sun Feb 10 11:58:36 2013 -0800
20149
20150     altosui: Add callsign to Monitor Idle window (Trac #62)
20151     
20152     This makes it a lot more obvious that the callsign is relevant to the
20153     Monitor Idle process.
20154     
20155     Signed-off-by: Keith Packard <keithp@keithp.com>
20156
20157 commit bf88c5f829ea5d32043431945e862a9f6c96740a
20158 Merge: 3227029 d05a779
20159 Author: Keith Packard <keithp@keithp.com>
20160 Date:   Sun Feb 10 01:21:52 2013 -0800
20161
20162     Merge remote-tracking branch 'mjb/master'
20163
20164 commit 32270296671aac3b3ba15f9c1777bcdd77b9c36c
20165 Author: Keith Packard <keithp@keithp.com>
20166 Date:   Sun Feb 10 00:40:59 2013 -0800
20167
20168     altosui: Adjust graph voltage tool-tip value format
20169     
20170     Voltages are always small, so use more of the space for the
20171     fractional value.
20172     
20173     Signed-off-by: Keith Packard <keithp@keithp.com>
20174
20175 commit a5fb03421751b342dcd450caee49a608d8828175
20176 Author: Keith Packard <keithp@keithp.com>
20177 Date:   Sun Feb 10 00:32:26 2013 -0800
20178
20179     altoslib: Fix a couple of unit functions to make them public
20180     
20181     Nice to be able to use these outside of altoslib
20182     
20183     Signed-off-by: Keith Packard <keithp@keithp.com>
20184
20185 commit 2efd3ad80d4fefa8ccc1b80a2e657dbf9ba0c60f
20186 Author: Keith Packard <keithp@keithp.com>
20187 Date:   Sun Feb 10 00:29:29 2013 -0800
20188
20189     altosui/altoslib/altosuilib: Switch altosui to shared graph code
20190     
20191     This adds a configuration tab to the graph window to enable/disable
20192     various plotted values.
20193     
20194     Signed-off-by: Keith Packard <keithp@keithp.com>
20195
20196 commit 0169e56ad030c0096b1068d00f06957990dfb31f
20197 Author: Keith Packard <keithp@keithp.com>
20198 Date:   Sat Feb 9 20:24:33 2013 -0800
20199
20200     altosuilib/micropeak: Add state markers to micropeak graph
20201     
20202     I think this makes the micropeak graph as functional as the altosui graph
20203     
20204     Signed-off-by: Keith Packard <keithp@keithp.com>
20205
20206 commit 518b16f64f4be096ceff13ab31b96d6909fe3ae2
20207 Author: Keith Packard <keithp@keithp.com>
20208 Date:   Sat Feb 9 19:24:18 2013 -0800
20209
20210     altoslib: Fix altoslib install
20211     
20212     Was using AltosLibdir in several places still
20213     
20214     Signed-off-by: Keith Packard <keithp@keithp.com>
20215
20216 commit 41ede0267250a1d3b26e19cc9dd78f32609f7f0f
20217 Author: Keith Packard <keithp@keithp.com>
20218 Date:   Sat Feb 9 19:23:27 2013 -0800
20219
20220     altosuilib: Initialize graph axes units
20221     
20222     Signed-off-by: Keith Packard <keithp@keithp.com>
20223
20224 commit 9d3da1530c1007d5d1f28062b3947f4aa981bfa8
20225 Author: Keith Packard <keithp@keithp.com>
20226 Date:   Sat Feb 9 02:00:13 2013 -0800
20227
20228     altoslib: Add AltosUnits.graph_format
20229     
20230     This describes the format of numbers used on a graph axis for use with jfreechart
20231     
20232     Signed-off-by: Keith Packard <keithp@keithp.com>
20233
20234 commit ab9caa22ea905844a99e08b5f6d3b072f094283e
20235 Author: Keith Packard <keithp@keithp.com>
20236 Date:   Sat Feb 9 01:59:18 2013 -0800
20237
20238     micropeak: Use altosuilib graphing functions
20239     
20240     Move these out of micropeak and into shared code
20241     
20242     Signed-off-by: Keith Packard <keithp@keithp.com>
20243
20244 commit 9839b0b62d797a8616fc66038e3f3c68e2a214d0
20245 Author: Keith Packard <keithp@keithp.com>
20246 Date:   Sat Feb 9 01:58:23 2013 -0800
20247
20248     altosuilib: Add graphing routines from MicroPeak
20249     
20250     Make these available for AltosUI too
20251     
20252     Signed-off-by: Keith Packard <keithp@keithp.com>
20253
20254 commit fd5e6b80a8be5fac7d913b97570f7e11f70a60ba
20255 Author: Keith Packard <keithp@keithp.com>
20256 Date:   Sat Feb 9 01:55:51 2013 -0800
20257
20258     altosuilib: Remove duplicate AltosUnitsListener.java
20259     
20260     This lives in altoslib
20261     
20262     Signed-off-by: Keith Packard <keithp@keithp.com>
20263
20264 commit c6d7776bbe0b7f84e51af88d1ac2b7d35133a0ad
20265 Author: Bdale Garbee <bdale@gag.com>
20266 Date:   Sat Feb 9 09:09:36 2013 -0700
20267
20268     various updates to the text .. more SMA to BNC adapter references, etc
20269
20270 commit 033c2c4c018343b0e86d5e231bc2dc56e643f8ee
20271 Author: Bdale Garbee <bdale@gag.com>
20272 Date:   Sat Feb 9 08:47:10 2013 -0700
20273
20274     update copyright year to 2013
20275
20276 commit ed200884f3e4fb895ee17ef38a9b6d3371b59625
20277 Author: Bdale Garbee <bdale@gag.com>
20278 Date:   Sat Feb 9 08:44:11 2013 -0700
20279
20280     add pcb overall dimensions and screw sizes the holes are intended for
20281
20282 commit e374f8e5a5f12602ef62518fcf672a231080baee
20283 Author: Keith Packard <keithp@keithp.com>
20284 Date:   Fri Feb 8 23:37:49 2013 -0800
20285
20286     doc: Add TeleMetrum and TeleMini drill templates
20287     
20288     Signed-off-by: Keith Packard <keithp@keithp.com>
20289
20290 commit c3024b759fcdf8b84a2139c1535c573a31eb5c95
20291 Author: Keith Packard <keithp@keithp.com>
20292 Date:   Mon Feb 4 10:51:49 2013 -0800
20293
20294     altos: Add atmosphere.5c
20295     
20296     Shared code for building pressure tables
20297     
20298     Signed-off-by: Keith Packard <keithp@keithp.com>
20299
20300 commit 0e982294961205bef525ecad7172a1f3ab66677f
20301 Author: Keith Packard <keithp@keithp.com>
20302 Date:   Mon Feb 4 09:56:18 2013 -0800
20303
20304     test: Accept micropeak CSV files for micropeak testing
20305     
20306     This interpolates the missing values to provide a reasonable testing
20307     environment for the Micropeak flight firmware.
20308     
20309     Signed-off-by: Keith Packard <keithp@keithp.com>
20310
20311 commit 9aca92a20343a2cf7e05abc7b100852d81f86c0d
20312 Author: Keith Packard <keithp@keithp.com>
20313 Date:   Mon Feb 4 09:51:30 2013 -0800
20314
20315     altos: Document which MPU6000 revs have broken accel values
20316     
20317     From Tridge -- MPU6000 rev C4 and C5 are broken, having accelerometer
20318     values in the wrong range. This commit just adds comments which note
20319     this; experimentation will be required to actually sort out what's
20320     going on.
20321     
20322     Signed-off-by: Keith Packard <keithp@keithp.com>
20323
20324 commit 809eb5b1252a75d489e3ad2fd2a4af701fa0aa52
20325 Author: Keith Packard <keithp@keithp.com>
20326 Date:   Mon Feb 4 09:50:07 2013 -0800
20327
20328     micropeak: Update Makefile to versioned Java libraries
20329     
20330     Library names have changed; deal with it.
20331     
20332     Signed-off-by: Keith Packard <keithp@keithp.com>
20333
20334 commit 7afd76e70c086003a2cd87ce459fda4188c76ad6
20335 Author: Keith Packard <keithp@keithp.com>
20336 Date:   Mon Feb 4 09:49:07 2013 -0800
20337
20338     altoslib: fix Makefile JAR target
20339     
20340     Was referencing stale classAltosLib.stamp instead of new classaltoslib.stamp
20341     
20342     Signed-off-by: Keith Packard <keithp@keithp.com>
20343
20344 commit 8d1d8d2a3c129cdbd55427bcda0f26715b02f1ee
20345 Author: Keith Packard <keithp@keithp.com>
20346 Date:   Tue Jan 29 17:00:43 2013 +1100
20347
20348     Add version numbers to java libraries
20349     
20350     Make our private java library names include a version number so we can
20351     ship and install multiple versions at the same time.
20352     
20353     Signed-off-by: Keith Packard <keithp@keithp.com>
20354
20355 commit 5a3c5de6657d1c26e52015a8acec0cd05e294cef
20356 Author: Keith Packard <keithp@keithp.com>
20357 Date:   Tue Jan 29 14:52:23 2013 +1100
20358
20359     Change AltosLib to altoslib
20360     
20361     Follow Java conventions
20362     
20363     Signed-off-by: Keith Packard <keithp@keithp.com>
20364
20365 commit d05a77992df983b9fa79f0e2b20d2c6b387c180c
20366 Author: Mike Beattie <mike@ethernal.org>
20367 Date:   Tue Jan 29 01:34:48 2013 +1300
20368
20369     altosdroid: initial release to Play Store
20370     
20371     * Add release keystore (encrypted)
20372     * Turn off debugging in UI
20373     * add 'sign' target to Makefile.am
20374     * Update version string in AndroidManifest.xml to match released version of altosui.
20375     
20376     Signed-off-by: Mike Beattie <mike@ethernal.org>
20377
20378 commit 5eb52f54a616f4e89b718d50d77a7b68cf7a4354
20379 Author: Keith Packard <keithp@keithp.com>
20380 Date:   Thu Jan 24 14:18:39 2013 -0800
20381
20382     Mark MicroPeak as a recording altimeter, not a peak-recording altimeter
20383     
20384     Signed-off-by: Keith Packard <keithp@keithp.com>
20385
20386 commit b62097c9d79f848042485234dc46ade60deabc02
20387 Author: Keith Packard <keithp@keithp.com>
20388 Date:   Tue Jan 22 18:50:02 2013 -0800
20389
20390     micropeak: fix 'make clean' and .gitignore
20391     
20392     Make git status clean in micropeak dir
20393     
20394     Signed-off-by: Keith Packard <keithp@keithp.com>
20395
20396 commit 96193d8c09159b81e60851ed90682b9120e15f55
20397 Author: Keith Packard <keithp@keithp.com>
20398 Date:   Tue Jan 22 17:49:25 2013 -0800
20399
20400     micropeak: Add mac build file Info.plist
20401     
20402     Signed-off-by: Keith Packard <keithp@keithp.com>
20403
20404 commit b5c988fb59c1e48baa81b56be9b7b4ab0eebabea
20405 Author: Keith Packard <keithp@keithp.com>
20406 Date:   Tue Jan 22 17:34:44 2013 -0800
20407
20408     Add documentation for the MicroPeak USB interface
20409     
20410     Signed-off-by: Keith Packard <keithp@keithp.com>
20411
20412 commit 9da66ca607664bb81b0986c121518faa4c1cb9fd
20413 Author: Keith Packard <keithp@keithp.com>
20414 Date:   Tue Jan 22 17:29:37 2013 -0800
20415
20416     micropeak: Respect font size preference in MicroPeak stats tab
20417     
20418     This uses the font size preference to adjust the size of the text
20419     shown in the Statistics tab.
20420     
20421     Signed-off-by: Keith Packard <keithp@keithp.com>
20422
20423 commit 3454592169dcb61b81de9af2b631b87e7dd86231
20424 Author: Keith Packard <keithp@keithp.com>
20425 Date:   Sun Jan 20 15:42:05 2013 -0800
20426
20427     altosui: Make initial AltOS window position configurable
20428     
20429     Give the user a choice of nine locations on the screen
20430     
20431     Signed-off-by: Keith Packard <keithp@keithp.com>
20432
20433 commit cf03ab3383b679e6617e8ab7004be91e5a727562
20434 Author: Keith Packard <keithp@keithp.com>
20435 Date:   Sun Jan 20 15:39:53 2013 -0800
20436
20437     altosui: Remove duplicate AltosUIPreferences.java
20438     
20439     This lives in altosuilib now. Several files needed imports of
20440     altosuilib added as a result.
20441     
20442     Signed-off-by: Keith Packard <keithp@keithp.com>
20443
20444 commit e1133481f2208fd16be8196977696da2cce430f3
20445 Author: Keith Packard <keithp@keithp.com>
20446 Date:   Sun Jan 20 15:37:40 2013 -0800
20447
20448     altosui: All of the Altos class is actually in AltosUILib now
20449     
20450     Remove all of the duplicate content, shrinking AltosLib to a simple alias
20451     
20452     Signed-off-by: Keith Packard <keithp@keithp.com>
20453
20454 commit 5d35fd843299b5ff09a36220e6ecd8aefceb9b2c
20455 Author: Keith Packard <keithp@keithp.com>
20456 Date:   Sat Jan 19 18:04:08 2013 -0800
20457
20458     altosui/micropeak: Let native window system place windows
20459     
20460     Instead of forcing windows to our choice of positions, let the host
20461     window pick reasonable locations. This avoids having all of our
20462     windows appear on top of one another.
20463     
20464     Signed-off-by: Keith Packard <keithp@keithp.com>
20465
20466 commit aed990c3a37249a111c783336afade7ecdda7546
20467 Author: Keith Packard <keithp@keithp.com>
20468 Date:   Sat Jan 19 19:30:38 2013 -0800
20469
20470     altosi: callsign could not be configured for AltosUI
20471     
20472     An extra local variable called callsign_value was hiding the object
20473     field by the same name and preventing it from getting set to the right value
20474     
20475     Signed-off-by: Keith Packard <keithp@keithp.com>
20476
20477 commit 4646beb421ab5bec612dfe5e3c57e790b1f41203
20478 Author: Keith Packard <keithp@keithp.com>
20479 Date:   Fri Jan 18 21:53:54 2013 -0800
20480
20481     Tag version 1.1.9.3
20482     
20483     Signed-off-by: Keith Packard <keithp@keithp.com>
20484
20485 commit ce3c9e6be6fde51fb02d692f1ef1222fb5ada8c9
20486 Author: Keith Packard <keithp@keithp.com>
20487 Date:   Wed Jan 16 22:05:32 2013 -0800
20488
20489     micropeak: Fetch Mac and Windows drivers when creating packages
20490     
20491     This downloads the FTDI drivers from FTDI during the build process
20492     
20493     Signed-off-by: Keith Packard <keithp@keithp.com>
20494
20495 commit a04c4f7b07e97d568f8f6f56dd363329817fb52c
20496 Merge: 0c2fa96 bd84dfd
20497 Author: Keith Packard <keithp@keithp.com>
20498 Date:   Wed Jan 16 15:22:46 2013 -0800
20499
20500     Merge branch 'master' into telescience-v0.2
20501
20502 commit bd84dfd8e53d8939281993e062015f67c0dd9fa2
20503 Author: Keith Packard <keithp@keithp.com>
20504 Date:   Wed Jan 16 15:18:31 2013 -0800
20505
20506     micropeak: Show decimeters in stats window
20507     
20508     We're promising this kindof accuracy, so we'd best show it off
20509     
20510     Signed-off-by: Keith Packard <keithp@keithp.com>
20511
20512 commit 540309240a8515116120dbd4403902282ed8c27b
20513 Author: Keith Packard <keithp@keithp.com>
20514 Date:   Wed Jan 16 15:15:49 2013 -0800
20515
20516     altos: Add Kalman filter to MicroPeak
20517     
20518     This filters altitudes more accurately and also allows tracking of
20519     acceleration, which is used to discard height data generated by
20520     ejection charge noise
20521     
20522     Signed-off-by: Keith Packard <keithp@keithp.com>
20523
20524 commit 249ee968305ae6e8fcf0a10e5cf9cc5826bd81dd
20525 Author: Keith Packard <keithp@keithp.com>
20526 Date:   Wed Jan 16 15:13:31 2013 -0800
20527
20528     altos: Add computation of MicroPeak Kalman correction coefficients
20529     
20530     Signed-off-by: Keith Packard <keithp@keithp.com>
20531
20532 commit dd60d85d07b881ac03294a8cf607e469f2e69610
20533 Author: Keith Packard <keithp@keithp.com>
20534 Date:   Wed Jan 16 15:01:12 2013 -0800
20535
20536     altos: Correct model error covariance matrix
20537     
20538     Finally found a couple of decent references on how to set the model
20539     (process) error covariance matrix. The current process matrix turns
20540     out to be correct for a continuous kalman filter (which isn't
20541     realizable, of course). For a discrete filter, the error in modeled
20542     acceleration (we model it as a constant) needs to be propogated to the
20543     speed and position portions of the matrix.
20544     
20545     The correct matrix is seen in this paper:
20546     
20547     On Reduced-Order Kalman Filters For GPS Position Filtering
20548         J. Shima
20549         6/2/2001
20550     
20551     This references an older paper which is supposed to describe the
20552     derivation of the matrix:
20553     
20554     Singer, R.A., “Estimating Optimal Tracking Filter Performance for Manned Maneuvering Targets,”
20555     IEEE Transactions of Aerospace and Electronic Systems, AES-5, July 1970, pp. 473-483.
20556     
20557     This change has a minor effect on the computed correction
20558     coefficients; it should respond more reasonably to acceleration
20559     changes now.
20560     
20561     Signed-off-by: Keith Packard <keithp@keithp.com>
20562
20563 commit 0c2fa9614ffe22901ba0fd089e1e02c362f9fbe0
20564 Merge: 456120d f2b59cf
20565 Author: Keith Packard <keithp@keithp.com>
20566 Date:   Wed Jan 16 10:40:28 2013 -0800
20567
20568     Merge remote-tracking branch 'origin/telescience-v0.2' into telescience-v0.2
20569
20570 commit 456120d201d72c89576a0c8d69b2fcba44169507
20571 Merge: f24c421 994ff76
20572 Author: Keith Packard <keithp@keithp.com>
20573 Date:   Wed Jan 16 10:39:40 2013 -0800
20574
20575     Merge branch 'master' into telescience-v0.2
20576
20577 commit 994ff76a064dcbd3113db771cd9cd9591fd68dea
20578 Author: Keith Packard <keithp@keithp.com>
20579 Date:   Wed Jan 16 10:37:55 2013 -0800
20580
20581     doc: Add simplesect headers to release notes
20582     
20583     This makes it easy to see which changes are from each version of the software.
20584     
20585     Signed-off-by: Keith Packard <keithp@keithp.com>
20586
20587 commit f64fe671b7b4e2389219d672bcea978d0539d4ae
20588 Author: Bdale Garbee <bdale@gag.com>
20589 Date:   Wed Jan 16 10:46:04 2013 -0700
20590
20591     document what the 'Age' value in the AltosUI display means
20592
20593 commit f2b59cf3d30425bc4b12f37e86832e40b7702d3d
20594 Author: Bdale Garbee <bdale@gag.com>
20595 Date:   Wed Jan 16 10:46:04 2013 -0700
20596
20597     document what the 'Age' value in the AltosUI display means
20598
20599 commit f24c4219de9563cf0ef24b763ce54d961c182696
20600 Author: Keith Packard <keithp@keithp.com>
20601 Date:   Sun Jan 13 21:38:26 2013 -0800
20602
20603     altos: Change CC1120 SPI speed to 4MHz.
20604     
20605     Most of the chip can run at 8MHz, but extended register access is
20606     limited to 6.1MHz. Instead of pushing things, just run the SPI bus at
20607     4MHz.
20608     
20609     Signed-off-by: Keith Packard <keithp@keithp.com>
20610
20611 commit a866431e9a063830b407f749ff97a730831e5e4e
20612 Author: Keith Packard <keithp@keithp.com>
20613 Date:   Sun Jan 13 20:50:10 2013 -0800
20614
20615     altos: Crank fast SPI on STM to 8MHz
20616     
20617     With the GPIO pins set to 10MHz now, we can run SPI at the maximum
20618     possible speed (8MHz).
20619     
20620     Signed-off-by: Keith Packard <keithp@keithp.com>
20621
20622 commit 8d885616e2e522b8aea5e7d5398f16d330a0cffa
20623 Author: Keith Packard <keithp@keithp.com>
20624 Date:   Sun Jan 13 20:48:47 2013 -0800
20625
20626     altos: Set STM GPIO output speed for SPI pins correctly
20627     
20628     The GPIO pin settings affect the output impedence, and hence the
20629     maximum speed for SPI. Cranking these to suitable values allows SPI to
20630     run at full speed.
20631     
20632     Signed-off-by: Keith Packard <keithp@keithp.com>
20633
20634 commit f2810aa33fc6fe254761a0044c62c7b23e59e6bc
20635 Author: Keith Packard <keithp@keithp.com>
20636 Date:   Sun Jan 13 20:48:08 2013 -0800
20637
20638     altos: Build telescience-v0.2
20639     
20640     Signed-off-by: Keith Packard <keithp@keithp.com>
20641
20642 commit 3645cb6578ec2a11ab7b0f6d435c6de22ca02a9f
20643 Author: Keith Packard <keithp@keithp.com>
20644 Date:   Sun Jan 13 10:31:59 2013 -0800
20645
20646     Update avr ao_spi_slave code to match API changes
20647     
20648     Made the interface use void * for pointers and uint16_t for lengths
20649     
20650     Signed-off-by: Keith Packard <keithp@keithp.com>
20651
20652 commit 7883744526156879ad63256ab12d959df56d5252
20653 Author: Keith Packard <keithp@keithp.com>
20654 Date:   Sat Jan 12 20:11:38 2013 -0800
20655
20656     altos: Initial telescience bits
20657     
20658     These might do something, and should at least bring up USB
20659     
20660     Signed-off-by: Keith Packard <keithp@keithp.com>
20661
20662 commit 670034eef48d63cdaec8d271fa93da984ffe2ea9
20663 Merge: 8c5ebaf d374d6b
20664 Author: Bdale Garbee <bdale@gag.com>
20665 Date:   Sat Jan 12 10:57:22 2013 -0700
20666
20667     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
20668
20669 commit d374d6be7eb040457f4df6c38b5d057f26ee741c
20670 Author: Keith Packard <keithp@keithp.com>
20671 Date:   Sat Jan 12 09:45:31 2013 -0800
20672
20673     micropeak: Record samples before boost detect
20674     
20675     This saves a ring of 16 samples while waiting for boost, and then goes
20676     back through those looking for the first sample higher than the ground
20677     and writes the remaining ones to the log so that we get a more
20678     complete log of the flight
20679     
20680     Signed-off-by: Keith Packard <keithp@keithp.com>
20681
20682 commit 85baf657e7ea6debbed9effc6f8daff7ef09a5d8
20683 Author: Keith Packard <keithp@keithp.com>
20684 Date:   Thu Jan 10 23:42:41 2013 -0800
20685
20686     altosui: Reference altosuilib.jar and altoslib.jar from original dirs
20687     
20688     The symlinks may not be created when the build is getting run as the
20689     dependencies aren't in place (thanks, automake).
20690     
20691     Signed-off-by: Keith Packard <keithp@keithp.com>
20692
20693 commit 962e3bd0461f187cd599ba54e7129c84f97d4c4d
20694 Author: Keith Packard <keithp@keithp.com>
20695 Date:   Thu Jan 10 22:11:36 2013 -0800
20696
20697     altosui,micropeak: Link altoslib.jar and altosuilib.jar before compiling
20698     
20699     The symlinks for the libraries have to be present before compiling stuff.
20700     
20701     Signed-off-by: Keith Packard <keithp@keithp.com>
20702
20703 commit 9f6b1570277c326c00d5da274f608fbdeb91c911
20704 Author: Keith Packard <keithp@keithp.com>
20705 Date:   Thu Jan 10 21:42:23 2013 -0800
20706
20707     micropeak: Note when libaltos fails
20708     
20709     Not getting any device list back from MicroUSB means the library
20710     wasn't found, so pop up a dialog box explaining the situation.
20711     
20712     Signed-off-by: Keith Packard <keithp@keithp.com>
20713
20714 commit c3e807ffcd34d514f36bc11adbae9337991a1743
20715 Author: Keith Packard <keithp@keithp.com>
20716 Date:   Thu Jan 10 21:41:35 2013 -0800
20717
20718     micropeak: Create 'micropeak' script correctly
20719     
20720     Add altoslibdir, remove -cp argument
20721     
20722     Signed-off-by: Keith Packard <keithp@keithp.com>
20723
20724 commit 98e74150040e444ed6480ef3d107caa54c205ef9
20725 Author: Keith Packard <keithp@keithp.com>
20726 Date:   Thu Jan 10 21:38:15 2013 -0800
20727
20728     micropeak: Demonstrate how to hide various parts of the graph
20729     
20730     This just shows how to disable a series and axis; it's not used here.
20731     
20732     Signed-off-by: Keith Packard <keithp@keithp.com>
20733
20734 commit 505ef49a041740fe7cbb5c537b68d22e5fb6c0be
20735 Author: Keith Packard <keithp@keithp.com>
20736 Date:   Thu Jan 10 21:37:18 2013 -0800
20737
20738     micropeak: Report recorded apogee instead of searching flight data
20739     
20740     This makes sure we report the true apogee value instead of looking for
20741     the maximum height value in the flight data, in case the flight
20742     recording ended before the apogee was reached.
20743     
20744     Signed-off-by: Keith Packard <keithp@keithp.com>
20745
20746 commit e94f9547a566c74c30b6321bc073b8bdcb071604
20747 Author: Keith Packard <keithp@keithp.com>
20748 Date:   Thu Jan 10 21:34:24 2013 -0800
20749
20750     Fix up 'make fat' to build all libs and micropeak too
20751     
20752     There are now three libraries to build for both altosui and micropeak.
20753     
20754     Signed-off-by: Keith Packard <keithp@keithp.com>
20755
20756 commit 12a9bd0479db25cbe45c0385913315cc1e0bc892
20757 Author: Keith Packard <keithp@keithp.com>
20758 Date:   Thu Jan 10 21:26:20 2013 -0800
20759
20760     libaltos: Need to check for tty/ttyACMx before ttyACMx
20761     
20762     Otherwise, we'll find 'tty' when looking for 'ttyACMx' and no good
20763     will come from that
20764     
20765     Signed-off-by: Keith Packard <keithp@keithp.com>
20766
20767 commit 1ed6b13e87c1cc2d6618b6ba3a293ea6e3b5752e
20768 Merge: acff2f4 d409417
20769 Author: Keith Packard <keithp@keithp.com>
20770 Date:   Thu Jan 10 21:48:12 2013 -0800
20771
20772     Merge remote-tracking branch 'origin/micropeak-logging'
20773
20774 commit acff2f466031fd1a8533fc315411c3734a8bacc6
20775 Author: Keith Packard <keithp@keithp.com>
20776 Date:   Thu Jan 10 21:27:32 2013 -0800
20777
20778     altos: Time out reading packet data from cc1120 after 100ms
20779     
20780     Sometimes the radio will give a spurious wakeup indicating that a
20781     preamble seems to have arrived, but no packet data will appear. In
20782     this case, abandon the packet reception and go back to waiting for a
20783     preamble again. This releases the SPI bus for other users and also
20784     avoids missing packets.
20785     
20786     Signed-off-by: Keith Packard <keithp@keithp.com>
20787
20788 commit f715b5da3424adacc5a7f1e001e1dd7fa6f50385
20789 Author: Keith Packard <keithp@keithp.com>
20790 Date:   Wed Jan 9 15:29:01 2013 -0800
20791
20792     altoslib: Clean up AltosRecord clone methods
20793     
20794     Make the AltosRecord version abstract and then implement suitable
20795     versions in each subclass by creating copying constructors for each
20796     class.
20797     
20798     Signed-off-by: Keith Packard <keithp@keithp.com>
20799
20800 commit 42733d2823b1ecf54c03881fc120067868c0ff4c
20801 Author: Keith Packard <keithp@keithp.com>
20802 Date:   Wed Jan 9 15:23:46 2013 -0800
20803
20804     altoslib: Don't smash existing GPS pad alt after boost
20805     
20806     Leave the existing GPS pad altitude value in place after boost by
20807     checking to see if it was ever computed before resetting it to the
20808     barometric pad altitude. This makes GPS height values relative to the pad.
20809     
20810     Signed-off-by: Keith Packard <keithp@keithp.com>
20811
20812 commit 8c5ebaf88b459b09924753a8077393a7b0639133
20813 Merge: 59f355f d7d259c
20814 Author: Bdale Garbee <bdale@gag.com>
20815 Date:   Tue Jan 8 22:12:17 2013 -0700
20816
20817     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
20818
20819 commit d409417ff8e9ed9d406bf1c04542a4ecb574768b
20820 Author: Keith Packard <keithp@keithp.com>
20821 Date:   Sun Jan 6 13:20:25 2013 -0800
20822
20823     altosui: Create .dmg file for Mac OS X installations
20824     
20825     Easier for users than a zip file
20826     
20827     Signed-off-by: Keith Packard <keithp@keithp.com>
20828
20829 commit 2582e9b45bb81ff70fbd5c8581370c8c1b5bd5e5
20830 Author: Keith Packard <keithp@keithp.com>
20831 Date:   Sun Jan 6 13:00:00 2013 -0800
20832
20833     micropeak: Add ReadMe.rtf to Mac distribution
20834     
20835     There are *two* steps to installing MicroPeak on Mac OSX. Best help
20836     out the poor user by explaining that.
20837     
20838     Signed-off-by: Keith Packard <keithp@keithp.com>
20839
20840 commit 0f05b1996122b6c6bce81ca33e85c2a65c3ded18
20841 Author: Keith Packard <keithp@keithp.com>
20842 Date:   Sun Jan 6 12:52:25 2013 -0800
20843
20844     micropeak: Create Mac OS X package
20845     
20846     Includes the FTDI driver and the MicroPeak app
20847     
20848     Signed-off-by: Keith Packard <keithp@keithp.com>
20849
20850 commit d663da13db60e1200535282ee1a0ea6305cad98c
20851 Author: Keith Packard <keithp@keithp.com>
20852 Date:   Sat Jan 5 10:59:26 2013 -0800
20853
20854     micropeak: Suggest filenames for saving data
20855     
20856     Uses the format '<year>-<month>-<day>-flight-<number>.mpd'
20857     
20858     Signed-off-by: Keith Packard <keithp@keithp.com>
20859
20860 commit 0c9eecfae02e8499e7c3d53a4386f026c54b04cd
20861 Author: Keith Packard <keithp@keithp.com>
20862 Date:   Sat Jan 5 10:38:20 2013 -0800
20863
20864     micropeak: Create .dmg file for apple. Create micropeak-jdb script
20865     
20866     Signed-off-by: Keith Packard <keithp@keithp.com>
20867
20868 commit 20d54cae1eeca6c5d05bfacbafd77c8aa72247c9
20869 Author: Keith Packard <keithp@keithp.com>
20870 Date:   Sat Jan 5 10:37:30 2013 -0800
20871
20872     micropeak: Use new libaltos entry point for FTDI devices
20873     
20874     Signed-off-by: Keith Packard <keithp@keithp.com>
20875
20876 commit e7e71e2042f2bfc24adcc57cecfe26368eb03e8a
20877 Author: Keith Packard <keithp@keithp.com>
20878 Date:   Sat Jan 5 10:36:50 2013 -0800
20879
20880     micropeak: Move raw view caret to top. Make raw text uneditable
20881     
20882     Signed-off-by: Keith Packard <keithp@keithp.com>
20883
20884 commit 70c7674b53d77e9995a235bb2dc455cb53d9e81e
20885 Author: Keith Packard <keithp@keithp.com>
20886 Date:   Sat Jan 5 10:36:40 2013 -0800
20887
20888     micropeak: Remove debug printf for command line
20889     
20890     Signed-off-by: Keith Packard <keithp@keithp.com>
20891
20892 commit 746ae98829a0fc15577ae0f7b506112178f481e3
20893 Author: Keith Packard <keithp@keithp.com>
20894 Date:   Sat Jan 5 10:35:20 2013 -0800
20895
20896     Add separate code path for listing FTDI devices
20897     
20898     This lets the library do different things for FTDI devices, as is
20899     required on Windows (for instance)
20900     
20901     Signed-off-by: Keith Packard <keithp@keithp.com>
20902
20903 commit ca284d8bef2f4bd360eaec58048ba9abdafc55bd
20904 Author: Keith Packard <keithp@keithp.com>
20905 Date:   Thu Jan 3 18:14:40 2013 -0800
20906
20907     micropeak: Use data.export for Raw display. Change to MPH
20908     
20909     data.export already knows how to format stuff, so use that to
20910     construct the raw data presentation for the GUI too.
20911     
20912     Signed-off-by: Keith Packard <keithp@keithp.com>
20913
20914 commit 81088b42b3ea899c8d1b3f09ee4fe24378fa03c9
20915 Author: Keith Packard <keithp@keithp.com>
20916 Date:   Thu Jan 3 17:40:19 2013 -0800
20917
20918     micropeak: Export in lots of units
20919     
20920     meters, feet, mach and gs
20921     
20922     Signed-off-by: Keith Packard <keithp@keithp.com>
20923
20924 commit f20781010a6560b7b359af269c502d098917c446
20925 Author: Keith Packard <keithp@keithp.com>
20926 Date:   Thu Jan 3 17:31:01 2013 -0800
20927
20928     micropeak: Add command line export option
20929     
20930     micropeak --export <foo.mpd> will create <foo.csv> full of useful data.
20931     
20932     Signed-off-by: Keith Packard <keithp@keithp.com>
20933
20934 commit 36e9603f74b85776ac049758021b51909161aeb1
20935 Author: Keith Packard <keithp@keithp.com>
20936 Date:   Thu Jan 3 17:30:29 2013 -0800
20937
20938     micropeak: Add Mac OS Info.plist file
20939     
20940     needed to build a Mac OS X application
20941     
20942     Signed-off-by: Keith Packard <keithp@keithp.com>
20943
20944 commit 722dc277dee915dcd09d3d65c0ee19173b114ef7
20945 Author: Keith Packard <keithp@keithp.com>
20946 Date:   Wed Jan 2 16:30:44 2013 -0800
20947
20948     micropeak: Change graph tooltip units on the fly
20949     
20950     Make sure the tooltips show the right units when they change
20951     
20952     Signed-off-by: Keith Packard <keithp@keithp.com>
20953
20954 commit 9e4c5b0a6ed3594cff6ab71398c172daa7c67177
20955 Author: Keith Packard <keithp@keithp.com>
20956 Date:   Wed Jan 2 16:19:33 2013 -0800
20957
20958     micropeak: Use JTextArea instead of TextArea
20959     
20960     Looks nicer and doesn't appear to have the same weird clipping problem
20961     
20962     Signed-off-by: Keith Packard <keithp@keithp.com>
20963
20964 commit 1979063928f1cdfc75c01ec098164c2822a5138d
20965 Author: Keith Packard <keithp@keithp.com>
20966 Date:   Wed Jan 2 16:07:49 2013 -0800
20967
20968     altosuilib: Fix install issues on Linux
20969     
20970     altosuilib.jar wasn't getting installed
20971     micropeak was using the wrong name
20972     
20973     Signed-off-by: Keith Packard <keithp@keithp.com>
20974
20975 commit 31fa139578a86821844e3e2efb1a84bdea4f1370
20976 Author: Keith Packard <keithp@keithp.com>
20977 Date:   Wed Jan 2 12:24:44 2013 -0800
20978
20979     micropeak: Add view of raw data in GUI
20980     
20981     Looks just like the export file
20982     
20983     Signed-off-by: Keith Packard <keithp@keithp.com>
20984
20985 commit 2c423d9287c6b9ea7233f5e3430682cb1c865da1
20986 Author: Keith Packard <keithp@keithp.com>
20987 Date:   Wed Jan 2 11:44:32 2013 -0800
20988
20989     micropeak: Add CSV export
20990     
20991     Signed-off-by: Keith Packard <keithp@keithp.com>
20992
20993 commit 93d640de65a1ecedfef89c96521c21632f96f372
20994 Author: Keith Packard <keithp@keithp.com>
20995 Date:   Wed Jan 2 11:22:11 2013 -0800
20996
20997     micropoint: Add MicroDataPoint
20998     
20999     This holds height/speed/accel data all in one place
21000     
21001     Signed-off-by: Keith Packard <keithp@keithp.com>
21002
21003 commit 0933f2ed5791cfdc28242cd60be3942556f4ed20
21004 Author: Keith Packard <keithp@keithp.com>
21005 Date:   Wed Jan 2 10:48:56 2013 -0800
21006
21007     altoslib: Remove unused fake product_micropeak_serial
21008     
21009     Code cleanups have made this no longer useful
21010     
21011     Signed-off-by: Keith Packard <keithp@keithp.com>
21012
21013 commit eb670e9b7576563d747ae5c9416371f145455ec1
21014 Author: Keith Packard <keithp@keithp.com>
21015 Date:   Wed Jan 2 09:50:09 2013 -0800
21016
21017     altosui: Remove duplicate AltosUSBDevice
21018     
21019     Signed-off-by: Keith Packard <keithp@keithp.com>
21020
21021 commit dc404bee7163a369eb1d95e0942b676bd3f95574
21022 Author: Keith Packard <keithp@keithp.com>
21023 Date:   Wed Jan 2 09:41:42 2013 -0800
21024
21025     altosui: Use shared AltosUIListener
21026     
21027     Signed-off-by: Keith Packard <keithp@keithp.com>
21028
21029 commit f0bbd3e2571336b5f5872759b5010148325efbaa
21030 Author: Keith Packard <keithp@keithp.com>
21031 Date:   Wed Jan 2 09:40:13 2013 -0800
21032
21033     altosui: Use shared AltosUIFrame and AltosUIDialog
21034     
21035     Signed-off-by: Keith Packard <keithp@keithp.com>
21036
21037 commit ae09bd641a86970763380f3028f987ffcb791020
21038 Author: Keith Packard <keithp@keithp.com>
21039 Date:   Wed Jan 2 09:33:36 2013 -0800
21040
21041     altosui: Use shared AltosFontListener class
21042     
21043     Signed-off-by: Keith Packard <keithp@keithp.com>
21044
21045 commit 8af405f1ac4d1b930f10465fd0270a49176f16d1
21046 Author: Keith Packard <keithp@keithp.com>
21047 Date:   Wed Jan 2 09:31:35 2013 -0800
21048
21049     altosui: Use shared AltosDeviceDialog
21050     
21051     Signed-off-by: Keith Packard <keithp@keithp.com>
21052
21053 commit 605b752080827bb59fcff5af9f1eab9fd5dad76b
21054 Author: Keith Packard <keithp@keithp.com>
21055 Date:   Wed Jan 2 09:09:10 2013 -0800
21056
21057     altosui: Remove AltosVersion.java
21058     
21059     Version data now stored in AltosUIVersion.java
21060     
21061     Signed-off-by: Keith Packard <keithp@keithp.com>
21062
21063 commit 5ce43661834920c3a8f3a1b6e1c555fb952b512d
21064 Author: Keith Packard <keithp@keithp.com>
21065 Date:   Wed Jan 2 09:06:41 2013 -0800
21066
21067     altosui: Use altosuilib for configuration
21068     
21069     Start moving to shared UI code
21070     
21071     Signed-off-by: Keith Packard <keithp@keithp.com>
21072
21073 commit 8a5666bcf4949b846589c000e1620afe39593f57
21074 Author: Keith Packard <keithp@keithp.com>
21075 Date:   Wed Jan 2 09:06:22 2013 -0800
21076
21077     libaltos: Remove a couple of spurious debug printfs
21078     
21079     Signed-off-by: Keith Packard <keithp@keithp.com>
21080
21081 commit 9efc57e4052e3c11218973f7666ad18ea5cf2a5a
21082 Author: Keith Packard <keithp@keithp.com>
21083 Date:   Tue Jan 1 23:15:14 2013 -0800
21084
21085     Rename AltosConfigureUI to AltosUIConfigure
21086     
21087     Leave AltosConfigureUI for AltosUI
21088     
21089     Signed-off-by: Keith Packard <keithp@keithp.com>
21090
21091 commit 103eaa674be7582437aa850f0fd82788e10f244b
21092 Author: Keith Packard <keithp@keithp.com>
21093 Date:   Tue Jan 1 23:10:04 2013 -0800
21094
21095     micropeak: Check CRC on downloaded
21096     
21097     Signed-off-by: Keith Packard <keithp@keithp.com>
21098
21099 commit 4dae5b876b089c17c87c72df2ad2fa5ec4f1657c
21100 Author: Keith Packard <keithp@keithp.com>
21101 Date:   Tue Jan 1 23:03:29 2013 -0800
21102
21103     Build micropeak by default
21104     
21105     Signed-off-by: Keith Packard <keithp@keithp.com>
21106
21107 commit 3ac109132d1878abbd277ae21215716326404781
21108 Author: Keith Packard <keithp@keithp.com>
21109 Date:   Tue Jan 1 18:20:23 2013 -0800
21110
21111     Build installable versions of MicroPeak GUI
21112     
21113     Makes windows/mac/linux versions. Windows version appears to work on
21114     Wine at least.
21115     
21116     Signed-off-by: Keith Packard <keithp@keithp.com>
21117
21118 commit d94ceed48be439f368d597bf06ed1e8adc4ef46b
21119 Author: Keith Packard <keithp@keithp.com>
21120 Date:   Tue Jan 1 17:10:55 2013 -0800
21121
21122     micropeak: Add 'Close' menu item. Fix start location
21123     
21124     Let the window system pick a spot to place the application
21125     windows. This avoids having them all sit on top of one another.
21126     
21127     Signed-off-by: Keith Packard <keithp@keithp.com>
21128
21129 commit 982b272920fcb444fd399941cabe613d8ac7104b
21130 Author: Keith Packard <keithp@keithp.com>
21131 Date:   Tue Jan 1 16:57:31 2013 -0800
21132
21133     micropeak: Fix chart colors
21134     
21135     Need to apply custom colors after setting the theme
21136     
21137     Signed-off-by: Keith Packard <keithp@keithp.com>
21138
21139 commit d83587c3c66b730cc54ca153714eee520ee40b2c
21140 Author: Keith Packard <keithp@keithp.com>
21141 Date:   Tue Jan 1 15:30:11 2013 -0800
21142
21143     micropeak is code complete now.
21144     
21145     Added save and download functionality. Removed 'new' from file menu.
21146     
21147     Signed-off-by: Keith Packard <keithp@keithp.com>
21148
21149 commit 65b512c890a3ccf487655b79305ab1cfcf49259c
21150 Merge: 434e946 d7d259c
21151 Author: Keith Packard <keithp@keithp.com>
21152 Date:   Mon Dec 31 14:24:59 2012 -0800
21153
21154     Merge remote-tracking branch 'origin/master' into micropeak-logging
21155
21156 commit 434e946aa79b5a7e60799f996887bc6467889b92
21157 Author: Keith Packard <keithp@keithp.com>
21158 Date:   Mon Dec 31 14:22:37 2012 -0800
21159
21160     Allow CC1120 to sit on other SPI busses
21161     
21162     Reading the incoming data bypasses the SPI API and touches the SPI
21163     data register directly; which port that is needs to be specified in
21164     the pins file
21165     
21166     Signed-off-by: Keith Packard <keithp@keithp.com>
21167
21168 commit 2bd6aca54fc465995d6985c8799cd0d016c9a543
21169 Author: Keith Packard <keithp@keithp.com>
21170 Date:   Mon Dec 31 14:17:26 2012 -0800
21171
21172     micropeak: Add flight stats pane
21173     
21174     Shows graph or stats in alternate panes
21175     
21176     Signed-off-by: Keith Packard <keithp@keithp.com>
21177
21178 commit 56a1210a7b04a3623d19ec282f26fecc79c126dd
21179 Author: Keith Packard <keithp@keithp.com>
21180 Date:   Mon Dec 31 11:42:57 2012 -0800
21181
21182     micropeak: Use altosuilib
21183     
21184     This removes a pile of code stolen from altosui
21185     
21186     Signed-off-by: Keith Packard <keithp@keithp.com>
21187
21188 commit 6db192898eebf750c4d51516eff7916bc4da493b
21189 Author: Keith Packard <keithp@keithp.com>
21190 Date:   Mon Dec 31 11:38:53 2012 -0800
21191
21192     altoslib: Add units change notification list
21193     
21194     This allows the UI to automatically respond to changes in the
21195     preferred units.
21196     
21197     Signed-off-by: Keith Packard <keithp@keithp.com>
21198
21199 commit 03496dc47372c40f7faae1766b0e729a1feeab7c
21200 Author: Keith Packard <keithp@keithp.com>
21201 Date:   Mon Dec 31 11:32:56 2012 -0800
21202
21203     Create altosuilib to share code between altosui and micropeak
21204     
21205     Need to convert altosui to using it, but that shouldn't be hard
21206     
21207     Signed-off-by: Keith Packard <keithp@keithp.com>
21208
21209 commit d7d259c7b3eedcc1c185d2b7e3c33e829bd7ce96
21210 Author: Keith Packard <keithp@gag.com>
21211 Date:   Fri Dec 28 23:05:31 2012 -0700
21212
21213     altos: megadongle radio int is C13, not C14
21214     
21215     Hard to get interrupts when listening to the wrong pin
21216     
21217     Signed-off-by: Keith Packard <keithp@gag.com>
21218
21219 commit f7a56152808c7838c1886884bb77de2705ab076c
21220 Merge: daf8776 b70ca5e
21221 Author: Keith Packard <keithp@keithp.com>
21222 Date:   Fri Dec 28 21:50:13 2012 -0800
21223
21224     Merge remote-tracking branch 'origin/master' into micropeak-logging
21225
21226 commit 59f355f5288b42b2e47743d06e41e55819a55f64
21227 Merge: 099d2b0 b70ca5e
21228 Author: Bdale Garbee <bdale@gag.com>
21229 Date:   Fri Dec 28 22:30:26 2012 -0700
21230
21231     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
21232
21233 commit b70ca5eaf1c3d60bd9adf6835e1247f4147ca9c8
21234 Author: Keith Packard <keithp@gag.com>
21235 Date:   Fri Dec 28 19:35:46 2012 -0700
21236
21237     altos: Fix MegaDongle CC1120 chip select pin
21238     
21239     It's on A0, not C5
21240     
21241     Signed-off-by: Keith Packard <keithp@gag.com>
21242
21243 commit a6e116515f5e4522adbfcd1900885c2a6034b57c
21244 Author: Keith Packard <keithp@gag.com>
21245 Date:   Fri Dec 28 19:34:33 2012 -0700
21246
21247     altos: Fix cc1120 debug code to build on megadongle
21248     
21249     RDF function had changed, and APRS isn't available on megadongle.
21250     
21251     Signed-off-by: Keith Packard <keithp@gag.com>
21252
21253 commit daf8776f8646ba187f1a17f7aae797503bed3f2a
21254 Author: Keith Packard <keithp@keithp.com>
21255 Date:   Fri Dec 28 16:34:48 2012 -0800
21256
21257     Lots more work on the MicroPeak application
21258     
21259     Signed-off-by: Keith Packard <keithp@keithp.com>
21260
21261 commit 099d2b0ea59d825bd69a3fbb5523b9cbb9430ce8
21262 Author: Bdale Garbee <bdale@gag.com>
21263 Date:   Fri Dec 28 15:36:24 2012 -0700
21264
21265     update stlink-pins document to make it clear 4-pin MicroMaTch is our
21266     standard STM32L programming connector, and the big MM thing was v0.1 only
21267
21268 commit 9da9adc2718928de2af65a68cddbcc636cc3e9e8
21269 Author: Keith Packard <keithp@keithp.com>
21270 Date:   Tue Dec 25 14:45:49 2012 -0800
21271
21272     Add file chooser for MicroPeak
21273     
21274     Needs reasonable directory tracking
21275     
21276     Signed-off-by: Keith Packard <keithp@keithp.com>
21277
21278 commit bf8e1b6eecb2bae12ffdbd730bd6ec12ccdaf23a
21279 Author: Keith Packard <keithp@keithp.com>
21280 Date:   Tue Dec 25 14:23:29 2012 -0800
21281
21282     Start building MicroPeak GUI tool
21283     
21284     Download, save and analyze MicroPeak flight data
21285     
21286     Signed-off-by: Keith Packard <keithp@keithp.com>
21287
21288 commit 868ef0c9c4b208c02a87180b0eede329369bdc77
21289 Merge: 669cde8 57487e7
21290 Author: Keith Packard <keithp@keithp.com>
21291 Date:   Tue Dec 25 14:20:42 2012 -0800
21292
21293     Merge branch 'master' into micropeak-logging
21294
21295 commit 669cde8a87d88ceae89e369c1d38b88c9f8198cf
21296 Author: Keith Packard <keithp@keithp.com>
21297 Date:   Tue Dec 25 14:19:19 2012 -0800
21298
21299     Move libaltos to top level
21300     
21301     This will let it be shared by the new MicroPeak gui
21302     
21303     Signed-off-by: Keith Packard <keithp@keithp.com>
21304
21305 commit 57487e78b90465a21c87cf30deb0aeaba0887332
21306 Author: Keith Packard <keithp@keithp.com>
21307 Date:   Tue Dec 18 23:15:20 2012 -0800
21308
21309     altos: Actually record ground averages for 6dof sensor
21310     
21311     This gets the long-term averages for the 6dof sensors recorded into
21312     the first flight log record.
21313     
21314     Signed-off-by: Keith Packard <keithp@keithp.com>
21315
21316 commit 244415c515f21328cffe88d1369949a4af49a177
21317 Author: Keith Packard <keithp@keithp.com>
21318 Date:   Tue Dec 18 22:59:36 2012 -0800
21319
21320     altosui: Clean up graph a bit, remove shapes, improve tooltips
21321     
21322     Sometimes graphs would get shapes at each datapoint which was
21323     annoyingly cluttered. And, the tooltips used a format that was
21324     difficult to interpret.
21325     
21326     Signed-off-by: Keith Packard <keithp@keithp.com>
21327
21328 commit d7d35b0bd86b912c43a21a275347fca201079847
21329 Author: Keith Packard <keithp@keithp.com>
21330 Date:   Tue Dec 18 00:39:37 2012 -0800
21331
21332     altos: Add distinct LED pattern before writing log data
21333     
21334     Otherwise, the whole log looks like a an extra altitude digit.
21335     
21336     Signed-off-by: Keith Packard <keithp@keithp.com>
21337
21338 commit 23dc9a63ae8bc982d9352cfb7a3f508d8a08c374
21339 Author: Keith Packard <keithp@keithp.com>
21340 Date:   Mon Dec 17 22:58:49 2012 -0800
21341
21342     altos: Make micropeak 'serial' interface work
21343     
21344     I prototyped the mpserial interface on a breadboard and tuned the
21345     circuit to register the LED correctly. Then adjusted the serial code
21346     to send bits at the right speed and format.
21347     
21348     The logging contents are now in hexdecimal with a CCITT CRC-16
21349     computed to verify correct reception.
21350     
21351     Signed-off-by: Keith Packard <keithp@keithp.com>
21352
21353 commit b1d37be4c024e9690107c693d9819229025966fa
21354 Author: Keith Packard <keithp@keithp.com>
21355 Date:   Mon Dec 17 17:03:41 2012 -0800
21356
21357     altos: Average MPU6000 values on ground for later use
21358     
21359     Having long-term ground averages recorded to the eeprom file will make
21360     post-flight analysis of the data better.
21361     
21362     Signed-off-by: Keith Packard <keithp@keithp.com>
21363
21364 commit b6c9e8ffc87481a23ba90fa22df7c9421e2cd6a6
21365 Author: Keith Packard <keithp@keithp.com>
21366 Date:   Sun Dec 16 16:52:15 2012 -0800
21367
21368     altos: Re-enable beeper on megametrum
21369     
21370     I turned it off during radio testing and forgot to fix that before committing...
21371     
21372     Signed-off-by: Keith Packard <keithp@keithp.com>
21373
21374 commit dd7c30324461b2aed83b86bfe4323180664123cf
21375 Author: Keith Packard <keithp@keithp.com>
21376 Date:   Sun Dec 16 16:08:33 2012 -0800
21377
21378     altos: Add new MARC status pin interrupt bits to megadongle
21379     
21380     Signed-off-by: Keith Packard <keithp@keithp.com>
21381
21382 commit dfff41c2bec16fe4c7b198a4720eb40d8e740ac4
21383 Merge: 22a58b0 00bc1a0
21384 Author: Keith Packard <keithp@keithp.com>
21385 Date:   Sun Dec 16 16:06:41 2012 -0800
21386
21387     Merge branch 'aprs' into 'master'
21388
21389 commit 22a58b0f9b82ea8c7abeda79ca7a4cd21c3dc93c
21390 Author: Keith Packard <keithp@keithp.com>
21391 Date:   Sun Dec 16 16:04:05 2012 -0800
21392
21393     altos: Wire up another CC1120 GPIO to get MARC status changes
21394     
21395     When the radio drops out of RX or TX mode due to an error, it changes
21396     the MARC status, and sends pulse down a configured GPIO. Use this to
21397     tell when something 'bad' happened during TX or RX so that we can
21398     recover from losing the SPI bus in the middle of transmission or
21399     reception.
21400     
21401     Without this, the radio would change state and we'd never know,
21402     leaving the radio code waiting for an interrupt that would never arrive.
21403     
21404     Signed-off-by: Keith Packard <keithp@keithp.com>
21405
21406 commit 4e3ac3f2038cc3a43252fc8f820a1373a637ab83
21407 Author: Keith Packard <keithp@keithp.com>
21408 Date:   Sun Dec 16 13:31:45 2012 -0800
21409
21410     altos: Test APRS rounding by using coordinates near the boundary
21411     
21412     This selects lat/lon and altitude near the rounding boundary to check
21413     that the resulting APRS data is correctly computed.
21414     
21415     Signed-off-by: Keith Packard <keithp@keithp.com>
21416
21417 commit 9bc701ce1132f04ec90ef22e6a7a90c67918737b
21418 Author: Keith Packard <keithp@keithp.com>
21419 Date:   Sun Dec 16 13:30:20 2012 -0800
21420
21421     altos: Document what HAS_BOOT_RADIO does in the m25 driver
21422     
21423     HAS_BOOT_RADIO causes the m25 driver to abort any ongoing receive in
21424     case that is holding the SPI bus.
21425     
21426     Signed-off-by: Keith Packard <keithp@keithp.com>
21427
21428 commit 6b4cfd8719e3fd4a2904369e176182c870a3b43c
21429 Author: Keith Packard <keithp@keithp.com>
21430 Date:   Sun Dec 16 13:29:31 2012 -0800
21431
21432     altos: Round APRS data correctly
21433     
21434     Apply rounding once at the start of the computation, then truncate
21435     after that.
21436     
21437     Signed-off-by: Keith Packard <keithp@keithp.com>
21438
21439 commit 00bc1a090a294e103370b8ab0a0fe5d7a2acfe92
21440 Author: Keith Packard <keithp@keithp.com>
21441 Date:   Sun Dec 16 13:25:54 2012 -0800
21442
21443     altoslib: unconfigured radio frequency data is now -1, not 0
21444     
21445     This changed when AltosConfigData was cleaned up, so now frequency
21446     settings must check for positive numbers rather than non-zero.
21447     
21448     Signed-off-by: Keith Packard <keithp@keithp.com>
21449
21450 commit 034dfc4f9bef049b1fb5704873dd76f6a3a9949d
21451 Author: Keith Packard <keithp@keithp.com>
21452 Date:   Sat Dec 15 15:07:07 2012 -0800
21453
21454     doc: Add warning about matching battery voltage.
21455     
21456     Signed-off-by: Keith Packard <keithp@keithp.com>
21457
21458 commit 4925a6f2f4edd5b54641a5240030e5c0e3e95db6
21459 Author: Keith Packard <keithp@keithp.com>
21460 Date:   Sat Dec 15 14:47:22 2012 -0800
21461
21462     doc: Add paragraph noting differences in JST polarity
21463     
21464     Looks like the 'standard' polarity for 3.7V lipos using JST connectors
21465     in RC aircraft is swapped from what Spark Fun uses. Note that in the
21466     docs to try and keep people from wrecking hardware.
21467     
21468     Signed-off-by: Keith Packard <keithp@keithp.com>
21469
21470 commit 6fa1ec0dbf2a4eda8d061c67b3779b83b88f29f0
21471 Merge: f140931 73422bf
21472 Author: Keith Packard <keithp@keithp.com>
21473 Date:   Fri Dec 14 19:29:50 2012 -0800
21474
21475     Merge branch 'micropeak-1.1'
21476
21477 commit f1409311761d65e85ac08c38c9b9a0114cc8f535
21478 Author: Keith Packard <keithp@keithp.com>
21479 Date:   Fri Dec 14 19:28:49 2012 -0800
21480
21481     altoslib: Discard previous flight state on SN change
21482     
21483     A previous change discarded previous *telemetry* state, but failed to
21484     discard any previous overall flight state. This would reset some of
21485     the data fields, but wouldn't reset the GPS state and max measurements.
21486     
21487     Signed-off-by: Keith Packard <keithp@keithp.com>
21488
21489 commit 8dbe8abd034a2d1ee2ec0380ec376722a4ecbd71
21490 Author: Keith Packard <keithp@keithp.com>
21491 Date:   Fri Dec 14 19:27:56 2012 -0800
21492
21493     altoslib: Only list flight logs for boards that we know have them
21494     
21495     Boards that don't have flight logs will generate a nice 'Syntax Error'
21496     and fail to initialize.
21497     
21498     Signed-off-by: Keith Packard <keithp@keithp.com>
21499
21500 commit fc2e5beb9173663e1e37a9b5a7b6eea1046222f7
21501 Author: Keith Packard <keithp@keithp.com>
21502 Date:   Fri Dec 14 11:11:39 2012 -0800
21503
21504     altos: Log baro readings for MicroPeak
21505     
21506     This logs barometric data every 192ms (more or less) to the 504
21507     remaining bytes of internal EEPROM storage in the ATtiny85. This
21508     provides 48.192 seconds of logging.
21509     
21510     Signed-off-by: Keith Packard <keithp@keithp.com>
21511
21512 commit 73422bf72e07b169bfe37b02518b9e7479931971
21513 Author: Keith Packard <keithp@keithp.com>
21514 Date:   Wed Dec 12 22:53:36 2012 -0800
21515
21516     altos: Note that Lithium battery may be included with MicroPeak
21517     
21518     I'm not willing to say that we'll always be able to include a battery,
21519     but we can certainly try, and they're certainly cheap enough that we
21520     should.
21521     
21522     Signed-off-by: Keith Packard <keithp@keithp.com>
21523
21524 commit 688a9458bb03a81e71554c14295d1baacbbbd530
21525 Merge: 816c6b5 c8866fb
21526 Author: Keith Packard <keithp@keithp.com>
21527 Date:   Wed Dec 12 22:36:59 2012 -0800
21528
21529     Merge branch 'micropeak-1.1'
21530
21531 commit c8866fbae2b00b1d7a7ddf89a3f971a75d3dcd60
21532 Author: Keith Packard <keithp@keithp.com>
21533 Date:   Wed Dec 12 22:35:05 2012 -0800
21534
21535     doc: Update MicroPeak doc to include EEPROM and programming info
21536     
21537     Signed-off-by: Keith Packard <keithp@keithp.com>
21538
21539 commit 816c6b5d087694a9db9c34cc5ec7671a1487d9b9
21540 Merge: a4a8418 a4678cd
21541 Author: Keith Packard <keithp@keithp.com>
21542 Date:   Wed Dec 12 11:10:14 2012 -0800
21543
21544     Merge branch 'micropeak-1.1'
21545
21546 commit a4678cd848da994dc893b75790e4c9a86e54d895
21547 Author: Keith Packard <keithp@keithp.com>
21548 Date:   Wed Dec 12 11:01:48 2012 -0800
21549
21550     altos: Log in-flight data for MicroPeak
21551     
21552     This logs the low 16 bits of the pressure value to the remaining
21553     on-chip eeprom. It can be read out with a standard AVR programming
21554     dongle.
21555     
21556     Signed-off-by: Keith Packard <keithp@keithp.com>
21557
21558 commit 07a45c50429389ae7b51e12bc847d34fb1577bc6
21559 Author: Keith Packard <keithp@keithp.com>
21560 Date:   Wed Dec 12 10:57:03 2012 -0800
21561
21562     altos: Add load-slow target for MicroPeak
21563     
21564     This sets the programming clock to 1/4 of the 250kHz clock used by the
21565     MicroPeak firmware, allowing the device to be reprogrammed.
21566     
21567     Signed-off-by: Keith Packard <keithp@keithp.com>
21568
21569 commit 69447d8ad3f5a1e1f59939477afc7720a437fadc
21570 Author: Keith Packard <keithp@keithp.com>
21571 Date:   Tue Dec 11 23:43:30 2012 -0800
21572
21573     altos: Tim Van Milligan suggestion for µP -- delay before showing last flight
21574     
21575     This gives the user time to move their finger out of the way of the LED.
21576     
21577     Signed-off-by: Keith Packard <keithp@keithp.com>
21578
21579 commit a4a841828924ee37f5201d4ff0aec38459f2d802
21580 Merge: b26e837 d309fcf
21581 Author: Keith Packard <keithp@keithp.com>
21582 Date:   Tue Dec 11 14:42:43 2012 -0800
21583
21584     Merge branch 'micropeak-1.1'
21585
21586 commit d309fcff54fe6904fb860f33c15fcb7d1c96e91b
21587 Author: Keith Packard <keithp@keithp.com>
21588 Date:   Tue Dec 11 14:41:53 2012 -0800
21589
21590     altos: Increase MicroPeak blink times a bit
21591     
21592     make the 0 longer (1 sec now), and make the time between digits longer
21593     (also 1 sec now)
21594     
21595     Signed-off-by: Keith Packard <keithp@keithp.com>
21596
21597 commit b26e837a6f18641aae9372aab22168849ff10812
21598 Merge: 1489c7f c233ef6
21599 Author: Keith Packard <keithp@keithp.com>
21600 Date:   Sun Dec 9 18:33:31 2012 -0800
21601
21602     Merge branch 'micropeak-1.1'
21603
21604 commit c233ef67f42c14cb1d0e0542a9523b279f826af5
21605 Author: Keith Packard <keithp@keithp.com>
21606 Date:   Sun Dec 9 18:28:33 2012 -0800
21607
21608     altos: Use alt_t value to hold displayed height in micropeak
21609     
21610     Heights are 32 bits (to get .1 meter resolution) in micropeak; make
21611     sure we have enough bits while blinking out the computed value.
21612     
21613     Signed-off-by: Keith Packard <keithp@keithp.com>
21614
21615 commit defd5d0784a754be30e3295067fbc85a108ad172
21616 Author: Keith Packard <keithp@keithp.com>
21617 Date:   Sun Dec 9 18:27:49 2012 -0800
21618
21619     altos: Make sure pa to altitude conversion is done with 32 bits
21620     
21621     We need 32 bits to hold intermediate values, even if the final
21622     altitude is reported in only 16 bits.
21623     
21624     Signed-off-by: Keith Packard <keithp@keithp.com>
21625
21626 commit 24948ea1d41f2a7c96ac09e35d1250909e5726ae
21627 Author: Keith Packard <keithp@keithp.com>
21628 Date:   Sun Dec 9 14:32:35 2012 -0800
21629
21630     altos: Store altitude in 32-bits for MicroPeak
21631     
21632     Needs all 32 bits to store .1 meter resolution
21633     
21634     Signed-off-by: Keith Packard <keithp@keithp.com>
21635
21636 commit cf47efdc86f0b421fcf4389669fbecf6fa3f5934
21637 Author: Keith Packard <keithp@keithp.com>
21638 Date:   Fri Dec 7 22:49:34 2012 -0800
21639
21640     altos: Stop including profiling and stack guard code in megametrum
21641     
21642     These take CPU time and memory and are intended only for debugging
21643     
21644     Signed-off-by: Keith Packard <keithp@keithp.com>
21645
21646 commit 4339d5c8e6373119e5377fe5c883b6b0e6ce37f6
21647 Author: Keith Packard <keithp@keithp.com>
21648 Date:   Fri Dec 7 17:38:17 2012 -0800
21649
21650     altos: Fix aprs test to not allow callsign configuration
21651     
21652     There's no configuration to take a callsign from...
21653     
21654     Signed-off-by: Keith Packard <keithp@keithp.com>
21655
21656 commit abf82991b8e69754ebc4857ce78ac4a4b01f16e4
21657 Author: Keith Packard <keithp@keithp.com>
21658 Date:   Fri Dec 7 17:35:15 2012 -0800
21659
21660     altosui: Add APRS interval configuration to UI
21661     
21662     Signed-off-by: Keith Packard <keithp@keithp.com>
21663
21664 commit bd05421991b596fe9cf73ee25c9046b0fb4e32f7
21665 Merge: 1f79706 1489c7f
21666 Author: Keith Packard <keithp@keithp.com>
21667 Date:   Fri Dec 7 17:34:10 2012 -0800
21668
21669     Merge branch 'master' into aprs
21670
21671 commit 1489c7f75f7b9ce547ac49c157b440c4f9131ef4
21672 Author: Keith Packard <keithp@keithp.com>
21673 Date:   Fri Dec 7 17:27:48 2012 -0800
21674
21675     altosui: Call config UI from AltosConfigData directly
21676     
21677     Don't make AltosConfig have a pile of config code, stick that in
21678     AltosConfigData instead. This uses a new interface, AltosConfigValues
21679     to get from AltosConfigData to the UI.
21680     
21681     Signed-off-by: Keith Packard <keithp@keithp.com>
21682
21683 commit 1f797066857b171b19829e2bb7187b8faf37d07c
21684 Author: Keith Packard <keithp@keithp.com>
21685 Date:   Fri Dec 7 17:20:02 2012 -0800
21686
21687     altos: Use configured callsign in APRS packets
21688     
21689     Instead of hard-coding my own call sign...
21690     
21691     Signed-off-by: Keith Packard <keithp@keithp.com>
21692
21693 commit b28323ce91d23db5e1c3cbd1309c72aafcfbe235
21694 Author: Keith Packard <keithp@keithp.com>
21695 Date:   Fri Dec 7 17:18:32 2012 -0800
21696
21697     altos: Make APRS interval configurable
21698     
21699     This provides a separate configuration value for APRS, allowing the
21700     interval between APRS reports to vary.
21701     
21702     Signed-off-by: Keith Packard <keithp@keithp.com>
21703
21704 commit f8a704268f0978a39b9c7983e049ef55914f7280
21705 Author: Keith Packard <keithp@keithp.com>
21706 Date:   Fri Dec 7 10:15:25 2012 -0800
21707
21708     altos: Fix up APRS packet sending code in cc1120 driver
21709     
21710     This fixes the FIFO management, ensuring that the data are streamed
21711     into the radio fast enough to keep the packet continuous. Sounds like
21712     it works, but testing with an actual APRS receiver is required.
21713     
21714     Signed-off-by: Keith Packard <keithp@keithp.com>
21715
21716 commit 748e42ebf1dfb1efd5dec6ddd93f5c7aeedeb01d
21717 Merge: 75912f8 c10f9a4
21718 Author: Keith Packard <keithp@keithp.com>
21719 Date:   Fri Dec 7 10:14:11 2012 -0800
21720
21721     Merge branch 'master' into aprs
21722
21723 commit c10f9a438ed5789479d21c78153ca7f14c05534c
21724 Author: Keith Packard <keithp@keithp.com>
21725 Date:   Fri Dec 7 10:05:51 2012 -0800
21726
21727     altos: fix functions calling pollchar to use 'int' to hold the value
21728     
21729     AO_READ_AGAIN doesn't fit in a char anymore now that stdio is 8-bit
21730     clean, everyone using pollchar must use an 'int' variable to capture
21731     the whole value from pollchar.
21732     
21733     Signed-off-by: Keith Packard <keithp@keithp.com>
21734
21735 commit 16fd9009d8b034fd8d208115317f65fabe10072a
21736 Author: Keith Packard <keithp@keithp.com>
21737 Date:   Fri Dec 7 08:32:22 2012 -0800
21738
21739     altosui: Use AltosConfigData for altosui configuration dialog
21740     
21741     Instead of a separate config language parser, share with altoslib
21742     
21743     Signed-off-by: Keith Packard <keithp@keithp.com>
21744
21745 commit e572651b36ad557d716fb14e76e3eec132e5ebdf
21746 Author: Keith Packard <keithp@keithp.com>
21747 Date:   Thu Dec 6 17:08:39 2012 -0800
21748
21749     altoslib: Make AltosConfigData parse all of the config data
21750     
21751     It was missing quite a few. This also speeds up parsing of config from
21752     TeleScience, TeleBT and TeleTerra by not listing flight info on those
21753     products (where it doesn't make sense).
21754     
21755     Signed-off-by: Keith Packard <keithp@keithp.com>
21756
21757 commit cb4f2b62d50aca615bd4f9f230a1736880125e3e
21758 Author: Keith Packard <keithp@keithp.com>
21759 Date:   Thu Dec 6 17:07:25 2012 -0800
21760
21761     altoslib: Make AltosMs5607 capable of parsing ms5607 info lines
21762     
21763     This moves the parsing from AltosMs5607Query
21764     
21765     Signed-off-by: Keith Packard <keithp@keithp.com>
21766
21767 commit b4e86af6de52ea0bacf80e3936b6cd17c1cbf898
21768 Author: Keith Packard <keithp@keithp.com>
21769 Date:   Thu Dec 6 17:06:17 2012 -0800
21770
21771     altos: Change 'flight-number' to 'current-flight'
21772     
21773     Avoids ambiguity with stored flight info, which starts lines with 'flight'.
21774     
21775     Signed-off-by: Keith Packard <keithp@keithp.com>
21776
21777 commit 9d095eb1987f35d0d4e6540bf335e1faaa7c86ec
21778 Author: Keith Packard <keithp@keithp.com>
21779 Date:   Thu Dec 6 16:29:36 2012 -0800
21780
21781     altos: Shrink 'ao_version' by calling printf fewer times
21782     
21783     Each printf call costs quite a bit of code space on the cc1111, so
21784     instead of making multiple short calls, make one longer one.
21785     
21786     Signed-off-by: Keith Packard <keithp@keithp.com>
21787
21788 commit 75912f8af04cecc0bbffecb2072d465c3744d4e8
21789 Author: Keith Packard <keithp@keithp.com>
21790 Date:   Thu Dec 6 10:30:46 2012 -0800
21791
21792     altos: Send APRS packets even during ascent
21793     
21794     If you're using APRS, presumably you want to watch the rocket going up too.
21795     
21796     Signed-off-by: Keith Packard <keithp@keithp.com>
21797
21798 commit 1f84c0adbfa494ddc7dbe276796d999560be9438
21799 Author: Keith Packard <keithp@keithp.com>
21800 Date:   Thu Dec 6 10:28:14 2012 -0800
21801
21802     altos: Allow telemetry, rdf and APRS to be individually controlled
21803     
21804     But, only when APRS is available so that TeleMetrum and TeleMini don't
21805     change behaviour
21806     
21807     Signed-off-by: Keith Packard <keithp@keithp.com>
21808
21809 commit f661da527fb4a3a492f5322e2a718d441e1cde83
21810 Author: Keith Packard <keithp@keithp.com>
21811 Date:   Thu Dec 6 10:23:39 2012 -0800
21812
21813     altos: Hook up APRS to telemetry loop
21814     
21815     Send APRS packet once every 2 seconds
21816     
21817     Signed-off-by: Keith Packard <keithp@keithp.com>
21818
21819 commit c1e6fa32b856b91afa355cd272d2d7287d3ccca1
21820 Author: Keith Packard <keithp@keithp.com>
21821 Date:   Thu Dec 6 10:12:11 2012 -0800
21822
21823     altos: Hook APRS up to the radio
21824     
21825     This adds an arbitrary-length packet writing function to the radio
21826     code.
21827     
21828     Signed-off-by: Keith Packard <keithp@keithp.com>
21829
21830 commit 51ef826372f466f44901c4c609ed6a987d30fda4
21831 Author: Keith Packard <keithp@keithp.com>
21832 Date:   Wed Dec 5 23:39:47 2012 -0800
21833
21834     altos: Prepare APRS for use within altos itself
21835     
21836     Make all variables static, const-ify constants, change the public
21837     name of the single entry point.
21838     
21839     Signed-off-by: Keith Packard <keithp@keithp.com>
21840
21841 commit 74969483736381858484dca9ebb528d9d2d73f5b
21842 Author: Keith Packard <keithp@keithp.com>
21843 Date:   Wed Dec 5 22:23:46 2012 -0800
21844
21845     altos: Start restructuring APRS code to create and send packets
21846     
21847     Signed-off-by: Keith Packard <keithp@keithp.com>
21848
21849 commit 933d654ec917d9794e87407a7e579438bb738d54
21850 Author: Keith Packard <keithp@keithp.com>
21851 Date:   Wed Dec 5 21:37:47 2012 -0800
21852
21853     altos: Remove a bunch of time bits from the APRS code
21854     
21855     Signed-off-by: Keith Packard <keithp@keithp.com>
21856
21857 commit 684f53d67379cf2ae696fab93d81e49208dfa43c
21858 Author: Keith Packard <keithp@keithp.com>
21859 Date:   Wed Dec 5 21:34:05 2012 -0800
21860
21861     altos: Remove APRS sine-wave table
21862     
21863     We're generating a lovely square wave, which appears to be decoded
21864     just fine thankyouverymuch.
21865     
21866     Signed-off-by: Keith Packard <keithp@keithp.com>
21867
21868 commit b79f448818126258174044a23db5b4f330fd5986
21869 Author: Keith Packard <keithp@keithp.com>
21870 Date:   Wed Dec 5 21:25:29 2012 -0800
21871
21872     altos: More APRS trimming
21873     
21874     Signed-off-by: Keith Packard <keithp@keithp.com>
21875
21876 commit 0bb7200f85db1bc6e39e72e671be9a7aef9c8f09
21877 Author: Keith Packard <keithp@keithp.com>
21878 Date:   Wed Dec 5 21:22:55 2012 -0800
21879
21880     altos: Remove more unused APRS code
21881     
21882     Getting down to a reasonable amount of code.
21883     
21884     Signed-off-by: Keith Packard <keithp@keithp.com>
21885
21886 commit d717edd18a35376811d6be0d0c7522ee8cc426f9
21887 Author: Keith Packard <keithp@keithp.com>
21888 Date:   Wed Dec 5 21:13:37 2012 -0800
21889
21890     altos: Reduce printf calls in APRS packet generation
21891     
21892     Merge all of the data into a single printf call
21893     
21894     Signed-off-by: Keith Packard <keithp@keithp.com>
21895
21896 commit 3e1254c4f3261f66d8070250898fe906eb80d8f2
21897 Author: Keith Packard <keithp@keithp.com>
21898 Date:   Wed Dec 5 21:08:19 2012 -0800
21899
21900     altos: Strip out everything but the basic position reporting from APRS
21901     
21902     Any useful data will be sent over the digital link; APRS is strictly
21903     for position tracking
21904     
21905     Signed-off-by: Keith Packard <keithp@keithp.com>
21906
21907 commit fe820a8a2dc6248b5edb96a9521536d41b936116
21908 Author: Keith Packard <keithp@keithp.com>
21909 Date:   Wed Dec 5 21:01:59 2012 -0800
21910
21911     Signed-off-by: Keith Packard <keithp@keithp.com>
21912     
21913     altos: Switch APRS to standard position reporting form
21914     
21915     Stop using NMEA sentences for position
21916
21917 commit 03f844ddcd95166211451fda0b20f9b15496294e
21918 Author: Keith Packard <keithp@keithp.com>
21919 Date:   Wed Dec 5 20:11:35 2012 -0800
21920
21921     altos: Add missing ao_aprs.h file
21922     
21923     This has defines for the planned APRS interface
21924     
21925     Signed-off-by: Keith Packard <keithp@keithp.com>
21926
21927 commit 8b1f186a574c22cebd9daba9d352ec82556c3b28
21928 Author: Keith Packard <keithp@keithp.com>
21929 Date:   Wed Dec 5 20:10:54 2012 -0800
21930
21931     altos: Generate all of the APRS messages
21932     
21933     Note that two of them are in NMEA form, which some receivers appear
21934     not to parse
21935     
21936     Signed-off-by: Keith Packard <keithp@keithp.com>
21937
21938 commit 0c2c47dd7af2fc95de852178c4244daba02f44ed
21939 Author: Keith Packard <keithp@keithp.com>
21940 Date:   Wed Dec 5 19:44:09 2012 -0800
21941
21942     altos: Add test scaffolding for APRS
21943     
21944     This moves some test code out of ao_aprs.c and into ao_aprs_test.c,
21945     and then adds Makefile fragments to compile and run the resulting
21946     program, creating a wav file as output
21947     
21948     Signed-off-by: Keith Packard <keithp@keithp.com>
21949
21950 commit d65751fded3321b8a350e4140c44f87fec95aab2
21951 Author: Keith Packard <keithp@keithp.com>
21952 Date:   Wed Dec 5 19:30:27 2012 -0800
21953
21954     altos: Make aprs code output encoded packets to stdout
21955     
21956     This generates a .wav file containing a single APRS packet. This has
21957     been tested and appears to be successfully decoded by an APRS receiver.
21958     
21959     Signed-off-by: Keith Packard <keithp@keithp.com>
21960
21961 commit 024e35dc6a0356adfc801a023d5ec208cf3996cb
21962 Author: Keith Packard <keithp@keithp.com>
21963 Date:   Wed Dec 5 09:59:16 2012 -0800
21964
21965     altos: Add Pico Beacon code as ao_aprs.c
21966     
21967     Pico Beacon hooks a GPS to an AD9954 DDS radio chip with a PIC. It
21968     directly synthesizes the necessary AX.25 packets to do APRS
21969     reporting. We're going to appropriate the code for use in Mega Metrum
21970     to (optionally) broadcast APRS packets.
21971     
21972         http://ad7zj.net/kd7lmo/aprsbeacon_code.html
21973     
21974     Signed-off-by: Keith Packard <keithp@keithp.com>
21975     (
21976
21977 commit ce12787b56f699166cafe4cdee9e2a4d8e66ebed
21978 Author: Keith Packard <keithp@keithp.com>
21979 Date:   Tue Dec 4 09:45:01 2012 -0800
21980
21981     altos: Break out GPS speed resetting sequence
21982     
21983     To set the GPS speed, we delay for 1/2 sec, change speed, then delay
21984     for another 1/2 sec.
21985     
21986     Signed-off-by: Keith Packard <keithp@keithp.com>
21987
21988 commit d1778937e136fdecf8607dd9b358cf972d87ca34
21989 Author: Keith Packard <keithp@keithp.com>
21990 Date:   Tue Dec 4 09:43:56 2012 -0800
21991
21992     altos: shrink ao_companion_status by merging printf calls
21993     
21994     Multiple printf calls are longer than one big one, so merge these
21995     together to save some code space
21996     
21997     Signed-off-by: Keith Packard <keithp@keithp.com>
21998
21999 commit f6f440767eece896507903e6e58849f11088829f
22000 Author: Keith Packard <keithp@keithp.com>
22001 Date:   Tue Dec 4 08:48:05 2012 -0800
22002
22003     Another ao-mega addition which shouldn't be here
22004     
22005     Signed-off-by: Keith Packard <keithp@keithp.com>
22006
22007 commit 1f52e8afce514a6b943c92aaa6d7189d11d9fe76
22008 Author: Keith Packard <keithp@keithp.com>
22009 Date:   Tue Dec 4 01:34:03 2012 -0800
22010
22011     ao-tools. Oops, let 'ao-mega' slip into build.
22012     
22013     This is a tool to parse ao-mega eeprom files; not sure it'll be that
22014     useful, and it's certainly not usable *yet*.
22015     
22016     Signed-off-by: Keith Packard <keithp@keithp.com>
22017
22018 commit d4d5d411679d074295d4722f4887fd1cf4f0906c
22019 Author: Keith Packard <keithp@keithp.com>
22020 Date:   Tue Dec 4 01:30:39 2012 -0800
22021
22022     ao-sky-flash: Clean up debug printfs a bit
22023     
22024     This makes debugging output a bit cleaner
22025     
22026     Signed-off-by: Keith Packard <keithp@keithp.com>
22027
22028 commit 5f6b3790667d9b92370b4fe0dad5626929fea2ba
22029 Author: Keith Packard <keithp@keithp.com>
22030 Date:   Fri Nov 30 20:51:47 2012 -0800
22031
22032     altos: Make skytraq reflashing code try both 9600 and 4800 baud
22033     
22034     This lets it communicate with the ROM code which boots at 4800 baud
22035     instead of 9600 baud.
22036     
22037     Signed-off-by: Keith Packard <keithp@keithp.com>
22038
22039 commit dd8b2eadab12965d232640449b1d1c9f2484238c
22040 Author: Keith Packard <keithp@keithp.com>
22041 Date:   Fri Nov 30 17:36:40 2012 -0800
22042
22043     ao-tools: Add ao-sky-flash to update GPS firmware
22044     
22045     This uses a new feature of AltOS to directly connect the GPS chip to
22046     the USB link to reprogram the former.
22047     
22048     Signed-off-by: Keith Packard <keithp@keithp.com>
22049
22050 commit 860d0526737295c695f8e6a790d72b49eb4a686d
22051 Author: Keith Packard <keithp@keithp.com>
22052 Date:   Fri Nov 30 16:10:43 2012 -0800
22053
22054     altos: Add support for reflashing skytraq GPS chips
22055     
22056     This simply switches the skytraq port to 115200 baud and then
22057     essentially connects it directly to the USB port by forwarding bytes
22058     in both directions.
22059     
22060     Once started, the only way out is to reboot the board.
22061     
22062     Signed-off-by: Keith Packard <keithp@keithp.com>
22063
22064 commit c90ece979f3c95cc6c557c5a2ba8f4a0ce78e173
22065 Author: Keith Packard <keithp@keithp.com>
22066 Date:   Fri Nov 30 16:08:41 2012 -0800
22067
22068     altos: Expose GPS serial fifo on MegaMetrum
22069     
22070     Necessary for direct access by the GPS reflashing code
22071     
22072     Signed-off-by: Keith Packard <keithp@keithp.com>
22073
22074 commit ae0ddb0f866a26867f0147e0811717810f74c9ef
22075 Author: Keith Packard <keithp@keithp.com>
22076 Date:   Fri Nov 30 16:05:19 2012 -0800
22077
22078     altos: Add ao_task_minimize_latency to reduce IRQ delays
22079     
22080     When set, this causes the task switching code to avoid blocking IRQs
22081     while looking for an idle task as that can increase IRQ latencies
22082     enough to drop characters at 115200 baud on the cc1111. Note that this
22083     *also* eliminates the ability to use low power modes as we cannot know
22084     at any point whether some interrupt has come along and woken a task.
22085     
22086     Has no effect when using task queues as those require IRQs to be
22087     blocked while looking at the queue. Shouldn't be a problem there
22088     though as the check for no running tasks is very cheap.
22089     
22090     Signed-off-by: Keith Packard <keithp@keithp.com>
22091
22092 commit f2c2d04f07253a90c4f7da49df43c3969119516b
22093 Author: Keith Packard <keithp@keithp.com>
22094 Date:   Fri Nov 30 16:04:24 2012 -0800
22095
22096     altos: Use ao_xmemcpy in ao_log_telem.c
22097     
22098     This eliminates the libc generic version in TeleTerra
22099     
22100     Signed-off-by: Keith Packard <keithp@keithp.com>
22101
22102 commit 7db14905af5cbbfa47d1a2026cce6aea9e5aae7a
22103 Author: Keith Packard <keithp@keithp.com>
22104 Date:   Fri Nov 30 16:03:45 2012 -0800
22105
22106     altos: Add support for 115200 baud serial rates
22107     
22108     Necessary for flashing skytraq chips
22109     
22110     Signed-off-by: Keith Packard <keithp@keithp.com>
22111
22112 commit 0b65402361f36a0c722977bcb63edb26fda0db28
22113 Author: Keith Packard <keithp@keithp.com>
22114 Date:   Fri Nov 30 16:01:07 2012 -0800
22115
22116     altos: Make stdio 8-bit clean by making pollchar return int
22117     
22118     We were stealing one value (0xff) in the return value from pollchar to
22119     indicate 'not ready yet'. Instead of doing that, use the integer value
22120     -1 and have pollchar return an int instead of a char. That
22121     necessitated cleaning a few other bits to make sure that 0xff wouldn't
22122     get promoted to -1 on accident.
22123     
22124     Signed-off-by: Keith Packard <keithp@keithp.com>
22125
22126 commit 0fa9ce23dd63846337872d6d666a469512614d07
22127 Author: Keith Packard <keithp@keithp.com>
22128 Date:   Fri Nov 30 15:10:59 2012 -0800
22129
22130     altos: Share cc1111 reset/debug-start code
22131     
22132     These sequences are very similar, differing only in whether the dbg
22133     clock line is toggled while holding reset low for a while.
22134     
22135     Signed-off-by: Keith Packard <keithp@keithp.com>
22136
22137 commit cb01d968f21a171682e6358641edaf5eef815a66
22138 Author: Keith Packard <keithp@keithp.com>
22139 Date:   Fri Nov 30 15:05:31 2012 -0800
22140
22141     altos: Shrink cc1111/ao_dbg.c a bit
22142     
22143     Share code for osequence of ao_dbg_long_delay(); ao_dbg_send_bits()
22144     
22145     Signed-off-by: Keith Packard <keithp@keithp.com>
22146
22147 commit 81648829defbaf49fc98c4520540f7a20c50c417
22148 Author: Keith Packard <keithp@keithp.com>
22149 Date:   Fri Nov 30 15:04:21 2012 -0800
22150
22151     altos: Share getnibble function
22152     
22153     Two implementations of the same function, one in cc1111/ao_dbg.c and
22154     the other in core/ao_send_packet.c.
22155     
22156     Signed-off-by: Keith Packard <keithp@keithp.com>
22157
22158 commit 289ead258e217bc10493caab12a8b477f1bc2865
22159 Author: Keith Packard <keithp@keithp.com>
22160 Date:   Thu Nov 29 20:36:51 2012 -0800
22161
22162     altos: Make TeleBalloon v1.1 build again
22163     
22164     This is untested, but at least it builds now
22165     
22166     Signed-off-by: Keith Packard <keithp@keithp.com>
22167
22168 commit ceea0e75ac42acac4a20bf88f34bb93fd2768f4c
22169 Merge: 7738ddc 285fccf
22170 Author: Bdale Garbee <bdale@gag.com>
22171 Date:   Tue Nov 20 12:37:38 2012 -0700
22172
22173     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
22174
22175 commit 7738ddc5dcf4a9609ae2b066a783e3c9fa03d3be
22176 Author: Bdale Garbee <bdale@gag.com>
22177 Date:   Tue Nov 20 12:36:26 2012 -0700
22178
22179     let upstream version rule, don't force use of Debian version in firmware
22180
22181 commit 285fccfa82d89b0decc3b44f413eef9d0c8f1e63
22182 Author: Keith Packard <keithp@keithp.com>
22183 Date:   Sun Nov 18 10:36:17 2012 -0800
22184
22185     altos: Slow down micropeak report timing
22186     
22187     This makes reading the LED a lot easier.
22188     
22189     Signed-off-by: Keith Packard <keithp@keithp.com>
22190
22191 commit 8ff0db3979405357003b52022e564a3da75ec3fb
22192 Author: Keith Packard <keithp@keithp.com>
22193 Date:   Sun Nov 18 10:35:39 2012 -0800
22194
22195     altos: micropeak LED is orange now, not blue
22196     
22197     Change the names around to match
22198     
22199     Signed-off-by: Keith Packard <keithp@keithp.com>
22200
22201 commit ba3532a8ca7083b09fde5827faeb95f0c2f3b07c
22202 Author: Keith Packard <keithp@keithp.com>
22203 Date:   Sun Nov 18 10:20:52 2012 -0800
22204
22205     doc: Minor updates to the micropeak docs
22206     
22207     Mention light issue in quick start guide. Update run-time estimate to
22208     40 hours (measured over 44 hours)
22209     
22210     Signed-off-by: Keith Packard <keithp@keithp.com>
22211
22212 commit 1df3e6402489480e30600304bf024481902f9425
22213 Author: Keith Packard <keithp@keithp.com>
22214 Date:   Sun Nov 18 10:15:14 2012 -0800
22215
22216     altos: Clean everything, even if we don't have compilers
22217     
22218     This ensures that stale bits aren't left if PATH isn't set right when
22219     'make clean' is called.
22220     
22221     Signed-off-by: Keith Packard <keithp@keithp.com>
22222
22223 commit c4737c81ee2da826b38cc52efbfb09017e6825ca
22224 Author: Keith Packard <keithp@keithp.com>
22225 Date:   Sun Nov 18 10:13:49 2012 -0800
22226
22227     altoslib: Reset telem tracking state when switching altimeters
22228     
22229     This discards any local state when the new telem packet has a
22230     different serial number
22231     
22232     Signed-off-by: Keith Packard <keithp@keithp.com>
22233
22234 commit fcb801b145e1ae6f1c0b3418a99245d34dbf5aa4
22235 Author: Keith Packard <keithp@keithp.com>
22236 Date:   Sun Nov 18 10:10:29 2012 -0800
22237
22238     altoslib: Allow flight number to be zero
22239     
22240     It's zero when there's no storage space on the device. Instead of
22241     waiting for non-zero flight number, wait for the seen_flight bit to be
22242     set in the telem tracking state
22243     
22244     Signed-off-by: Keith Packard <keithp@keithp.com>
22245
22246 commit c494eecc51f7d80e24e5db7af0021c56cb6871d4
22247 Author: Keith Packard <keithp@keithp.com>
22248 Date:   Sun Nov 18 10:08:38 2012 -0800
22249
22250     altoslib: MegaMetrum data telem packets have sensor data, not flight no
22251     
22252     Setting the seen_flight bit without a flight number leads to bogus
22253     file names
22254     
22255     Signed-off-by: Keith Packard <keithp@keithp.com>
22256
22257 commit 70c9fc74a68fdb92569eb73295cfa154cf3768f4
22258 Author: Keith Packard <keithp@keithp.com>
22259 Date:   Sun Nov 18 09:50:54 2012 -0800
22260
22261     altos: Make Tm recovery mode set RF cal and callsign too
22262     
22263     This lets us connect to Tm even if someone messes up the RF
22264     calibration or callsign info
22265     
22266     Signed-off-by: Keith Packard <keithp@keithp.com>
22267
22268 commit fa3beed645c7bff08d22a657daffe75059dc7b88
22269 Author: Keith Packard <keithp@keithp.com>
22270 Date:   Sun Nov 18 08:46:31 2012 -0800
22271
22272     altos: fix cc1120 radio test - state wasn't made static
22273     
22274     so whether the radio got turned on was random.
22275     
22276     Signed-off-by: Keith Packard <keithp@keithp.com>
22277
22278 commit e037fbc004e1aa7d631ae999e587bdde2f6b71c9
22279 Author: Keith Packard <keithp@keithp.com>
22280 Date:   Sat Nov 17 17:34:01 2012 -0800
22281
22282     altoslib: Add (disabled) conversion for MS5611
22283     
22284     In case we actually end up shipping an MS5611-based board at some
22285     point, it will be nice to have the java code on hand
22286     
22287     Signed-off-by: Keith Packard <keithp@keithp.com>
22288
22289 commit 0606dc013d8b89fd5de0548af0de20fdab5c27d4
22290 Author: Keith Packard <keithp@keithp.com>
22291 Date:   Fri Nov 16 22:19:17 2012 -0800
22292
22293     doc: Start updating AltOS documentation for multi-arch
22294     
22295     Now that AltOS supports many processors, start updating the
22296     documentation to match.
22297     
22298     Signed-off-by: Keith Packard <keithp@keithp.com>
22299
22300 commit b3205a1d246e5ed229256aa787f26e6e122b7a2f
22301 Author: Keith Packard <keithp@keithp.com>
22302 Date:   Thu Nov 1 17:52:22 2012 -0700
22303
22304     altos: Build megadongle when possible
22305     
22306     Signed-off-by: Keith Packard <keithp@keithp.com>
22307
22308 commit 793b950083d09ead4f6230e041ad43aa9f5f2179
22309 Author: Keith Packard <keithp@keithp.com>
22310 Date:   Thu Nov 1 10:51:41 2012 -0700
22311
22312     altos/megadongle: Add megadongle product
22313     
22314     Looks a lot like teledongle from a feature perspective.
22315     
22316     Signed-off-by: Keith Packard <keithp@keithp.com>
22317
22318 commit f74d724f92b335d6c0674d0f1fcc650b729401df
22319 Author: Keith Packard <keithp@keithp.com>
22320 Date:   Thu Nov 1 10:50:03 2012 -0700
22321
22322     altos: Remove legacy telemetry from ao_monitor when not needed
22323     
22324     For products not supporting LEGACY_MONITOR, remove the (undefined)
22325     structs from the ao_monitor union.
22326     
22327     Signed-off-by: Keith Packard <keithp@keithp.com>
22328
22329 commit e4d931cd99a7c91803584b71670e30c0d00217df
22330 Author: Keith Packard <keithp@keithp.com>
22331 Date:   Thu Nov 1 10:49:17 2012 -0700
22332
22333     altos: Remove 'volatile' from ao_rssi.c globals
22334     
22335     No need for this, the variables aren't changed at interrupt time.
22336     
22337     Signed-off-by: Keith Packard <keithp@keithp.com>
22338
22339 commit 86f8b92149d1027b1d6d6b1cae097cfe47b02090
22340 Author: Keith Packard <keithp@keithp.com>
22341 Date:   Thu Nov 1 10:48:08 2012 -0700
22342
22343     altos/stm: Support LEDs on multiple ports
22344     
22345     Split out the bits in a fairly simplistic fashion so that we support
22346     no more than 16 LEDs still.
22347     
22348     Signed-off-by: Keith Packard <keithp@keithp.com>
22349
22350 commit fcdaa0d748058a7f52a1bdc1a1627dc394762e5a
22351 Author: Keith Packard <keithp@keithp.com>
22352 Date:   Tue Oct 30 19:56:51 2012 -0700
22353
22354     altos/attiny: Remove debugging code which frobs PB1
22355     
22356     This was clearly stuck there to debug something; not a good idea...
22357     
22358     Signed-off-by: Keith Packard <keithp@keithp.com>
22359
22360 commit af8cb40851a5cf5e3bd06ddd85e4e2df16bfbad2
22361 Author: Keith Packard <keithp@keithp.com>
22362 Date:   Tue Oct 30 19:44:45 2012 -0700
22363
22364     altos/micropeak: Run MS5607 at max resolution for micropeak
22365     
22366     We've got lots of time, so get the highest resolution baro data available.
22367     
22368     Signed-off-by: Keith Packard <keithp@keithp.com>
22369
22370 commit 371da0c909098092db7b596496df9d58eed43703
22371 Author: Keith Packard <keithp@keithp.com>
22372 Date:   Tue Oct 30 19:41:08 2012 -0700
22373
22374     altos/micropeak: Clock micropeak at 250kHz to save power
22375     
22376     This reduces average current consumption from 2mA to .4mA. This
22377     makes the battery last longer, but also gets the current under
22378     something that the typical CR1025 battery can support. Would be nice
22379     to reduce current even further; cheap CR1025 batteries still seem to
22380     fade a bit at this current level.
22381     
22382     Signed-off-by: Keith Packard <keithp@keithp.com>
22383
22384 commit e8a4a00a5bb333d4ee9601d53242a82dfe0372c2
22385 Author: Keith Packard <keithp@keithp.com>
22386 Date:   Tue Oct 30 19:39:55 2012 -0700
22387
22388     altos/attiny: Don't initialize the CS pin in the general SPI setup
22389     
22390     Let the CS pin be configured by the driver, which can set the correct
22391     value before enabling the output.
22392     
22393     Signed-off-by: Keith Packard <keithp@keithp.com>
22394
22395 commit f7d2613bb0a6ab1c63e3f6252a3a2358fdfbc691
22396 Author: Keith Packard <keithp@keithp.com>
22397 Date:   Mon Oct 29 17:07:05 2012 -0700
22398
22399     altos/micropeak: Set boost detect to 10m. Add 30s boost delay.
22400     
22401     Wait for 30 seconds before even starting look for boost. This provides
22402     an opportunity to close up the airframe, potentially causing pressure
22403     gradients seen by the baro sensor.
22404     
22405     Also, require a 10m vertical motion before triggering boost. This
22406     should limit accidental boost detect while capturing any actual flights.
22407     
22408     Signed-off-by: Keith Packard <keithp@keithp.com>
22409
22410 commit 0d0ece403028e8a4453cc380575ed95c5e00ddb7
22411 Author: Keith Packard <keithp@keithp.com>
22412 Date:   Mon Oct 29 11:49:23 2012 -0700
22413
22414     doc: Add micropeak manual
22415     
22416     Signed-off-by: Keith Packard <keithp@keithp.com>
22417
22418 commit 424638446b7c7bb3f4aa6b4764d3e68175dcbf8c
22419 Author: Keith Packard <keithp@keithp.com>
22420 Date:   Mon Oct 29 11:48:58 2012 -0700
22421
22422     altos: Build micropeak when avr-gcc is available
22423     
22424     Signed-off-by: Keith Packard <keithp@keithp.com>
22425
22426 commit e9ea0ad4024532fd6f87bb6708bf76b0c7aa1c5b
22427 Author: Keith Packard <keithp@keithp.com>
22428 Date:   Mon Oct 29 11:47:17 2012 -0700
22429
22430     altos/micropeak: Switch to MS5607 sensor. Require 4m for boost. Elide dead code
22431     
22432     Signed-off-by: Keith Packard <keithp@keithp.com>
22433
22434 commit 0623bc06a77536b903da09acbd12999d0ed05360
22435 Author: Keith Packard <keithp@keithp.com>
22436 Date:   Mon Oct 29 11:43:02 2012 -0700
22437
22438     altos/attiny: Update to new interrupt macros
22439     
22440     Add ao_arch_block/release_interrupts macros to attiny architecture
22441     
22442     Signed-off-by: Keith Packard <keithp@keithp.com>
22443
22444 commit a46c9398a5f02ff4b52b7a4309a51498560cadb5
22445 Merge: e57ab2a 56023cf
22446 Author: Keith Packard <keithp@keithp.com>
22447 Date:   Fri Oct 26 14:08:32 2012 -0700
22448
22449     Merge remote-tracking branch 'mjb/altosdroid'
22450
22451 commit e57ab2a7bfb69c0ef9b5b7fa8e53e20a500e7c6c
22452 Author: Keith Packard <keithp@keithp.com>
22453 Date:   Thu Oct 25 13:42:10 2012 -0700
22454
22455     altos: Provide ao_task_alarm_tick to reduce per-tick cost
22456     
22457     Cache the next wakeup time and check that before jumping to the task
22458     code.
22459     
22460     Signed-off-by: Keith Packard <keithp@keithp.com>
22461
22462 commit ccf0faa7d26d56deca7928b521d07be40504466a
22463 Author: Keith Packard <keithp@keithp.com>
22464 Date:   Thu Oct 25 13:40:54 2012 -0700
22465
22466     altos: Leave interrupts disabled while checking for task to run
22467     
22468     Otherwise, we run the risk of an interrupt waking a task after we've
22469     decided to idle the CPU.
22470     
22471     Signed-off-by: Keith Packard <keithp@keithp.com>
22472
22473 commit 9b978cd467f9128f3069765dd8fbf8abad3459a4
22474 Author: Keith Packard <keithp@keithp.com>
22475 Date:   Thu Oct 25 13:38:13 2012 -0700
22476
22477     altos: Clean up stm arch macros a bit.
22478     
22479     Turn a bunch of the macros into inline functions.
22480     Clean up the reboot method to use the stm_scb structure.
22481     
22482     Signed-off-by: Keith Packard <keithp@keithp.com>
22483
22484 commit 7ee031bdab33cc6a1e2a7995a7c3a43f3a64b687
22485 Author: Keith Packard <keithp@keithp.com>
22486 Date:   Thu Oct 25 13:35:47 2012 -0700
22487
22488     altos: Clean up cc1111 architecture macros a bit, removing cli/sei
22489     
22490     Just reformatting changes, aside from the removal of cli/sei
22491     
22492     Signed-off-by: Keith Packard <keithp@keithp.com>
22493
22494 commit ff6a439cd24e239abd97107ecedf12dca71e59a5
22495 Author: Keith Packard <keithp@keithp.com>
22496 Date:   Thu Oct 25 13:33:43 2012 -0700
22497
22498     altos: Wrap ao_container_of value in parens
22499     
22500     Keeps the cast from being separated from the value when used
22501     in expressions.
22502     
22503     Signed-off-by: Keith Packard <keithp@keithp.com>
22504
22505 commit f221c78e6237e0a118ebe85c25e433fe16a7735d
22506 Author: Keith Packard <keithp@keithp.com>
22507 Date:   Thu Oct 25 11:25:42 2012 -0700
22508
22509     altos: Switch drivers to ao_arch_block/release_interrupts
22510     
22511     Stop using cli/sei, which are avr-specific
22512     
22513     Signed-off-by: Keith Packard <keithp@keithp.com>
22514
22515 commit 56023cf5da9deede9fe627fe327783eceecf08f7
22516 Author: Mike Beattie <mike@ethernal.org>
22517 Date:   Thu Oct 25 20:39:20 2012 +1300
22518
22519     altosdroid: more restrictive commit no. matching
22520     
22521     Signed-off-by: Mike Beattie <mike@ethernal.org>
22522
22523 commit bb3f42daffafb497639c2c678f6106ce54523ff3
22524 Author: Mike Beattie <mike@ethernal.org>
22525 Date:   Thu Oct 25 20:31:59 2012 +1300
22526
22527     altosdroid: more reliable branch detection
22528     
22529     Signed-off-by: Mike Beattie <mike@ethernal.org>
22530
22531 commit 963f7715be6c67056bbd8bbe898639adac64fc29
22532 Author: Keith Packard <keithp@keithp.com>
22533 Date:   Thu Oct 25 00:12:57 2012 -0700
22534
22535     Bump version to 1.1.9.2
22536     
22537     Signed-off-by: Keith Packard <keithp@keithp.com>
22538
22539 commit 282f0451dd141db3304ab73e4020a849e59721eb
22540 Merge: 0680d62 78e1de4
22541 Author: Keith Packard <keithp@keithp.com>
22542 Date:   Thu Oct 25 00:09:01 2012 -0700
22543
22544     Merge remote-tracking branch 'mjb/altosdroid'
22545
22546 commit 0680d62d57496cea7ae4f1ef317c46e689b28e21
22547 Author: Keith Packard <keithp@keithp.com>
22548 Date:   Thu Oct 25 00:04:27 2012 -0700
22549
22550     altos/megametrum: Depend on Makefile contents for build
22551     
22552     This ensures that everything is rebuilt when the Makefile changes
22553     
22554     Signed-off-by: Keith Packard <keithp@keithp.com>
22555
22556 commit b49c751749dcd3e78991463c098f8d916f52179d
22557 Author: Keith Packard <keithp@keithp.com>
22558 Date:   Wed Oct 24 23:50:55 2012 -0700
22559
22560     altos: Add task queues.
22561     
22562     This replaces the array-based scheduler with a queue-based one
22563     instead. It should have the same basic scheduling semantics, but it
22564     walks shorter lists for each operation, making it much more efficient
22565     when the system has a lot of tasks.
22566     
22567     Signed-off-by: Keith Packard <keithp@keithp.com>
22568
22569 commit 4b13d3c659240e5a8347b1ba7ab0bf1d8355eba3
22570 Author: Keith Packard <keithp@keithp.com>
22571 Date:   Wed Oct 24 22:46:55 2012 -0700
22572
22573     altos: Add stack-guard code. Uses STM MPU to trap stack overflow.
22574     
22575     This marks the lowest portion of the stack as inaccessible to the CPU,
22576     causing the processor to fault when it reaches it. The fault then
22577     generates a panic message so that the user can know what happened.
22578     
22579     Signed-off-by: Keith Packard <keithp@keithp.com>
22580
22581 commit e80fa6de4ccc5c4851eab9fb941f9282d2e3eb16
22582 Author: Keith Packard <keithp@keithp.com>
22583 Date:   Wed Oct 24 22:35:32 2012 -0700
22584
22585     altos: Replace __critical usage with ao_arch_critical as needed
22586     
22587     sdcc offers __critical as a machine-independent way to block
22588     interrupts, but as gcc doesn't, we need to use a compiler-independent
22589     construct instead. ao_arch_critical has been around since the AVR
22590     port, but some old __critical usages remained.
22591     
22592     This fixes a bunch of random hangs when communicating with MM over USB
22593     or the radio as the various stdio loops were running without
22594     interrupts blocked between the test and the sleep.
22595     
22596     Signed-off-by: Keith Packard <keithp@keithp.com>
22597
22598 commit b119e19604aa557a40e848c60d98a67b5f259bbd
22599 Author: Keith Packard <keithp@keithp.com>
22600 Date:   Tue Oct 23 22:17:49 2012 -0700
22601
22602     altos: profiling on STM32L
22603     
22604     Add sample-based profiling, using a 1kHz timer
22605     
22606     Signed-off-by: Keith Packard <keithp@keithp.com>
22607
22608 commit 7d34811ba035367bbf26a8510265754f3fbb5a95
22609 Author: Keith Packard <keithp@keithp.com>
22610 Date:   Wed Oct 24 23:21:38 2012 -0700
22611
22612     altos: Add ao_arch_block/release_interrupts to avr and cc1111
22613     
22614     Stop using cli/sei for AVR, add replacement to __critical for cc1111
22615     
22616     Signed-off-by: Keith Packard <keithp@keithp.com>
22617
22618 commit 09aa379fc57cd4f30c18c7bda2532a79109354c2
22619 Author: Keith Packard <keithp@keithp.com>
22620 Date:   Wed Oct 24 23:55:00 2012 -0700
22621
22622     altos: Force beep timer regs reload when enabling beeper
22623     
22624     Without this, there can be a long delay between asking for the beeper
22625     and having it actually start sounding.
22626     
22627     Signed-off-by: Keith Packard <keithp@keithp.com>
22628
22629 commit 097c931c979d3652ef8e279ba66bb7ce758f37a3
22630 Author: Keith Packard <keithp@keithp.com>
22631 Date:   Wed Oct 24 23:52:49 2012 -0700
22632
22633     altos: When slave mode first starts, accept any packet
22634     
22635     This eliminates the packet sequence matching for the first packet,
22636     allowing outstanding send data to arrive from the master instead of
22637     ignoring packets with data until they match the seqno
22638     
22639     Signed-off-by: Keith Packard <keithp@keithp.com>
22640
22641 commit 978c16105dd334a4a2807140dbbcc7f306a6b581
22642 Author: Keith Packard <keithp@keithp.com>
22643 Date:   Wed Oct 24 23:55:45 2012 -0700
22644
22645     altosui: Allow AltosConfig to abort before serial line starts
22646     
22647     Check to see if the serial line is active before trying to close it.
22648     
22649     Signed-off-by: Keith Packard <keithp@keithp.com>
22650
22651 commit 78e1de481bfdbf7c7bb908c317b23c8ee275c84f
22652 Author: Mike Beattie <mike@ethernal.org>
22653 Date:   Wed Oct 24 20:54:18 2012 +1300
22654
22655     altosdroid: Add version information to UI
22656     
22657     Signed-off-by: Mike Beattie <mike@ethernal.org>
22658
22659 commit 5ad62b07bef41921b46cb7251072dc24290ee4c9
22660 Author: Mike Beattie <mike@ethernal.org>
22661 Date:   Wed Oct 24 20:52:09 2012 +1300
22662
22663     altosdroid: Add branch to BuildInfo
22664     
22665     Signed-off-by: Mike Beattie <mike@ethernal.org>
22666
22667 commit 055f3232decc07e064d596469b81cf9869411c2d
22668 Merge: 8ca58e2 9e60fa2
22669 Author: Bdale Garbee <bdale@gag.com>
22670 Date:   Tue Oct 23 09:38:36 2012 -0600
22671
22672     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
22673
22674 commit 8ca58e20208495ce63b8256a8ffa43932867e8d5
22675 Author: Bdale Garbee <bdale@gag.com>
22676 Date:   Tue Oct 23 09:33:17 2012 -0600
22677
22678     remove local copy of launch-sites.txt and reference to old web location
22679
22680 commit 37a09f1edc57924dabcf2a71794a42e37b5a354c
22681 Author: Mike Beattie <mike@ethernal.org>
22682 Date:   Tue Oct 23 19:22:52 2012 +1300
22683
22684     altosdroid: match only the current version tag
22685     
22686     Don't match non version tags - and always return the long format of
22687     git describe, rather than just the tag (when the tag is on the current
22688     commit).
22689     
22690     Split the commit number/hash more reliably by removing the version tag
22691     from the result first.
22692     
22693     Signed-off-by: Mike Beattie <mike@ethernal.org>
22694
22695 commit 9e60fa214ad2c48fbe8f7e5c437681aa35d249fa
22696 Merge: 27c3157 4b41561
22697 Author: Keith Packard <keithp@keithp.com>
22698 Date:   Mon Oct 22 22:39:31 2012 -0700
22699
22700     Merge remote-tracking branch 'mjb/altosdroid'
22701
22702 commit 27c31572f4f63c2282e1cc583f4402337fcb548a
22703 Author: Keith Packard <keithp@keithp.com>
22704 Date:   Mon Oct 22 22:38:46 2012 -0700
22705
22706     altosui: Allow any non-basestation to be configured
22707     
22708     TelePyro has some configuration bits.
22709     
22710     Signed-off-by: Keith Packard <keithp@keithp.com>
22711
22712 commit 79f4e684713cff6bf999cac52f5d9525a6f7d278
22713 Author: Keith Packard <keithp@keithp.com>
22714 Date:   Mon Oct 22 21:39:12 2012 -0700
22715
22716     altos: make check-avr-mem utility executable
22717     
22718     Signed-off-by: Keith Packard <keithp@keithp.com>
22719
22720 commit d4ea2e7c3ed84fb6f4e880da6c5ddf2a83d3ef61
22721 Author: Keith Packard <keithp@keithp.com>
22722 Date:   Mon Oct 22 21:38:18 2012 -0700
22723
22724     altos: Allow pyro flight state config to be set
22725     
22726     Without these lines, flight state compares can't be shown or set.
22727     
22728     Signed-off-by: Keith Packard <keithp@keithp.com>
22729
22730 commit e80d7cd18fa4dac98d941e86b5956403a7170966
22731 Author: Keith Packard <keithp@keithp.com>
22732 Date:   Mon Oct 22 21:37:25 2012 -0700
22733
22734     altos: Let AVR products override the stack size. Set telepyro to 104
22735     
22736     Otherwise, telepyro doesn't have enough ram...
22737     
22738     Signed-off-by: Keith Packard <keithp@keithp.com>
22739
22740 commit 20496608ca287e65302193ee1afe9f0cad3a36e1
22741 Author: Keith Packard <keithp@keithp.com>
22742 Date:   Mon Oct 22 21:36:12 2012 -0700
22743
22744     altoslib: capitalize 'Invalid' state name appropriately
22745     
22746     It shouldn't ever appear, but it seemed wrong to have it not match the
22747     rest of the strings.
22748     
22749     Signed-off-by: Keith Packard <keithp@keithp.com>
22750
22751 commit fe00d1169c65cb289f77093cf281efbd0a5d4e64
22752 Author: Keith Packard <keithp@keithp.com>
22753 Date:   Mon Oct 22 21:35:06 2012 -0700
22754
22755     altosui/altoslib: Add support for configuring pyro channels
22756     
22757     This provides a UI on devices which have pyro channels other than
22758     main/apogee.
22759     
22760     Signed-off-by: Keith Packard <keithp@keithp.com>
22761
22762 commit fd619a01bf3489b1df017aca20362757b087ec11
22763 Author: Keith Packard <keithp@keithp.com>
22764 Date:   Mon Oct 22 08:52:08 2012 -0700
22765
22766     altos: Add state comparisons to pyro channel conditions
22767     
22768     Let pyro channels block waiting for flight state changes. This
22769     allows for pyro channels to be synchronized with the main iginiter
22770     channels.
22771     
22772     Signed-off-by: Keith Packard <keithp@keithp.com>
22773
22774 commit 4b41561abf9144e73995ccc18eadad7936d1dd15
22775 Author: Mike Beattie <mike@ethernal.org>
22776 Date:   Mon Oct 22 11:55:07 2012 +1300
22777
22778     altosdroid: add autogenerated BuildInfo.java
22779     
22780     * Generated by shell script that parses git describe
22781     * Makefile rule to call script on every run
22782     * also includes eclipse hooks to call shell script on build
22783     
22784     Signed-off-by: Mike Beattie <mike@ethernal.org>
22785
22786 commit 8cb09f8a3e2dae5f7f3d2d3dbbc81ba40b491e75
22787 Author: Keith Packard <keithp@keithp.com>
22788 Date:   Sun Oct 21 20:57:21 2012 -0700
22789
22790     altosdroid: AltosState now has speed and max_speed funcs
22791     
22792     These pull out the appropriate baro/accel speed values and may use
22793     some fancier values in future.
22794     
22795     Signed-off-by: Keith Packard <keithp@keithp.com>
22796
22797 commit e4ee3a35dbb1586f65adada0eaf34b7b4e5432eb
22798 Author: Keith Packard <keithp@keithp.com>
22799 Date:   Sun Oct 21 19:51:02 2012 -0700
22800
22801     altoslib: Add AltosRecordNone.java
22802     
22803     oops. forgot a file.
22804     
22805     Signed-off-by: Keith Packard <keithp@keithp.com>
22806
22807 commit e16c33545640f745cec8dc595b2343359efced57
22808 Author: Keith Packard <keithp@keithp.com>
22809 Date:   Sun Oct 21 17:26:16 2012 -0700
22810
22811     altos/test: Use MMA655X in ao_flight_test_mm. Add run-mm to plot mm data
22812     
22813     Pull MMA655X data out of eeprom file when available. Switch build to
22814     using MMA655x by default.
22815     
22816     Clone run-one to plot a single mm flight
22817     
22818     Signed-off-by: Keith Packard <keithp@keithp.com>
22819
22820 commit f789b0b94eb01e3875f7711ce053658c31e75fad
22821 Author: Keith Packard <keithp@keithp.com>
22822 Date:   Sun Oct 21 17:00:08 2012 -0700
22823
22824     altosui: Handle .mega files in Landed tab 'Graph Flight' button
22825     
22826     Need to check for .mega files here too.
22827     
22828     Signed-off-by: Keith Packard <keithp@keithp.com>
22829
22830 commit 6a1a1dae3e00bfcddf31c447f915245a7d42e566
22831 Author: Keith Packard <keithp@keithp.com>
22832 Date:   Sun Oct 21 16:55:00 2012 -0700
22833
22834     altos: Document mega log packet types
22835     
22836     Just add comments to ao_log.h so it's easy to remember which labels go
22837     with each record.
22838     
22839     Signed-off-by: Keith Packard <keithp@keithp.com>
22840
22841 commit 89c621be35e1a6d3394b0e143391fcf2d94d7b41
22842 Author: Keith Packard <keithp@keithp.com>
22843 Date:   Sun Oct 21 16:53:23 2012 -0700
22844
22845     altoslib: Parse GPS .mega file entries for reply/graphing
22846     
22847     The .mega file parsing had a pile of leftovers from when it was cloned
22848     from the .eeprom file parsing code. Replace all of that with the right
22849     parsing bits so that GPS data will be presented correctly.
22850     
22851     Signed-off-by: Keith Packard <keithp@keithp.com>
22852
22853 commit 7894c27b2b2c3c46a7c107c8acd5977830f006cf
22854 Author: Keith Packard <keithp@keithp.com>
22855 Date:   Sun Oct 21 16:13:14 2012 -0700
22856
22857     altoslib: Move computed state from AltosRecord to AltosState
22858     
22859     Make AltosRecord simply track the raw data and have AltosState hold
22860     all computed values, including cross-packet averages and computed speeds.
22861     
22862     Signed-off-by: Keith Packard <keithp@keithp.com>
22863
22864 commit dec2e455935a71dec13b84bb886252b7f4a1a641
22865 Author: Keith Packard <keithp@keithp.com>
22866 Date:   Sun Oct 21 14:11:07 2012 -0700
22867
22868     altoslib: Compute accelerometer speed from megametrum eeprom data
22869     
22870     Duplicates code from the TM eeprom state tracking code.
22871     
22872     Signed-off-by: Keith Packard <keithp@keithp.com>
22873
22874 commit dcadf5e55f076604b0b168be0060026110e263ed
22875 Author: Keith Packard <keithp@keithp.com>
22876 Date:   Sun Oct 21 14:10:32 2012 -0700
22877
22878     altoslib: remove a couple of TM log record types from MM log parsing
22879     
22880     PRESSURE and DEPLOY log records don't occurin MM eeprom files.
22881     
22882     Signed-off-by: Keith Packard <keithp@keithp.com>
22883
22884 commit 1f5a453cb4650fc97cc990a9e42242278c29cc04
22885 Author: Keith Packard <keithp@keithp.com>
22886 Date:   Sun Oct 21 13:42:00 2012 -0700
22887
22888     altoslib: MegaMetrum eeprom never loses GPS date
22889     
22890     TeleMetrum had a firmware bug that would fail to record the GPS date
22891     and time correctly, that was hacked around in altosui, but isn't
22892     needed for MegaMetrum. Remove those hacks from the MM path.
22893     
22894     Signed-off-by: Keith Packard <keithp@keithp.com>
22895
22896 commit 84a144e8b479550406323bc3b2cf89026b770746
22897 Author: Keith Packard <keithp@keithp.com>
22898 Date:   Sun Oct 21 13:02:40 2012 -0700
22899
22900     altosui: Correct megametrum eeprom filename date
22901     
22902     Was fetching day-of-month from the year field
22903     
22904     Signed-off-by: Keith Packard <keithp@keithp.com>
22905
22906 commit db0bbf76b5d739b5d7628bc9139dc8fecd501ac3
22907 Author: Keith Packard <keithp@keithp.com>
22908 Date:   Sun Oct 21 13:02:05 2012 -0700
22909
22910     altosui: Add new filename filters
22911     
22912     Allow the user to restrict filenames to telem, eeprom or mega files
22913     
22914     Signed-off-by: Keith Packard <keithp@keithp.com>
22915
22916 commit eea141b2f35722bad4cd31d9484d6d794646f815
22917 Author: Keith Packard <keithp@keithp.com>
22918 Date:   Sun Oct 21 13:01:03 2012 -0700
22919
22920     altos/stm: Stop spewing clock out PA8 pin
22921     
22922     This was used to debug the clock bringup, but is not useful anymore,
22923     and probably a bad idea to boot.
22924     
22925     Signed-off-by: Keith Packard <keithp@keithp.com>
22926
22927 commit 7f664da148ae15d46d179d8ecede6fc0bc710ffb
22928 Merge: 3aba5eb 23b0c2f
22929 Author: Keith Packard <keithp@keithp.com>
22930 Date:   Thu Oct 18 16:49:28 2012 -0700
22931
22932     Merge branch 'master' into pwmin-new
22933
22934 commit 23b0c2fe95dbfaa4a8ce603b56b75d12d2c17d8c
22935 Author: Keith Packard <keithp@keithp.com>
22936 Date:   Thu Oct 18 16:19:38 2012 -0700
22937
22938     altosui: Re-add a couple of "unused" values
22939     
22940     The values in these calls aren't needed, but the side-effects are, so
22941     add them back in.
22942     
22943     Signed-off-by: Keith Packard <keithp@keithp.com>
22944
22945 commit 05173876d5984a54929db486c9ce1e19bde79526
22946 Author: Keith Packard <keithp@keithp.com>
22947 Date:   Thu Oct 18 16:02:59 2012 -0700
22948
22949     Bump version to 1.1.9.1
22950     
22951     Prepare for Rocketober/Thrustration
22952     
22953     Signed-off-by: Keith Packard <keithp@keithp.com>
22954
22955 commit ceb42f4c96076b01ac05577c9fe461b66e72d30d
22956 Author: Keith Packard <keithp@keithp.com>
22957 Date:   Thu Oct 18 15:34:41 2012 -0700
22958
22959     altos/megametrum: Switch back to using the MS5607
22960     
22961     We're planning to ship the MS5607
22962     
22963     Signed-off-by: Keith Packard <keithp@keithp.com>
22964
22965 commit 5a55501660ebab3b858a48483c5df1cfb4e858e4
22966 Merge: 0361235 440365b
22967 Author: Keith Packard <keithp@keithp.com>
22968 Date:   Thu Oct 18 15:18:52 2012 -0700
22969
22970     Merge branch 'master' into mm-ms5611
22971     
22972     Signed-off-by: Keith Packard <keithp@keithp.com>
22973
22974 commit 3aba5eb5a75dff3e7c8778561c533903eacb110a
22975 Author: Keith Packard <keithp@keithp.com>
22976 Date:   Tue Oct 16 22:33:34 2012 -0700
22977
22978     altos: Build telescience-pwm product when possible
22979     
22980     Signed-off-by: Keith Packard <keithp@keithp.com>
22981
22982 commit f34f0ac7f355149446374a4c82dbf004919bc2dd
22983 Author: Keith Packard <keithp@keithp.com>
22984 Date:   Tue Oct 16 22:21:04 2012 -0700
22985
22986     altos: Add telescience-pwm product
22987     
22988     Split out special PWM-sampling telescience product
22989     
22990     Signed-off-by: Keith Packard <keithp@keithp.com>
22991
22992 commit 14698c424f833dc6d2fb38f69f5f661804cf8303
22993 Author: Keith Packard <keithp@keithp.com>
22994 Date:   Tue Oct 16 22:17:25 2012 -0700
22995
22996     altos: Only enable PWM on telescience_pwm product
22997     
22998     Signed-off-by: Keith Packard <keithp@keithp.com>
22999
23000 commit ac318c19594569532f1fa53b639eefa28d9b7c34
23001 Author: Robert Garbee <robert@gag.com>
23002 Date:   Wed Jul 18 18:41:00 2012 -0600
23003
23004     telescience: correctly calculating rate values with higher resolution
23005
23006 commit da7ac5e95575f6aa1d2514748869771b7686c0e1
23007 Author: Robert Garbee <robert@gag.com>
23008 Date:   Wed Jul 18 14:24:05 2012 -0600
23009
23010     ICP3 working
23011
23012 commit ed5aa2329985ffbaba74514e0555f67fc378a8d8
23013 Author: Robert Garbee <robert@gag.com>
23014 Date:   Wed Jul 18 13:41:27 2012 -0600
23015
23016     Timer 3 working with slower clock and all 16 bits.
23017
23018 commit 1d7e6f5dcb29535cde9b7dfd6998d7889baf835b
23019 Author: Robert Garbee <robert@gag.com>
23020 Date:   Tue Jul 17 13:23:48 2012 -0600
23021
23022     first work on PWM input to TeleScience, 'p' command displays timer 1
23023
23024 commit 1747ab07dab6f4e977e0c3e83b57510cd668e369
23025 Author: Robert Garbee <robert@gag.com>
23026 Date:   Thu Jul 19 11:40:20 2012 -0600
23027
23028     telescience: steal last adc channel for icp3 most recent value
23029     Make the ICP3 rpm counter use in ao_adc_avr.c optional
23030     
23031     Signed-off-by: Keith Packard <keithp@keithp.com>
23032
23033 commit 440365bd17d804c2f574c35164612cf1682397d7
23034 Author: Keith Packard <keithp@keithp.com>
23035 Date:   Tue Oct 16 21:54:23 2012 -0700
23036
23037     altosui: Accept serial number of zero for eeprom download
23038     
23039     AVR-based products don't have a valid serial number, and so usually
23040     report 0. Accept this by making the 'no serial number' case check for
23041     negative values.
23042     
23043     Signed-off-by: Keith Packard <keithp@keithp.com>
23044
23045 commit 4d6d90e15db30991bf81060a0876ae8adb843c75
23046 Author: Keith Packard <keithp@keithp.com>
23047 Date:   Tue Oct 16 21:08:58 2012 -0700
23048
23049     altos/avr: Use ISR_BLOCK to disable interrupts during slave ISR
23050     
23051     This avoids enabling and then immediatly disabling them
23052     
23053     Signed-off-by: Keith Packard <keithp@keithp.com>
23054
23055 commit b8d8b23ca5e6c2d3a19f8aeda2764b43d25eb9d6
23056 Author: Keith Packard <keithp@keithp.com>
23057 Date:   Tue Oct 16 17:14:05 2012 -0700
23058
23059     altosui: Print exception stack trace when tracking flights
23060     
23061     More useful in fixing the problem
23062     
23063     Signed-off-by: Keith Packard <keithp@keithp.com>
23064
23065 commit ef9cb19d8b210e02eaa1c657833c1bd5fc619ad8
23066 Author: Keith Packard <keithp@keithp.com>
23067 Date:   Tue Oct 16 17:13:04 2012 -0700
23068
23069     altosui: Handle missing pad distance in descent tab
23070     
23071     When the GPS isn't locked, the distance from the pad cannot be
23072     computed and is left missing. Not crashing in this case is more useful.
23073     
23074     Signed-off-by: Keith Packard <keithp@keithp.com>
23075
23076 commit 60880bda2153ba3122c7102cd2bacbcca73b9e0d
23077 Author: Keith Packard <keithp@keithp.com>
23078 Date:   Mon Oct 15 00:24:57 2012 -0700
23079
23080     altos/telelco: Make the RSSI led turn red when no packet is received
23081     
23082     This involved splitting out the notion of ever having received an
23083     answer and having received an answer from the last query.
23084     
23085     Signed-off-by: Keith Packard <keithp@keithp.com>
23086
23087 commit 5f31f6652f4b0898214d06d009af823a1ed3b96a
23088 Author: Keith Packard <keithp@keithp.com>
23089 Date:   Mon Oct 15 00:24:28 2012 -0700
23090
23091     altos/telelco: 10ms is not enough time to get a packet back
23092     
23093     Not reliable, so bump to 20ms
23094     
23095     Signed-off-by: Keith Packard <keithp@keithp.com>
23096
23097 commit fdc00ec143022356bf8cdbb28812f045b439c549
23098 Author: Keith Packard <keithp@keithp.com>
23099 Date:   Mon Oct 15 00:07:57 2012 -0700
23100
23101     altos/telelco: Only display every 10th box number during scan
23102     
23103     This reduces the scan time to about 4 seconds, which seems tolerable
23104     
23105     Signed-off-by: Keith Packard <keithp@keithp.com>
23106
23107 commit c6069e38d6d2f9b37aa8671c41b4a470d92996a4
23108 Author: Keith Packard <keithp@keithp.com>
23109 Date:   Mon Oct 15 00:06:57 2012 -0700
23110
23111     altos/telelco: Crank up SPI speed to cc1111
23112     
23113     The cc1111 can handle up to 3MHz, so use 2MHz. Also, crank down the
23114     packet wait time to 10ms, which should be plenty long for the remote
23115     box to receive and return a packet.
23116     
23117     Signed-off-by: Keith Packard <keithp@keithp.com>
23118
23119 commit 80227c08444d5c82fd43320644cdeec6f34fee1b
23120 Author: Keith Packard <keithp@keithp.com>
23121 Date:   Mon Oct 15 00:06:10 2012 -0700
23122
23123     altos/stm: Declare all SPI bus speeds
23124     
23125     Just list them all so users can pick what they like
23126     
23127     Signed-off-by: Keith Packard <keithp@keithp.com>
23128
23129 commit 44c13005f34fdf7d4831e86e1f3e8729e9b67a68
23130 Author: Keith Packard <keithp@keithp.com>
23131 Date:   Sun Oct 14 23:40:58 2012 -0700
23132
23133     altos/telelco: Actually set pad when it changes
23134     
23135     Oops. Lost the actual assignment to the current pad
23136     
23137     Signed-off-by: Keith Packard <keithp@keithp.com>
23138
23139 commit b042f3d6e6b3241cd5e55cf893242ea599d3c0e9
23140 Author: Keith Packard <keithp@keithp.com>
23141 Date:   Sun Oct 14 23:24:49 2012 -0700
23142
23143     altos/telelco: Handle case where no boxes are present
23144     
23145     Don't infinite loop looking for something which isn't there
23146     
23147     Signed-off-by: Keith Packard <keithp@keithp.com>
23148
23149 commit 56ebb0a2f50fd56f4f0b0c695e516bee8fae36fb
23150 Author: Keith Packard <keithp@keithp.com>
23151 Date:   Sun Oct 14 23:16:45 2012 -0700
23152
23153     altos/telelco: Only present valid pads
23154     
23155     Limit pad display to valid pads, skipping missing ones.
23156     
23157     Signed-off-by: Keith Packard <keithp@keithp.com>
23158
23159 commit 84c56b1e92fca181207c468ea6351db3c2f196fb
23160 Author: Keith Packard <keithp@keithp.com>
23161 Date:   Sun Oct 14 23:04:44 2012 -0700
23162
23163     altos/telefire: Report valid channels instead of valid pins
23164     
23165     Now that pins don't match channels 1:1, make sure that the report back
23166     to the LCO names the channels instead of the pin numbers.
23167     
23168     Signed-off-by: Keith Packard <keithp@keithp.com>
23169
23170 commit 91b8c8b20cead2836ec835f44b4ca0cf06cbf518
23171 Author: Keith Packard <keithp@keithp.com>
23172 Date:   Sat Oct 13 15:04:46 2012 -0700
23173
23174     altos/test: Display MPU6000 values in ao_flight_test_mm output
23175     
23176     No computation yet, just making the values visible in the output
23177     
23178     Signed-off-by: Keith Packard <keithp@keithp.com>
23179
23180 commit c6eec0bec06d2e246ea3c9552818ad3180c1e318
23181 Author: Keith Packard <keithp@keithp.com>
23182 Date:   Sat Oct 13 15:04:00 2012 -0700
23183
23184     altos: Define full-scale gyro and accel values for MPU6000
23185     
23186     This lets other code convert MPU6000 readings into canonical units
23187     
23188     Signed-off-by: Keith Packard <keithp@keithp.com>
23189
23190 commit 5caf56e89678637c1afa79700a2fa09aa67dea9b
23191 Author: Keith Packard <keithp@keithp.com>
23192 Date:   Sat Oct 13 15:02:42 2012 -0700
23193
23194     altos: When missing MMA655x, create fake Z accel value
23195     
23196     This avoids overwriting the MPU6000 y acceleration value so that other
23197     computations using that value can work unmodified.
23198     
23199     Signed-off-by: Keith Packard <keithp@keithp.com>
23200
23201 commit 321d0f68c04a5a9c6ea7874081e6245d44c48bb4
23202 Author: Keith Packard <keithp@keithp.com>
23203 Date:   Sat Oct 13 13:39:03 2012 -0700
23204
23205     altos/test: Add ao_flight_test_mm
23206     
23207     This reads mega metrum eeprom files and runs the flight code over it
23208     
23209     Signed-off-by: Keith Packard <keithp@keithp.com>
23210
23211 commit 0ec77f5c90e0b930488ae2ab75efcbba8a3bd1d8
23212 Author: Keith Packard <keithp@keithp.com>
23213 Date:   Sat Oct 13 13:37:29 2012 -0700
23214
23215     altos: Eliminate implicit 1 byte offset in uint16/int16 functions
23216     
23217     Make callers explicitly compute the full offset
23218     
23219     Signed-off-by: Keith Packard <keithp@keithp.com>
23220
23221 commit 2733d1b71bbac2c5ef4a2c3a1992ba448e981267
23222 Author: Keith Packard <keithp@keithp.com>
23223 Date:   Sat Oct 13 13:35:42 2012 -0700
23224
23225     altos: Split out ms5607 conversion code for use in ao_flight_test
23226     
23227     Makes the conversion code available even where the driver isn't needed
23228     
23229     Signed-off-by: Keith Packard <keithp@keithp.com>
23230
23231 commit 46abd248fb2eb84f161672ffce121b2203d42be0
23232 Author: Keith Packard <keithp@keithp.com>
23233 Date:   Sat Oct 13 13:34:28 2012 -0700
23234
23235     altos: struct ao_log_mega doesn't have a ground temp value
23236     
23237     There's no averaged ground temperature recorded in the flight system
23238     to save there, so just remove the field
23239     
23240     Signed-off-by: Keith Packard <keithp@keithp.com>
23241
23242 commit eea1c8da986f9dbd0ca58c926a2bbe01721c1bda
23243 Author: Keith Packard <keithp@keithp.com>
23244 Date:   Sat Oct 13 13:33:45 2012 -0700
23245
23246     altos: Document a few member offsets in struct ao_log_record
23247     
23248     Incomplete, but useful even so
23249     
23250     Signed-off-by: Keith Packard <keithp@keithp.com>
23251
23252 commit c607bd1442e60fec1421955c996f6aad1d98647a
23253 Author: Keith Packard <keithp@keithp.com>
23254 Date:   Sat Oct 13 13:32:56 2012 -0700
23255
23256     altosui: Parse .mega files from command line
23257     
23258     Signed-off-by: Keith Packard <keithp@keithp.com>
23259
23260 commit 162a21dc423c2883a54f7d2a154871ae714d1552
23261 Author: Keith Packard <keithp@keithp.com>
23262 Date:   Fri Oct 12 14:27:14 2012 -0700
23263
23264     altos: Add .gitignore for micropeak
23265     
23266     Signed-off-by: Keith Packard <keithp@keithp.com>
23267
23268 commit 6cfb2d3b1c75916ee69d069519edc675e37e1aa1
23269 Author: Keith Packard <keithp@keithp.com>
23270 Date:   Fri Oct 12 14:26:08 2012 -0700
23271
23272     altos: Add (untested) driver for AT24C i2c flash parts
23273     
23274     Signed-off-by: Keith Packard <keithp@keithp.com>
23275
23276 commit b9bf8e01e243508297f28b102cb2477dc1bc74df
23277 Author: Keith Packard <keithp@keithp.com>
23278 Date:   Fri Oct 12 14:22:41 2012 -0700
23279
23280     altos: Add initial micropeak implementation
23281     
23282     Blinks out max height in decimeters, stores previous flight data to
23283     internal eeprom.
23284     
23285     Signed-off-by: Keith Packard <keithp@keithp.com>
23286
23287 commit 9c732effeb2ef4a4d8bc9599febed74a6ec2f466
23288 Author: Keith Packard <keithp@keithp.com>
23289 Date:   Fri Oct 12 14:18:37 2012 -0700
23290
23291     altos: Allow products to define which LED to panic with
23292     
23293     Continue to use AO_LED_RED by default.
23294     
23295     Signed-off-by: Keith Packard <keithp@keithp.com>
23296
23297 commit 767b74e1466ad4e31746340081d6d60e40359425
23298 Author: Keith Packard <keithp@keithp.com>
23299 Date:   Fri Oct 12 14:08:19 2012 -0700
23300
23301     altos: Megametrum uses altitude-pa.h, not altitude.h
23302     
23303     Make sure megametrum gets rebuilt as needed when the various
23304     altitude-pa related files change
23305     
23306     Signed-off-by: Keith Packard <keithp@keithp.com>
23307
23308 commit 64500ab11ab76d2309608f8e02a1dd9658963b3e
23309 Author: Keith Packard <keithp@keithp.com>
23310 Date:   Fri Oct 12 14:04:57 2012 -0700
23311
23312     altos: Add attiny architecture files
23313     
23314     These are designed to work with the ATtiny85 processor, but can
23315     presuambly be easily adapted to others in that series
23316     
23317     Signed-off-by: Keith Packard <keithp@keithp.com>
23318
23319 commit 16bad3b6ab65cf31b19152127cb6af69142c5c12
23320 Author: Keith Packard <keithp@keithp.com>
23321 Date:   Fri Oct 12 14:03:28 2012 -0700
23322
23323     altos: Include struct ao_data declaration only when used
23324     
23325     Leave it out for products that don't have a ring of sensor data
23326     
23327     Signed-off-by: Keith Packard <keithp@keithp.com>
23328
23329 commit 7751c9cbc630f7251b8988f8da68be9a54ff552c
23330 Author: Keith Packard <keithp@keithp.com>
23331 Date:   Fri Oct 12 14:02:29 2012 -0700
23332
23333     altos: Clean up types in Pa conversion testing code. Only test to 40km
23334     
23335     A couple of missing 'int' declarations.
23336     Only test to 40km as above that there aren't enough data points to do
23337     anything reasonable
23338     
23339     Signed-off-by: Keith Packard <keithp@keithp.com>
23340
23341 commit 866d10b3faa96f6c5a2c495a2c12a0d2bc8259ef
23342 Author: Keith Packard <keithp@keithp.com>
23343 Date:   Fri Oct 12 14:01:16 2012 -0700
23344
23345     altos: Elide ao_altitude_to_pa in flight firmware
23346     
23347     Only the conversion testing code needs to get back from altitude to
23348     pressure, so don't include that code in other environments.
23349     
23350     Signed-off-by: Keith Packard <keithp@keithp.com>
23351
23352 commit 68308908afbd1f04b17056d2be408c89b3578c86
23353 Author: Keith Packard <keithp@keithp.com>
23354 Date:   Fri Oct 12 13:59:50 2012 -0700
23355
23356     altos: Parameterize altitude table access and initialization
23357     
23358     This allows projects to store the altitude data in different
23359     representations or with different access modes.
23360     
23361     By default, altitude data is stored in meters, but the initializers
23362     include decimeter values so those can be used instead if desired.
23363     
23364     Signed-off-by: Keith Packard <keithp@keithp.com>
23365
23366 commit 175380a436efa35bbfae2ee5e29e12e9ef86fbde
23367 Author: Keith Packard <keithp@keithp.com>
23368 Date:   Fri Oct 12 13:57:49 2012 -0700
23369
23370     altos: Use alt_t for all Pascal-based altitude data
23371     
23372     This allows alt_t to be overridden for systems using the MS5607/MS5611
23373     sensors
23374     
23375     Signed-off-by: Keith Packard <keithp@keithp.com>
23376
23377 commit be0a28ee7a6fbd98fc8113db8501bb791a112fa0
23378 Author: Keith Packard <keithp@keithp.com>
23379 Date:   Fri Oct 12 13:55:33 2012 -0700
23380
23381     altos: Allow for other mutex implementations
23382     
23383     Allow projects to replace ao_mutex_get and ao_mutex_put with macros
23384     
23385     Signed-off-by: Keith Packard <keithp@keithp.com>
23386
23387 commit 6a3ee911353291b04e161d50a181ed4211d467a2
23388 Author: Keith Packard <keithp@keithp.com>
23389 Date:   Fri Oct 12 13:54:37 2012 -0700
23390
23391     altos: Allow projects to specify clock at other than 100Hz
23392     
23393     Leave the default at 100Hz, but allow it to be overridden
23394     
23395     Signed-off-by: Keith Packard <keithp@keithp.com>
23396
23397 commit 7795d8309b3e1147bc37d31a0adde42d7dee6cd1
23398 Author: Keith Packard <keithp@keithp.com>
23399 Date:   Fri Oct 12 13:37:07 2012 -0700
23400
23401     altos: Prepare ms5607 driver for use in non-tasking products
23402     
23403     Micropeak doesn't have tasking, prepare the ms5607 driver for that
23404     
23405     Signed-off-by: Keith Packard <keithp@keithp.com>
23406
23407 commit a07b8ba166e05e7d1722c59651ef00e9fb7580d5
23408 Author: Keith Packard <keithp@keithp.com>
23409 Date:   Fri Oct 12 13:31:17 2012 -0700
23410
23411     altos: Split task definitions out to ao_task.h
23412     
23413     And only include them if using tasks
23414     
23415     Signed-off-by: Keith Packard <keithp@keithp.com>
23416
23417 commit 3f059f8878a79b3154a19b6803fbc367eda80dc9
23418 Author: Keith Packard <keithp@keithp.com>
23419 Date:   Wed Oct 10 14:28:07 2012 -0700
23420
23421     altos/telefire: Add siren/strobe support
23422     
23423     This also involved hacking up the code to allow for non-zero offsets
23424     for the pad firing and continuity pins.
23425     
23426     Signed-off-by: Keith Packard <keithp@keithp.com>
23427
23428 commit 0361235c9ef56738ba0e97be88a85afef0ce8268
23429 Author: Keith Packard <keithp@keithp.com>
23430 Date:   Mon Oct 8 23:24:19 2012 -0700
23431
23432     altos: Fix up ms5607 and mma655x commands to work again
23433     
23434     These just display the most recently fetched values
23435     
23436     Signed-off-by: Keith Packard <keithp@keithp.com>
23437
23438 commit 39c5738acdfdf0c87b64de6135fe107971cfa12b
23439 Author: Keith Packard <keithp@keithp.com>
23440 Date:   Mon Oct 8 23:04:16 2012 -0700
23441
23442     altos: Go back to recording sensor data in globals
23443     
23444     Instead of trying to get things into the ring from a variety of
23445     functions, go back to the simpler method of storing them in globals
23446     and having the ADC code just pluck out the most recent values.
23447     
23448     Signed-off-by: Keith Packard <keithp@keithp.com>
23449
23450 commit 422799d9be36ef71b63c1c0fd80d5e76da802949
23451 Author: Keith Packard <keithp@keithp.com>
23452 Date:   Mon Oct 8 21:59:55 2012 -0700
23453
23454     altos: Compute desired frequency when upgrading from pre-1.1
23455     
23456     Instead of just smashing the frequency to 434.550, compute the
23457     frequency from the old radio channel value
23458     
23459     Signed-off-by: Keith Packard <keithp@keithp.com>
23460
23461 commit 16bbe9d25856259d2694751c364b668638e4a971
23462 Author: Keith Packard <keithp@keithp.com>
23463 Date:   Sun Oct 7 15:40:41 2012 -0700
23464
23465     altos/megametrum: Try running accel and baro in parallel again
23466     
23467     Now that the baro sensor appears to be working, try running
23468     conversions in parallel to see if that makes the accel cal happy
23469     
23470     Signed-off-by: Keith Packard <keithp@keithp.com>
23471
23472 commit 6d47dd1d9104745cf68bef23b066c5033ca30a84
23473 Author: Keith Packard <keithp@keithp.com>
23474 Date:   Sat Oct 6 19:39:15 2012 -0700
23475
23476     altos/stm: Set SPI clock high for disabled SPI busses
23477     
23478     This should avoid an accidental low->high transition when switching
23479     between multiple SPI busses.
23480     
23481     Signed-off-by: Keith Packard <keithp@keithp.com>
23482
23483 commit d4b1dffeef3e9ea96e143f74782e4da7d116c0d4
23484 Author: Keith Packard <keithp@keithp.com>
23485 Date:   Sat Oct 6 18:25:15 2012 -0700
23486
23487     altos/telefire: Make sure armed alarm goes off on time
23488     
23489     Instead of turning the alarm off when a packet is received after the
23490     deadline, just do it in the thread which is awake all of the time.
23491     
23492     This prevents the alarm from sticking on when the LCO box is turned
23493     off while the arming key is on.
23494     
23495     Signed-off-by: Keith Packard <keithp@keithp.com>
23496
23497 commit 35cb2dc51708ab572a4c72422e5902a313eda58e
23498 Author: Keith Packard <keithp@keithp.com>
23499 Date:   Sat Oct 6 17:56:23 2012 -0700
23500
23501     altos/stm: Clean up SPI pin configuration code
23502     
23503     Make sure none of the pin configurations are being used at startup
23504     time. Split out the pin configuration into separate functions.
23505     
23506     Signed-off-by: Keith Packard <keithp@keithp.com>
23507
23508 commit 41add569413bf3ec564195963277c81f2d2da798
23509 Author: Keith Packard <keithp@keithp.com>
23510 Date:   Sat Oct 6 17:21:55 2012 -0700
23511
23512     altos/drivers: Use data ring values for MS5607 presentation
23513     
23514     Signed-off-by: Keith Packard <keithp@keithp.com>
23515
23516 commit 0b28eefe6b32033a0e85731aa38af7e07a8b45f5
23517 Author: Keith Packard <keithp@keithp.com>
23518 Date:   Sat Oct 6 17:21:10 2012 -0700
23519
23520     altos/megametrum: Make MS5607 driver hold SPI bus for whole operation
23521     
23522     Signed-off-by: Keith Packard <keithp@keithp.com>
23523
23524 commit c676ad8048d10ad9da22ea3acf19e4e1872103ff
23525 Author: Keith Packard <keithp@keithp.com>
23526 Date:   Sat Oct 6 17:05:59 2012 -0700
23527
23528     altos/megametrum: Use mma655x for acceleration measurements now
23529     
23530     Signed-off-by: Keith Packard <keithp@keithp.com>
23531
23532 commit 82fdc42d61340e6b76580ff12a9e1bea59eb8079
23533 Merge: 6b8881a 2cac8c5
23534 Author: Keith Packard <keithp@keithp.com>
23535 Date:   Wed Oct 3 10:44:28 2012 -0700
23536
23537     Merge branch 'master' into mm-ms5611
23538
23539 commit 2cac8c572ce533ded89dae9a412b4d1b5c748342
23540 Author: Keith Packard <keithp@keithp.com>
23541 Date:   Wed Oct 3 10:43:28 2012 -0700
23542
23543     altos: Re-enable the ms5607 and mma655x acquisition threads
23544     
23545     These were disabled to help with testing in Argonia
23546     
23547     Signed-off-by: Keith Packard <keithp@keithp.com>
23548
23549 commit 6b8881a7bdb9f89306a700e9a8853b00df29bf5d
23550 Author: Keith Packard <keithp@keithp.com>
23551 Date:   Wed Oct 3 07:50:48 2012 -0700
23552
23553     altos/megametrum: Commit for boards with MS5611 baro sensor
23554     
23555     Signed-off-by: Keith Packard <keithp@keithp.com>
23556
23557 commit fdd08cc093134c5f87dab9533b99a042a699381b
23558 Author: Keith Packard <keithp@keithp.com>
23559 Date:   Fri Sep 28 22:39:55 2012 -0700
23560
23561     altos: Provide MS5611 configuration option, HAS_MS5611
23562     
23563     MS5611 and MS5607 use slightly different conversion functions. Alas,
23564     there doesn't appear to be a way to tell them apart in software. This
23565     patch adds the necessary conversion changes and makes them depend on a
23566     compile-time configuration option.
23567     
23568     Signed-off-by: Keith Packard <keithp@keithp.com>
23569
23570 commit dc7216d286cc7fe8007f5208ad97a630166572f3
23571 Author: Keith Packard <keithp@keithp.com>
23572 Date:   Fri Sep 21 13:29:17 2012 +0200
23573
23574     altos: Shrink Pa to altitude table
23575     
23576     This improves the computation of the table enough that errors from a
23577     470 entry table are almost all < 0.5m.
23578     
23579     Signed-off-by: Keith Packard <keithp@keithp.com>
23580
23581 commit 7c6231ecef2e4f978a0de452a17a2a24e6e68827
23582 Author: Keith Packard <keithp@keithp.com>
23583 Date:   Thu Sep 20 11:33:24 2012 +0200
23584
23585     Bump revision to 1.2 development branch
23586     
23587     With 1.1 out the door, this now starts the 1.2 development series
23588     
23589     Signed-off-by: Keith Packard <keithp@keithp.com>
23590
23591 commit 2f2734bb418f5c3a89fa3f1bf1b98ce4cfe432e1
23592 Merge: e69a433 3fe5c2f
23593 Author: Keith Packard <keithp@keithp.com>
23594 Date:   Thu Sep 20 11:30:19 2012 +0200
23595
23596     Merge remote-tracking branch 'mjb/altosdroid'
23597
23598 commit e69a433fd93b9f6bd2297d8045eb075fee29e73b
23599 Merge: 19243ec 6e0d672
23600 Author: Keith Packard <keithp@keithp.com>
23601 Date:   Thu Sep 20 11:30:11 2012 +0200
23602
23603     Merge remote-tracking branch 'mjb/prefs_interface'
23604
23605 commit 19243ecc9b5bbdcc069ae24acf1ca807322c84d8
23606 Merge: 90c1b6d 0ef8b71
23607 Author: Keith Packard <keithp@keithp.com>
23608 Date:   Thu Sep 20 11:29:55 2012 +0200
23609
23610     Merge remote-tracking branch 'mjb/altosui_mjb'
23611
23612 commit 3fe5c2f9fc01258d45c20070e9874d76bc6c8c07
23613 Author: Mike Beattie <mike@ethernal.org>
23614 Date:   Tue Sep 18 23:47:50 2012 +1200
23615
23616     altosdroid: initial implementation of telemetry logging.
23617     
23618     Signed-off-by: Mike Beattie <mike@ethernal.org>
23619
23620 commit 0541201d4afe3e5d7913465e1db10e586d7182bb
23621 Author: Mike Beattie <mike@ethernal.org>
23622 Date:   Tue Sep 18 23:47:06 2012 +1200
23623
23624     altoslib: make parts of AltosLog public for usage outside altoslib.
23625     
23626     Signed-off-by: Mike Beattie <mike@ethernal.org>
23627
23628 commit c058ec2d6070458a0b7d3ef56041e985412ee565
23629 Author: Mike Beattie <mike@ethernal.org>
23630 Date:   Tue Sep 18 23:46:17 2012 +1200
23631
23632     altos{lib,ui,droid}: move OS specific code out of altoslib
23633     
23634     This is to allow the usage of AltosLog on Android - no swing, so
23635     we need to push the "home directory" code used to pick a default
23636     telemetry logging path - using the PreferencesBackend interface
23637     for now.
23638     
23639     Signed-off-by: Mike Beattie <mike@ethernal.org>
23640
23641 commit 36e684724e327dbd4319411ef0602fafb4d0c073
23642 Author: Mike Beattie <mike@ethernal.org>
23643 Date:   Tue Sep 18 23:43:18 2012 +1200
23644
23645     altosdroid: cosmetic re-order of methods
23646     
23647     Signed-off-by: Mike Beattie <mike@ethernal.org>
23648
23649 commit 8f11a6d2c3de228c3cefb95a7d1a76d53e532acd
23650 Author: Mike Beattie <mike@ethernal.org>
23651 Date:   Tue Sep 18 23:42:11 2012 +1200
23652
23653     altosdroid: simplify keys() method
23654     
23655     Signed-off-by: Mike Beattie <mike@ethernal.org>
23656
23657 commit f79b445cc29fc1e424f99c97e71c7d3637bf4ba6
23658 Author: Mike Beattie <mike@ethernal.org>
23659 Date:   Tue Sep 18 23:38:12 2012 +1200
23660
23661     altosdroid: Update Makefile.am
23662     
23663     Signed-off-by: Mike Beattie <mike@ethernal.org>
23664
23665 commit 90c1b6db8d1f401a992fe44983b3df64739fe263
23666 Author: Bdale Garbee <bdale@gag.com>
23667 Date:   Sun Sep 16 15:12:26 2012 -0600
23668
23669     further refinment of Releasing document
23670
23671 commit 7a0cce7fa0c802b1597fef94cfaf00aa0c28c988
23672 Author: Bdale Garbee <bdale@gag.com>
23673 Date:   Sun Sep 16 13:59:21 2012 -0600
23674
23675     releasing 1.1.1
23676
23677 commit 0cd443d5e55b2c3b97ecf53389ff76bc4bc6018f
23678 Author: Keith Packard <keithp@keithp.com>
23679 Date:   Sun Sep 16 12:38:33 2012 -0700
23680
23681     Add release notes for version 1.1.1
23682     
23683     Signed-off-by: Keith Packard <keithp@keithp.com>
23684
23685 commit fe8ab96e8727c25c04cac473cafb264cf7e80156
23686 Author: Mike Beattie <mike@ethernal.org>
23687 Date:   Mon Sep 17 01:29:33 2012 +1200
23688
23689     altosdroid: implement AltosPreferencesBackend, and initialize.
23690     
23691     Signed-off-by: Mike Beattie <mike@ethernal.org>
23692
23693 commit 52d3cad4f744140e1aa06fdfc0d49a0cf8734fd4
23694 Merge: 31f5a02 6e0d672
23695 Author: Mike Beattie <mike@ethernal.org>
23696 Date:   Sun Sep 16 22:27:04 2012 +1200
23697
23698     Merge branch 'prefs_interface' into altosdroid
23699
23700 commit cb48dd0b03b445437f751028e8383610b65b0a68
23701 Author: Keith Packard <keithp@keithp.com>
23702 Date:   Sun Sep 16 02:39:25 2012 -0700
23703
23704     altos: Fix telemini sdcdb init file
23705     
23706     Set the driver source path for the debugger
23707     
23708     Signed-off-by: Keith Packard <keithp@keithp.com>
23709
23710 commit 3520bbf1ed6461d1ce7af001c529563a3cffa3c9
23711 Author: Keith Packard <keithp@keithp.com>
23712 Date:   Sun Sep 16 00:58:20 2012 -0700
23713
23714     altosui: Gather Tm sensor data in Monitor Idle mode
23715     
23716     Tm is pretty much the same as TM for the analog sensors, it's just
23717     missing the accelerometr. Use the same code for constructing an
23718     AltosRecord for it
23719     
23720     Signed-off-by: Keith Packard <keithp@keithp.com>
23721
23722 commit 31f5a02654cbf172beed25f4c518dfb7be8c714e
23723 Author: Keith Packard <keithp@keithp.com>
23724 Date:   Fri Sep 14 16:56:04 2012 -0700
23725
23726     altos: Need to use 16-bit counts for ao_xmem functions
23727     
23728     Trying to use 8-bit counts is a nice optimization which fails when the
23729     count is larger than 255, as is the case with clearing the flash block
23730     in the AT45 driver. This bug resulted in the inability to erase
23731     flights on TeleMetrum v1.0 boards.
23732     
23733     Signed-off-by: Keith Packard <keithp@keithp.com>
23734
23735 commit b898cf0a2abf2b0478d5afc5aca030c6b4c8bd0b
23736 Author: Keith Packard <keithp@keithp.com>
23737 Date:   Fri Sep 14 12:59:31 2012 -0700
23738
23739     altosui: Show over-ground-distance in Descent tab
23740     
23741     Helps to know where the rocket might land.
23742     
23743     Signed-off-by: Keith Packard <keithp@keithp.com>
23744
23745 commit f36f73b2d02b72201683cf5795851034bbd6f28e
23746 Author: Keith Packard <keithp@keithp.com>
23747 Date:   Fri Sep 14 12:58:54 2012 -0700
23748
23749     altosui: Remove debugging from KML export
23750     
23751     Left in from testing the Eeprom export bug
23752     
23753     Signed-off-by: Keith Packard <keithp@keithp.com>
23754
23755 commit 97ab77d548964115e4b41ad5952194fcd1455c96
23756 Author: Keith Packard <keithp@keithp.com>
23757 Date:   Fri Sep 14 11:13:02 2012 -0700
23758
23759     altosui: Fix Landed tab units
23760     
23761     And clean up the whole flight value reporting code base. It would be
23762     nice to create a separate class to make this easier; at present
23763     there's a bunch of customization embedded in how values are presented
23764     in each tab.
23765     
23766     Reported by: Bdale Garbee <bdale@gag.com>
23767     Signed-off-by: Keith Packard <keithp@keithp.com>
23768
23769 commit 43e646657502f6162fa02f37fd2bd5aa3e29a1a8
23770 Author: Keith Packard <keithp@keithp.com>
23771 Date:   Fri Sep 14 11:08:57 2012 -0700
23772
23773     altoslib: Update GPS seen_values in AltosEepromIterable
23774     
23775     Otherwise, KML export won't ever get GPS data to write.
23776     
23777     Reported by: Bob Brown <prefect@kloudbusters.org>
23778     Signed-off-by: Keith Packard <keithp@keithp.com>
23779
23780 commit 7b6dd9105ba36aa11d6d0ee6e0823965b9beffb9
23781 Author: Keith Packard <keithp@keithp.com>
23782 Date:   Fri Sep 14 11:08:19 2012 -0700
23783
23784     altoslib: Remove duplicate seen_ values in AltosEepromIterable
23785     
23786     These are defined in AltosRecord; duplicating them is not a good plan
23787     
23788     Signed-off-by: Keith Packard <keithp@keithp.com>
23789
23790 commit 6e0d672b8a516a604d8ea1abd2bed113c608143f
23791 Author: Mike Beattie <mike@ethernal.org>
23792 Date:   Fri Sep 14 12:43:21 2012 +1200
23793
23794     altosui: remove un-used import
23795     
23796     Signed-off-by: Mike Beattie <mike@ethernal.org>
23797
23798 commit f985ea055d935b10ae9ae8441fe808ba2c13c99e
23799 Author: Mike Beattie <mike@ethernal.org>
23800 Date:   Fri Sep 14 01:27:22 2012 +1200
23801
23802     altosui: revert AltosUIPreferences init() method
23803     
23804     Signed-off-by: Mike Beattie <mike@ethernal.org>
23805
23806 commit 9335a74694df00c4876055e7c98661236646f6e5
23807 Author: Mike Beattie <mike@ethernal.org>
23808 Date:   Fri Sep 14 01:08:53 2012 +1200
23809
23810     altosui: Add return to try/catch.. duh
23811     
23812     Signed-off-by: Mike Beattie <mike@ethernal.org>
23813
23814 commit d5e199c34ff5a02a4c4cc917c3f0eec32eae72a9
23815 Author: Mike Beattie <mike@ethernal.org>
23816 Date:   Fri Sep 14 01:06:59 2012 +1200
23817
23818     altosui: add missing try/catch
23819     
23820     Signed-off-by: Mike Beattie <mike@ethernal.org>
23821
23822 commit 26c83bc0981036651a89c29771b2ad52c8fb0396
23823 Author: Mike Beattie <mike@ethernal.org>
23824 Date:   Fri Sep 14 01:03:53 2012 +1200
23825
23826     altosui/altoslib: bug fixes, update Makefile.am
23827     
23828     Signed-off-by: Mike Beattie <mike@ethernal.org>
23829
23830 commit 08345b8909922f2ff8f9ed8b4497b9cbea6b26e9
23831 Author: Mike Beattie <mike@ethernal.org>
23832 Date:   Fri Sep 14 00:53:56 2012 +1200
23833
23834     altosui/altoslib: Add call to …Preferences.init() with backend object, remove static init()
23835     
23836     Signed-off-by: Mike Beattie <mike@ethernal.org>
23837
23838 commit 17127847300de9a6782b901926a3fcb9ef021b78
23839 Author: Mike Beattie <mike@ethernal.org>
23840 Date:   Fri Sep 14 00:46:34 2012 +1200
23841
23842     altoslib: Add AltosPreferencesBackend.java to Makefile.am
23843     
23844     Signed-off-by: Mike Beattie <mike@ethernal.org>
23845
23846 commit d875b459b5e9f7bcbbbbe318f947b0451ce6738f
23847 Author: Mike Beattie <mike@ethernal.org>
23848 Date:   Fri Sep 14 00:44:59 2012 +1200
23849
23850     altosui/altoslib: add methods to interface, fix imports/exceptions in BT code
23851     
23852     Signed-off-by: Mike Beattie <mike@ethernal.org>
23853
23854 commit 67b618409a0d34fff26cac6025bc159ff92ede9c
23855 Author: Mike Beattie <mike@ethernal.org>
23856 Date:   Fri Sep 14 00:40:16 2012 +1200
23857
23858     altosui: add missing methods for Backend, fix BT code.
23859     
23860     Signed-off-by: Mike Beattie <mike@ethernal.org>
23861
23862 commit ec036e8fe057f4b641ba9ee17d6dce2689816047
23863 Author: Mike Beattie <mike@ethernal.org>
23864 Date:   Fri Sep 14 00:25:49 2012 +1200
23865
23866     altoslib/altosui: begin moving preferences "backend" into interface
23867     
23868     Signed-off-by: Mike Beattie <mike@ethernal.org>
23869
23870 commit 0ef8b7148784ed5bcbea21dde313fb02f50ef734
23871 Author: Mike Beattie <mike@ethernal.org>
23872 Date:   Fri Sep 14 13:17:24 2012 +1200
23873
23874     altosui: comment out obsolete code - could probably remove the file.
23875     
23876     Signed-off-by: Mike Beattie <mike@ethernal.org>
23877
23878 commit 6daf71d0af7ffdbbfdb7436edd536bc811850d42
23879 Author: Mike Beattie <mike@ethernal.org>
23880 Date:   Fri Sep 14 13:16:48 2012 +1200
23881
23882     altosui: add type to … implements Comparable.
23883     
23884     Signed-off-by: Mike Beattie <mike@ethernal.org>
23885
23886 commit d3d69bdecfcb45d1e3a8c6b10c80eef1afcc2310
23887 Author: Mike Beattie <mike@ethernal.org>
23888 Date:   Fri Sep 14 13:16:16 2012 +1200
23889
23890     altosui: comment out/remove dead code
23891     
23892     Signed-off-by: Mike Beattie <mike@ethernal.org>
23893
23894 commit c9fa8faabb6f7fb59714c42e1029ce3d71c52ff8
23895 Author: Mike Beattie <mike@ethernal.org>
23896 Date:   Fri Sep 14 13:15:36 2012 +1200
23897
23898     altosui: access class variables by class, not instance
23899     
23900     Signed-off-by: Mike Beattie <mike@ethernal.org>
23901
23902 commit f9e1c5949a24e27897587b0b0ca00e089f362215
23903 Author: Mike Beattie <mike@ethernal.org>
23904 Date:   Fri Sep 14 13:15:07 2012 +1200
23905
23906     altosui: remove redundant catches
23907     
23908     Signed-off-by: Mike Beattie <mike@ethernal.org>
23909
23910 commit 38fb6c070ffaf820d524fecce540d91fc6dda57b
23911 Author: Mike Beattie <mike@ethernal.org>
23912 Date:   Fri Sep 14 13:14:31 2012 +1200
23913
23914     altosui: comment out un-used classes and associated imports
23915     
23916     Signed-off-by: Mike Beattie <mike@ethernal.org>
23917
23918 commit ce1b19a012a2c1c623b03efb93b881e297736718
23919 Author: Mike Beattie <mike@ethernal.org>
23920 Date:   Fri Sep 14 13:13:35 2012 +1200
23921
23922     altosui: comment out un-used fields and methods
23923     
23924     Signed-off-by: Mike Beattie <mike@ethernal.org>
23925
23926 commit 382c54a0d052c8975b57c995ef83bc8934bde242
23927 Author: Mike Beattie <mike@ethernal.org>
23928 Date:   Fri Sep 14 13:09:58 2012 +1200
23929
23930     altosui: remove un-used imports
23931     
23932     Signed-off-by: Mike Beattie <mike@ethernal.org>
23933
23934 commit eefcfa94f360f8c5a7233370d4178525bccbb22f
23935 Author: Bdale Garbee <bdale@gag.com>
23936 Date:   Thu Sep 13 16:13:42 2012 -0600
23937
23938     add note about checking doc copyright date and revision history to Releasing
23939
23940 commit 2441090f26c3df66a6ce48d64e64384ce9e5ef82
23941 Author: Keith Packard <keithp@keithp.com>
23942 Date:   Thu Sep 13 15:12:33 2012 -0700
23943
23944     doc: Add revision history for 1.1. Update copyright date
23945     
23946     Signed-off-by: Keith Packard <keithp@keithp.com>
23947
23948 commit 320d90c376dccfe1599505e3b485df8d46e34bb3
23949 Merge: 9a7d643 2e6c6a6
23950 Author: Bdale Garbee <bdale@gag.com>
23951 Date:   Thu Sep 13 15:36:37 2012 -0600
23952
23953     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
23954
23955 commit 2e6c6a6c15a7cff9f20b70a4cf58697da1302f01
23956 Author: Keith Packard <keithp@keithp.com>
23957 Date:   Thu Sep 13 00:35:27 2012 -0700
23958
23959     doc: Document imperial units and groundstation configuration
23960     
23961     What it says on the tin.
23962     
23963     Signed-off-by: Keith Packard <keithp@keithp.com>
23964
23965 commit 9a7d6431777ce3377b788ddac6cb9fadd53c039c
23966 Merge: 2439f53 9728b20
23967 Author: Bdale Garbee <bdale@gag.com>
23968 Date:   Thu Sep 13 00:58:30 2012 -0600
23969
23970     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
23971
23972 commit 9728b20a4ad9576ac1022dc9a5771f5a3eb92b3d
23973 Author: Keith Packard <keithp@keithp.com>
23974 Date:   Wed Sep 12 23:56:18 2012 -0700
23975
23976     altosui: Exit with an error status when file processing fails
23977     
23978     If the user provides any files on the command line, and if processing
23979     them fails in some way, exit immediately with an error indication.
23980     
23981     Signed-off-by: Keith Packard <keithp@keithp.com>
23982
23983 commit 0564f9b13d4e3050b0a45fc1c4f710ab2b1f9d81
23984 Author: Keith Packard <keithp@keithp.com>
23985 Date:   Wed Sep 12 22:40:57 2012 -0700
23986
23987     altosui: Leave new_gps indication until gps value is used
23988     
23989     During replay, AltosState may not see a new GPS value as soon as it
23990     lands in the state field as additional records with the same timestamp
23991     may come in after the GPS record.
23992     
23993     Instead of resetting the new_gps indication when the new record is
23994     created, wait until the new_gps indication is seen by the AltosState
23995     update code and have that clear the new_gps indication.
23996     
23997     Signed-off-by: Keith Packard <keithp@keithp.com>
23998
23999 commit 7e237920abb582d7ceb3e1925b11a848575ac68a
24000 Author: Keith Packard <keithp@keithp.com>
24001 Date:   Wed Sep 12 21:32:25 2012 -0700
24002
24003     altosui: Stop downloading eeprom data on a block full of invalid data
24004     
24005     When no valid records are found within an eeprom block, we assume that
24006     no more data will be found within the entire storage area.
24007     
24008     Signed-off-by: Keith Packard <keithp@keithp.com>
24009
24010 commit 2439f53ea21c84f7c510dc191dde025ada24281f
24011 Author: Bdale Garbee <bdale@gag.com>
24012 Date:   Wed Sep 12 21:50:25 2012 -0600
24013
24014     document workaround for 'make fat' not building altoslib
24015
24016 commit 07d9ba938f2742da1bce5d8df55cbc236207a981
24017 Author: Bdale Garbee <bdale@gag.com>
24018 Date:   Wed Sep 12 19:50:07 2012 -0600
24019
24020     update Releasing for non-native versioning and builds on debian branch
24021
24022 commit fe009534ce6846b6db96cac8f6c2d53ba8010d91
24023 Merge: 69d42b2 8ee29fe
24024 Author: Bdale Garbee <bdale@gag.com>
24025 Date:   Wed Sep 12 19:49:51 2012 -0600
24026
24027     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
24028
24029 commit 8ee29fe48771dd22a0c5428761ee53a728495d11
24030 Author: Keith Packard <keithp@keithp.com>
24031 Date:   Wed Sep 12 16:07:41 2012 -0700
24032
24033     altosui: Serialize data access in TD config code
24034     
24035     Setting the values was being done in the UI thread instead of the
24036     Serial thread, which left the serial thread with uninitialized values
24037     when it went to update the displayed value for the current
24038     frequency. All fixed now.
24039     
24040     Signed-off-by: Keith Packard <keithp@keithp.com>
24041
24042 commit 19e35de47157923670b1864ce7b04f8d82f3bdea
24043 Author: Keith Packard <keithp@keithp.com>
24044 Date:   Wed Sep 12 16:06:59 2012 -0700
24045
24046     altosui: Lock access to preferences data
24047     
24048     These are accessed by several different threads, so keep things sane
24049     by just holding locks across all access.
24050     
24051     Signed-off-by: Keith Packard <keithp@keithp.com>
24052
24053 commit 1b5340c2b75c500011355c4889da443c4b9c4891
24054 Author: Keith Packard <keithp@keithp.com>
24055 Date:   Wed Sep 12 13:07:01 2012 -0700
24056
24057     altosui: Add multi-sized icons to all windows
24058     
24059     This lets the window system pick a better size for presentation
24060     
24061     Signed-off-by: Keith Packard <keithp@keithp.com>
24062
24063 commit 3e4fc0b3953655eb720372d9b4274cd4bca19556
24064 Author: Tom Marble <tmarble@info9.net>
24065 Date:   Wed Sep 12 10:05:42 2012 -0500
24066
24067     Reference specific dependent jars in the AltosUI launchers
24068
24069 commit f0f4f907042e12815284abe1b63ae2d4a5a2d598
24070 Author: Keith Packard <keithp@keithp.com>
24071 Date:   Wed Sep 12 02:30:59 2012 -0700
24072
24073     doc: Mention changes to flight data download UI
24074     
24075     Signed-off-by: Keith Packard <keithp@keithp.com>
24076
24077 commit 42bbe15512533f2d958b8219a02fbd256593092a
24078 Author: Keith Packard <keithp@keithp.com>
24079 Date:   Wed Sep 12 02:26:32 2012 -0700
24080
24081     altosui: Initialize flight velocity to zero when reading eeprom files
24082     
24083     Otherwise, the integration of velocity will start at MISSING and get
24084     stranger. Fortunately, we know the initial velocity of the rocket when
24085     sitting on the pad.
24086     
24087     Signed-off-by: Keith Packard <keithp@keithp.com>
24088
24089 commit b3c3c6eabd6837f0e72acee3906c8f71c6f0030e
24090 Author: Keith Packard <keithp@keithp.com>
24091 Date:   Tue Sep 11 23:37:20 2012 -0700
24092
24093     altosui: Don't say a decimal point for distances in meters
24094     
24095     Useful for distances in miles, but not meters.
24096     
24097     Signed-off-by: Keith Packard <keithp@keithp.com>
24098
24099 commit 87f9a8923656f275f74cfb6c8c6a57bbe59e74f8
24100 Author: Keith Packard <keithp@keithp.com>
24101 Date:   Tue Sep 11 23:36:26 2012 -0700
24102
24103     altosui: Initialize imperial units checkbox with correct value
24104     
24105     Use imperial units preference instead of serial debug preference. Cut
24106     & paste programming failure...
24107     
24108     Signed-off-by: Keith Packard <keithp@keithp.com>
24109
24110 commit 69d42b26223b45df4167aa3baafba100ad71baab
24111 Merge: 3e9078c 3fa5fbd
24112 Author: Bdale Garbee <bdale@gag.com>
24113 Date:   Wed Sep 12 00:26:21 2012 -0600
24114
24115     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
24116
24117 commit 3fa5fbdfd1ab257028f272fbc32759b39608ddaf
24118 Author: Keith Packard <keithp@keithp.com>
24119 Date:   Tue Sep 11 23:04:19 2012 -0700
24120
24121     Clean up Windows event handles on com port close
24122     
24123     This avoids having to wait for the receiver to timeout before we can
24124     open the same com port again.
24125     
24126     This patch also adds a bit more debugging -- it prints Windows error
24127     messages to stdout along with the file/line where the error was generated.
24128     
24129     Signed-off-by: Keith Packard <keithp@keithp.com>
24130
24131 commit 1a154ce0b9fc3ea360d6bc7e17d6debb2da94438
24132 Author: Keith Packard <keithp@keithp.com>
24133 Date:   Tue Sep 11 22:03:17 2012 -0700
24134
24135     Include AltosLib.jar in windows install
24136     
24137     Otherwise, altosui doesn't do much.
24138     
24139     Signed-off-by: Keith Packard <keithp@keithp.com>
24140
24141 commit 3e9078cb1077e7ad0d845f10c2ad0a007df76d29
24142 Author: Bdale Garbee <bdale@gag.com>
24143 Date:   Tue Sep 11 22:17:22 2012 -0600
24144
24145     releasing 1.1
24146
24147 commit 4563624638884b7b2f16cd4d396c00690e045999
24148 Merge: 11fbcf5 e5a55db
24149 Author: Tom Marble <tmarble@info9.net>
24150 Date:   Tue Sep 11 22:50:18 2012 -0500
24151
24152     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
24153
24154 commit 11fbcf5e30e0cd09f2d6b448911d2ef62b7f29c7
24155 Author: Tom Marble <tmarble@info9.net>
24156 Date:   Tue Sep 11 22:48:04 2012 -0500
24157
24158     Added the feature to AC to default --with-android to $ANDROID_SDK (if set)
24159     Fixed typos in altosui/Makefile.am (had removed JCOMMON, but it's from AC)
24160     Jenkins changes:
24161     - added android sdk
24162     - will now record artifacts: altoslib/AltosLib.jar,altosui/altosui.jar,**/*.apk
24163
24164 commit e5a55dbf265354e7c94be3e2be53c2d5c8fba056
24165 Author: Keith Packard <keithp@keithp.com>
24166 Date:   Tue Sep 11 15:53:36 2012 -0700
24167
24168     Use ft/s for imperial speeds
24169     
24170     Bob Brown thinks this unit will be more useful than mph
24171     
24172     Signed-off-by: Keith Packard <keithp@keithp.com>
24173
24174 commit 73d05650eae1d3958e02e9ffde2020a2438eccbb
24175 Author: Keith Packard <keithp@keithp.com>
24176 Date:   Tue Sep 11 15:30:45 2012 -0700
24177
24178     Add Version 1.1 release notes.
24179     
24180     Signed-off-by: Keith Packard <keithp@keithp.com>
24181
24182 commit 7ae3e4cea1cd180ff18b5293a67b4520cc8292be
24183 Author: Keith Packard <keithp@keithp.com>
24184 Date:   Tue Sep 11 01:00:05 2012 -0700
24185
24186     altosui: Imperial units for graphs too
24187     
24188     Just to be consistent
24189     
24190     Signed-off-by: Keith Packard <keithp@keithp.com>
24191
24192 commit 95268d681c9a6652d84db383f55a4fe8a4ac5173
24193 Author: Tom Marble <tmarble@info9.net>
24194 Date:   Tue Sep 11 12:54:31 2012 -0500
24195
24196     Reverted package name to 'altosui' from 'AltosUI'
24197     Also added emacs backup regex (*~) to .gitignore
24198
24199 commit 13c64f6fb5764c6a0f3520cf4e48a75d78e163db
24200 Author: Tom Marble <tmarble@info9.net>
24201 Date:   Tue Sep 11 12:44:24 2012 -0500
24202
24203     Add appropriate Java build deps as given from autoconf
24204
24205 commit 8e506274a35eccacd2d4523faa08d279a201753f
24206 Merge: 0bc3ed5 1fc97dd
24207 Author: Tom Marble <tmarble@info9.net>
24208 Date:   Tue Sep 11 11:39:22 2012 -0500
24209
24210     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
24211
24212 commit 0bc3ed53aa8972c7080d6335f609cd9d0df1c79d
24213 Author: Tom Marble <tmarble@info9.net>
24214 Date:   Tue Sep 11 11:37:14 2012 -0500
24215
24216     Use explicit build deps for altosui (avoids * wildcarding)
24217
24218 commit 1fc97dd9875a7639533a34438c4c7c999412eb3a
24219 Merge: 8397d2b 4420d4a
24220 Author: Bdale Garbee <bdale@gag.com>
24221 Date:   Tue Sep 11 10:35:04 2012 -0600
24222
24223     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
24224
24225 commit 8397d2b041824ddf1cc0b82926f10da8aae3264f
24226 Author: Bdale Garbee <bdale@gag.com>
24227 Date:   Tue Sep 11 10:34:00 2012 -0600
24228
24229     update Debian build-deps in preparation for 1.1 release
24230
24231 commit 4420d4a9fc011ed970af506ef771dfb81580b666
24232 Author: Keith Packard <keithp@keithp.com>
24233 Date:   Tue Sep 11 00:49:48 2012 -0700
24234
24235     Fix Latin-1 encoded copyright symbols in AltosDroid java code
24236     
24237     Otherwise, we get complaints when compiling these files.
24238     
24239     Signed-off-by: Keith Packard <keithp@keithp.com>
24240
24241 commit 708e7937cba52982b91244cf89bfbff46d346135
24242 Author: Tom Marble <tmarble@info9.net>
24243 Date:   Mon Sep 10 16:54:27 2012 -0500
24244
24245     Changed package name from altosui to AltosUI
24246
24247 commit c2ebebc4967043b16380b8ec8800862993005358
24248 Author: Tom Marble <tmarble@info9.net>
24249 Date:   Mon Sep 10 14:50:37 2012 -0500
24250
24251     Test commit (comment) to confirm push works
24252
24253 commit 67da878f740a387d0092631ad672e024d26e4192
24254 Author: Keith Packard <keithp@keithp.com>
24255 Date:   Mon Sep 10 09:16:04 2012 -0700
24256
24257     altosui: Use units conversion functions everywhere.
24258     
24259     Provide a configuration option to select imperial units and use them everywhere
24260     
24261     Signed-off-by: Keith Packard <keithp@keithp.com>
24262
24263 commit 66a1e07efcac9324d33a1eca0dfb58a2724b667a
24264 Author: Keith Packard <keithp@keithp.com>
24265 Date:   Mon Sep 10 09:14:03 2012 -0700
24266
24267     altoslib: Add imperial units conversion support
24268     
24269     "Redneck" mode support
24270     
24271     Signed-off-by: Keith Packard <keithp@keithp.com>
24272
24273 commit 51836cedce41d8b36eac34c69370489162aaa2b5
24274 Author: Keith Packard <keithp@keithp.com>
24275 Date:   Sun Sep 9 14:02:57 2012 -0700
24276
24277     Bump version to 1.0.9.7
24278     
24279     Signed-off-by: Keith Packard <keithp@keithp.com>
24280
24281 commit e45c47c52f9cc9c43b81148e0e58fdedb3af1eb8
24282 Author: Keith Packard <keithp@keithp.com>
24283 Date:   Sun Sep 9 14:01:21 2012 -0700
24284
24285     altos/telelco: Search for available firing nodes at boot time
24286     
24287     Query for available firing nodes, limiting device selections to those found.
24288     
24289     Signed-off-by: Keith Packard <keithp@keithp.com>
24290
24291 commit 77775711d414227b3ed97859d1b21ab1c689a724
24292 Author: Keith Packard <keithp@keithp.com>
24293 Date:   Sun Sep 9 13:58:29 2012 -0700
24294
24295     altos/telefire: Add steady warble when the LCO arm switch is on
24296     
24297     And make debugging a run-time option too.
24298     
24299     Signed-off-by: Keith Packard <keithp@keithp.com>
24300
24301 commit f2933103be122414a9b1795b37003b7a2aa9f3d7
24302 Author: Keith Packard <keithp@keithp.com>
24303 Date:   Sun Sep 9 13:57:16 2012 -0700
24304
24305     altos/stm: Fix basic time interval to 10ms -- was 10.1ms
24306     
24307     Counting from 0 to 100 takes 10.1ms, so count to 99 instead.
24308     
24309     Signed-off-by: Keith Packard <keithp@keithp.com>
24310
24311 commit 0339583996fc57a666f8d3007a0f4b1034039a73
24312 Author: Keith Packard <keithp@keithp.com>
24313 Date:   Sun Sep 9 13:56:35 2012 -0700
24314
24315     altos/spiradio: Label LEDs so that the radio code can use them
24316     
24317     Mark which should be on for TX and which for RX
24318     
24319     Signed-off-by: Keith Packard <keithp@keithp.com>
24320
24321 commit 3fa71c497a5bf576974e70af06762f75734e6699
24322 Author: Keith Packard <keithp@keithp.com>
24323 Date:   Sun Sep 9 13:50:56 2012 -0700
24324
24325     altos: Try to get remote cmac time closer to reality
24326     
24327     Record the time after the packet was sent, but before the return
24328     packet arrives to try and more closely approximate the time the packet
24329     arrived at the other end.
24330     
24331     Signed-off-by: Keith Packard <keithp@keithp.com>
24332
24333 commit 27ab744c6eec9243b7aa14161eec2fbf7003531e
24334 Author: Keith Packard <keithp@keithp.com>
24335 Date:   Sun Sep 9 13:46:23 2012 -0700
24336
24337     altos: Clean up flight data definitions
24338     
24339     These just shuffle the various definitions of data macros around to
24340     make the include files more sensible looking.
24341     
24342     Signed-off-by: Keith Packard <keithp@keithp.com>
24343
24344 commit ced6a020d6d94b1c63837a7ab5b0091b7b8ea3c9
24345 Author: Keith Packard <keithp@keithp.com>
24346 Date:   Sun Sep 9 13:43:45 2012 -0700
24347
24348     altos: include ao_arch_funcs.h at the very end of ao.h
24349     
24350     Move it below the definition of the ms5607 init function
24351     
24352     Signed-off-by: Keith Packard <keithp@keithp.com>
24353
24354 commit e053da3e7cb5a4c9ebbffd245cb5d83932183b22
24355 Author: Keith Packard <keithp@keithp.com>
24356 Date:   Sun Sep 9 13:11:57 2012 -0700
24357
24358     altos: Allow products without MS5607
24359     
24360     The define for a missing MS5607 was wrong, so anything using the fancy
24361     multi-sensor data code would break without an MS5607 in place.
24362     
24363     Signed-off-by: Keith Packard <keithp@keithp.com>
24364
24365 commit bb5ab29b6744b382bb2f09486a7a6db7d12a3608
24366 Author: Keith Packard <keithp@keithp.com>
24367 Date:   Sun Sep 9 13:10:07 2012 -0700
24368
24369     ao_tools/ao-send-telem: Only start real-time on valid states
24370     
24371     Check state to make sure it is < ao_flight_landed to keep invalid
24372     states from switching to real-time playback mode.
24373     
24374     Signed-off-by: Keith Packard <keithp@keithp.com>
24375
24376 commit 47d87872c11a63a435fe5b703a4ce33503790d96
24377 Author: Keith Packard <keithp@keithp.com>
24378 Date:   Sun Sep 9 13:09:27 2012 -0700
24379
24380     altoslib: Add in a bunch of java files mising after Mike's cleanups
24381     
24382     Signed-off-by: Keith Packard <keithp@keithp.com>
24383
24384 commit e2b458a448106ba1ab207f0ea6824b56927d8547
24385 Merge: 9682e9e 3fe9322
24386 Author: Keith Packard <keithp@keithp.com>
24387 Date:   Sun Sep 9 13:03:47 2012 -0700
24388
24389     Merge remote-tracking branch 'mjb/altoslib_mjb'
24390
24391 commit 9682e9e6fe730417a77b47795fbe1f06c9a51177
24392 Author: Keith Packard <keithp@keithp.com>
24393 Date:   Sun Sep 9 12:29:32 2012 -0700
24394
24395     altosui: Use helper functions to access arrays in AltosLib class
24396     
24397     These deal with out-of-range values correctly, instead of causing
24398     exceptions that will just break stuff.
24399     
24400     Signed-off-by: Keith Packard <keithp@keithp.com>
24401
24402 commit d65d921b9b2340fa23d3b55b4ae755324d392303
24403 Author: Keith Packard <keithp@keithp.com>
24404 Date:   Sun Sep 9 12:20:08 2012 -0700
24405
24406     altosui: Catch errors in state value when saving flight logs
24407     
24408     Use AltosLib.state_name() instead of directly accessing the
24409     state_to_string array so that any invalid state values are caught and
24410     replaced with 'invalid' instead of raising an exception.
24411     
24412     Signed-off-by: Keith Packard <keithp@keithp.com>
24413
24414 commit 3fe932206f40f4d6f83a4ef49e064109a7a3de92
24415 Author: Mike Beattie <mike@ethernal.org>
24416 Date:   Fri Sep 7 18:19:43 2012 +1200
24417
24418     altoslib: move distinct classes to separate files.
24419     
24420     Signed-off-by: Mike Beattie <mike@ethernal.org>
24421
24422 commit da053875c12b25b627e83430c3a956a994b435d5
24423 Author: Mike Beattie <mike@ethernal.org>
24424 Date:   Fri Sep 7 18:19:07 2012 +1200
24425
24426     altoslib: remove obsolete class
24427     
24428     Signed-off-by: Mike Beattie <mike@ethernal.org>
24429
24430 commit 218c73b5bd5bd5673dc6f259f62b39541c52d6ff
24431 Author: Mike Beattie <mike@ethernal.org>
24432 Date:   Fri Sep 7 18:11:13 2012 +1200
24433
24434     altoslib: move distinct classes to separate files
24435     
24436     Signed-off-by: Mike Beattie <mike@ethernal.org>
24437
24438 commit 42170d0e3a3b68a9d3db69714e043f7273a714fb
24439 Author: Mike Beattie <mike@ethernal.org>
24440 Date:   Fri Sep 7 18:10:21 2012 +1200
24441
24442     altoslib: remove duplicate AltosGPSQuery class
24443     
24444     Signed-off-by: Mike Beattie <mike@ethernal.org>
24445
24446 commit 82f798e7b1343a56203af2e89790f6de9ab9f98d
24447 Author: Mike Beattie <mike@ethernal.org>
24448 Date:   Fri Sep 7 18:09:37 2012 +1200
24449
24450     altoslib: remove duplicate AltosIdleMonitor class
24451     
24452     Signed-off-by: Mike Beattie <mike@ethernal.org>
24453
24454 commit 88667f7b7dff52eaf5e30f8f83fed0d7f767268d
24455 Author: Mike Beattie <mike@ethernal.org>
24456 Date:   Fri Sep 7 18:07:45 2012 +1200
24457
24458     altoslib: rename AltosIdleRecordTM.java to AltosGPSQuery.java
24459     
24460     Signed-off-by: Mike Beattie <mike@ethernal.org>
24461
24462 commit bbbe1846346b4ba61330f535a12b7a5029877ee6
24463 Author: Mike Beattie <mike@ethernal.org>
24464 Date:   Fri Sep 7 17:53:20 2012 +1200
24465
24466     altoslib: remove dead code
24467     
24468     (if object creation fails, an exception will be thrown - not return null)
24469     
24470     Signed-off-by: Mike Beattie <mike@ethernal.org>
24471
24472 commit 02d31db3d3255568cc348a41aa37a461d63ffde2
24473 Author: Mike Beattie <mike@ethernal.org>
24474 Date:   Fri Sep 7 17:52:27 2012 +1200
24475
24476     altoslib: resolve argument/variable ambiguity
24477     
24478     (and comment out set_flags() which had no corresponding variable anyway)
24479     
24480     Signed-off-by: Mike Beattie <mike@ethernal.org>
24481
24482 commit 639f3e5e5171769429eac9e2f17a7b315fd62135
24483 Author: Mike Beattie <mike@ethernal.org>
24484 Date:   Fri Sep 7 17:39:25 2012 +1200
24485
24486     altoslib: comment out unused methods
24487     
24488     Signed-off-by: Mike Beattie <mike@ethernal.org>
24489
24490 commit 369c5e23ac6d65bab4b456ed86737576ac61102f
24491 Author: Mike Beattie <mike@ethernal.org>
24492 Date:   Fri Sep 7 17:35:29 2012 +1200
24493
24494     altoslib: access static variables via class, not instance
24495     
24496     Signed-off-by: Mike Beattie <mike@ethernal.org>
24497
24498 commit b02c17b26e028a6f3a46781211a86a18272da4d0
24499 Author: Mike Beattie <mike@ethernal.org>
24500 Date:   Fri Sep 7 17:34:17 2012 +1200
24501
24502     altoslib: comment out un-used variables
24503     
24504     Signed-off-by: Mike Beattie <mike@ethernal.org>
24505
24506 commit 20bc23ddb90f8a6da1f7ea70f02cf3a038059d32
24507 Author: Mike Beattie <mike@ethernal.org>
24508 Date:   Fri Sep 7 17:32:07 2012 +1200
24509
24510     altoslib: Remove un-needed imports
24511     
24512     Signed-off-by: Mike Beattie <mike@ethernal.org>
24513
24514 commit c5e98d2b226824f2012e5710ac4b1596b9f0bfb1
24515 Author: Keith Packard <keithp@keithp.com>
24516 Date:   Thu Sep 6 18:07:33 2012 -0700
24517
24518     altos: Fix radio slave to run lights in the normal way
24519     
24520     These were left in a debug mode, toggling instead of flashing.
24521     
24522     Signed-off-by: Keith Packard <keithp@keithp.com>
24523
24524 commit 01820c3e95fe85d2bee648d41809f1a753f81020
24525 Author: Keith Packard <keithp@keithp.com>
24526 Date:   Sat Sep 1 00:15:16 2012 -0500
24527
24528     Revert "first work on PWM input to TeleScience, 'p' command displays timer 1"
24529     
24530     PWM bits not suitable for master
24531     
24532     This reverts commit e93c6bcc799d76d4ff425815e2601a25e6796229.
24533
24534 commit 3ccc4a13e3f76bec864d61b0cdfd57c76c6baadb
24535 Author: Keith Packard <keithp@keithp.com>
24536 Date:   Sat Sep 1 00:15:02 2012 -0500
24537
24538     Revert "Timer 3 working with slower clock and all 16 bits."
24539     
24540     PWM bits not suitable for master
24541     
24542     This reverts commit 49b1ff4c614d24977b33cd17b583acc87acff476.
24543
24544 commit 8c743857525eff778d067068356dec486b9fefa2
24545 Author: Keith Packard <keithp@keithp.com>
24546 Date:   Sat Sep 1 00:14:49 2012 -0500
24547
24548     Revert "ICP3 working"
24549     
24550     PWM bits not suitable for master
24551     
24552     This reverts commit 75d6aa6f798606f1a6c5a46542065dda81e63b2a.
24553
24554 commit 294b1ec85a37e375a0ac70cbffc6398309d63a7f
24555 Author: Keith Packard <keithp@keithp.com>
24556 Date:   Sat Sep 1 00:14:27 2012 -0500
24557
24558     Revert "telescience: correctly calculating rate values with higher resolution"
24559     
24560     PWM bits not suitable for master
24561     
24562     This reverts commit ada6f2dfc045e77cb9499f20cdec1b4a54ef0db1.
24563
24564 commit ec9e1186dce079a2f2b7be8050216ddb1bc1af66
24565 Merge: 503eabd 6d31f8d
24566 Author: Keith Packard <keithp@keithp.com>
24567 Date:   Fri Aug 31 22:24:16 2012 -0500
24568
24569     Merge remote-tracking branch 'mjb/freq_menu'
24570
24571 commit 503eabd0e351ecdffda1416b7d00f8ef1d6913c9
24572 Author: Keith Packard <keithp@keithp.com>
24573 Date:   Fri Aug 31 22:19:40 2012 -0500
24574
24575     altos: Get mma655x driver limping along
24576     
24577     This appears to drive the chip correctly to see values from the accelerometer.
24578     
24579     Signed-off-by: Keith Packard <keithp@keithp.com>
24580
24581 commit 48a3e6e073e927e456ef4e456e512f6fb8e3b9ee
24582 Author: Keith Packard <keithp@keithp.com>
24583 Date:   Fri Aug 31 21:02:13 2012 -0500
24584
24585     altos: Fix mma665x pin assigment for mma655x
24586     
24587     It's on PE13-PE15, not PA5-PA7
24588     
24589     Signed-off-by: Keith Packard <keithp@keithp.com>
24590
24591 commit f9af7819de086d9179c3a4d1df7c88ab67a7d7c7
24592 Author: Keith Packard <keithp@keithp.com>
24593 Date:   Fri Aug 31 21:01:21 2012 -0500
24594
24595     altos: Add custom panic noise for self-test failures
24596     
24597     Make it easier to tell which component is failing self test
24598     
24599     Signed-off-by: Keith Packard <keithp@keithp.com>
24600
24601 commit 6d31f8d15ef4bf75ae039dd7b1a6a615d00eb215
24602 Author: Mike Beattie <mike@ethernal.org>
24603 Date:   Fri Aug 31 17:53:53 2012 +1200
24604
24605     altoslib: add missing manufacturer parsing for AltosConfigData
24606     
24607     Signed-off-by: Mike Beattie <mike@ethernal.org>
24608
24609 commit 4e3ac2b624f68dd5a8f6dd7a33eb10cd78497964
24610 Author: Mike Beattie <mike@ethernal.org>
24611 Date:   Fri Aug 31 17:42:22 2012 +1200
24612
24613     altosdroid: invert channel/freq ordering
24614     
24615     Matches Channel Selector in altosui
24616     
24617     Signed-off-by: Mike Beattie <mike@ethernal.org>
24618
24619 commit 80bc985f79e616e5327aed4f7acc9bca71b8db54
24620 Author: Mike Beattie <mike@ethernal.org>
24621 Date:   Fri Aug 31 16:50:53 2012 +1200
24622
24623     altosdroid: also display channel numbers
24624     
24625     Signed-off-by: Mike Beattie <mike@ethernal.org>
24626
24627 commit b6a21856c68ca8cca93eb755285be1927acb91e7
24628 Author: Mike Beattie <mike@ethernal.org>
24629 Date:   Fri Aug 31 16:39:10 2012 +1200
24630
24631     ao-send-telem: fix frequency set command
24632     
24633     Signed-off-by: Mike Beattie <mike@ethernal.org>
24634
24635 commit 543ecb530d6fdf188a746ac59b72544e69bad830
24636 Author: Mike Beattie <mike@ethernal.org>
24637 Date:   Fri Aug 31 16:38:21 2012 +1200
24638
24639     altosdroid: complete frequency change dialog
24640     
24641     Also implement Service IPC to action request.
24642     
24643     Signed-off-by: Mike Beattie <mike@ethernal.org>
24644
24645 commit f1a9fff865e0b226a97ad5d6eaaac64bd5e5d410
24646 Author: Keith Packard <keithp@keithp.com>
24647 Date:   Thu Aug 30 23:07:43 2012 -0500
24648
24649     altosdroid: Start a hacked-up frequency dialog
24650     
24651     Signed-off-by: Keith Packard <keithp@keithp.com>
24652
24653 commit 6d8858ca1899c8b64f107ebb45711efbb7b8d62a
24654 Author: Keith Packard <keithp@keithp.com>
24655 Date:   Thu Aug 30 16:30:04 2012 -0500
24656
24657     altos: another .gitignore file
24658     
24659     Signed-off-by: Keith Packard <keithp@keithp.com>
24660
24661 commit ab9d5bf13e6f1735a0463f4bcab13d65170b7015
24662 Author: Keith Packard <keithp@keithp.com>
24663 Date:   Thu Aug 30 16:28:53 2012 -0500
24664
24665     altos: ao_cc_spi.h isn't necessary for telelco
24666     
24667     The SPI radio defines are in ao_radio_spi.h
24668     
24669     Signed-off-by: Keith Packard <keithp@keithp.com>
24670
24671 commit b635cb26ba54c8f5c6a958e0ab0bc4d34d33b635
24672 Merge: 354c1fe a8ecf3a
24673 Author: Keith Packard <keithp@keithp.com>
24674 Date:   Thu Aug 30 16:24:38 2012 -0500
24675
24676     Merge remote-tracking branch 'mjb/master'
24677
24678 commit 354c1fed7f06c2c45c661e7265c2ac4bc47e2750
24679 Author: Keith Packard <keithp@keithp.com>
24680 Date:   Thu Aug 30 16:22:51 2012 -0500
24681
24682     altos: Add a bunch of .gitignore entries
24683     
24684     Clean up the git status output
24685     
24686     Signed-off-by: Keith Packard <keithp@keithp.com>
24687
24688 commit 2c59954fdf204f443d9bb28c4a66a30f925ef348
24689 Author: Keith Packard <keithp@keithp.com>
24690 Date:   Thu Aug 30 16:16:52 2012 -0500
24691
24692     altos: Shuffle LCO functions around, add telelco first cut
24693     
24694     Pull LCO functions shared between LCO UI and command line into
24695     ao_lco_funcs.c.
24696     
24697     Import bits for telelco.
24698     
24699     Signed-off-by: Keith Packard <keithp@keithp.com>
24700
24701 commit 72d44d14aefcb754b871835aec8d265771357212
24702 Author: Keith Packard <keithp@keithp.com>
24703 Date:   Thu Aug 30 16:14:57 2012 -0500
24704
24705     altos: Disable debug printfs and fix pad ignite time for telefire
24706     
24707     Signed-off-by: Keith Packard <keithp@keithp.com>
24708
24709 commit a8ecf3aa4e88d4c76643fb541fb1d5535a454aba
24710 Author: Mike Beattie <mike@ethernal.org>
24711 Date:   Thu Aug 30 21:08:41 2012 +1200
24712
24713     altosdroid: Implement voice just like altosui
24714     
24715     Signed-off-by: Mike Beattie <mike@ethernal.org>
24716
24717 commit 2e6af70c87e7cc62a92b09bbbde745a31d83b5eb
24718 Author: Mike Beattie <mike@ethernal.org>
24719 Date:   Thu Aug 30 21:08:06 2012 +1200
24720
24721     altosdroid: Move bluetooth check to first task
24722     
24723     Signed-off-by: Mike Beattie <mike@ethernal.org>
24724
24725 commit 519887571cee2840024c5c8f4b7f0e5c352d3323
24726 Author: Mike Beattie <mike@ethernal.org>
24727 Date:   Thu Aug 30 13:23:29 2012 +1200
24728
24729     altosdroid: add rssi/serial/flight, and re-work UI ordering
24730     
24731     Signed-off-by: Mike Beattie <mike@ethernal.org>
24732
24733 commit 14022b002d2201fb3ca28292d976c90e2d9a15a2
24734 Author: Mike Beattie <mike@ethernal.org>
24735 Date:   Thu Aug 30 13:23:04 2012 +1200
24736
24737     altosdroid: rename ambiguous TextView name
24738     
24739     Signed-off-by: Mike Beattie <mike@ethernal.org>
24740
24741 commit 91606c89828e60d8cf9a5ea4ff75b951d6fc042a
24742 Author: Mike Beattie <mike@ethernal.org>
24743 Date:   Thu Aug 30 13:21:38 2012 +1200
24744
24745     altosdroid: formatting/whitespace, correct ids
24746     
24747     Signed-off-by: Mike Beattie <mike@ethernal.org>
24748
24749 commit 2137a112b4217d84041f749b8aa5eb8f4d330ba0
24750 Author: Mike Beattie <mike@ethernal.org>
24751 Date:   Thu Aug 30 13:20:10 2012 +1200
24752
24753     altosdroid: rework lat/lon to more common format
24754     
24755     Signed-off-by: Mike Beattie <mike@ethernal.org>
24756
24757 commit c32325af6605e78c1d1147d466f3ea12ce94124a
24758 Author: Mike Beattie <mike@ethernal.org>
24759 Date:   Thu Aug 30 13:19:41 2012 +1200
24760
24761     altosdroid: rename azimuth/altitude to elevation/height respectively.
24762     
24763     (Matches altoslib, altosui, altos)
24764     
24765     Signed-off-by: Mike Beattie <mike@ethernal.org>
24766
24767 commit 8ffa4f9a474026f5a6523b26919a78565e0ed74c
24768 Author: Mike Beattie <mike@ethernal.org>
24769 Date:   Thu Aug 30 13:13:20 2012 +1200
24770
24771     altosdroid: move units into code, to match altosui
24772     
24773     Signed-off-by: Mike Beattie <mike@ethernal.org>
24774
24775 commit 583458772746317b98fced907ec780edff465888
24776 Merge: aea10c1 17b6ffb
24777 Author: Keith Packard <keithp@keithp.com>
24778 Date:   Wed Aug 29 11:29:24 2012 -0700
24779
24780     Merge remote-tracking branch 'mjb/master'
24781     
24782     Pull in Mike's fancy new AltosDroid bits
24783
24784 commit aea10c107dff2643677a9c8d1fc41e14f4a66049
24785 Author: Keith Packard <keithp@keithp.com>
24786 Date:   Wed Aug 29 11:25:36 2012 -0700
24787
24788     altos: spiradio debug serial is port 1, not port 0
24789     
24790     The SPI link uses port 0; it seems like the having the two try to
24791     share the same wires is a bad plan.
24792     
24793     Signed-off-by: Keith Packard <keithp@keithp.com>
24794
24795 commit 3e7e8e21f2bb823cb6e74c73d0feddbc3a891107
24796 Author: Keith Packard <keithp@keithp.com>
24797 Date:   Wed Aug 29 11:23:13 2012 -0700
24798
24799     altos: SPI radio - use 1->0 for 'done' and 0->1 for 'ready'
24800     
24801     This changes how the SPI radio protocol uses the interrupt
24802     line. Instead of a pulse indicating operation done, this now uses a 0
24803     value for done and a 1 value for ready. The key distinction is that
24804     the master can tell when the slave is waiting for the next command
24805     instead of hoping that it got done 'soon enough'.
24806     
24807     Signed-off-by: Keith Packard <keithp@keithp.com>
24808
24809 commit 1b6ed262460ee75fb5bb684d13d19c26c7ea750b
24810 Author: Keith Packard <keithp@keithp.com>
24811 Date:   Wed Aug 29 11:22:02 2012 -0700
24812
24813     altos: fix ao_pad debug output for query command
24814     
24815     Igniter status is an array these days.
24816     
24817     Signed-off-by: Keith Packard <keithp@keithp.com>
24818
24819 commit 442f1bfc89528103e2c28f768c954b956e39afc5
24820 Author: Keith Packard <keithp@keithp.com>
24821 Date:   Wed Aug 29 11:21:09 2012 -0700
24822
24823     altos: Use updated pad protocol for lco commands
24824     
24825     Stop using the older single-channel protocol and switch to the new
24826     multi-channel protocol
24827     
24828     Signed-off-by: Keith Packard <keithp@keithp.com>
24829
24830 commit 7f64e62356bcfcd6ba8a88b09251793481bcd56c
24831 Author: Keith Packard <keithp@keithp.com>
24832 Date:   Wed Aug 29 11:19:17 2012 -0700
24833
24834     altos: Note changes to configured AES key for SPI radio convenience
24835     
24836     Keep a sequence number to mark when the AES key is changed so that the
24837     radio code can avoid sending the key before every CMAC radio operation.
24838     
24839     Signed-off-by: Keith Packard <keithp@keithp.com>
24840
24841 commit 1a7d2faf76a46271532102e217c2dd5515e38b72
24842 Author: Keith Packard <keithp@keithp.com>
24843 Date:   Wed Aug 29 11:16:42 2012 -0700
24844
24845     altos: Wait for IN dma complete on slave SPI send
24846     
24847     SPI send double buffered, so the DMA completes one byte too early. Use
24848     the recv DMA to know when the SPI transfer is complete.
24849     
24850     Signed-off-by: Keith Packard <keithp@keithp.com>
24851
24852 commit 17b6ffb6c090112367eac944494f0fa58da453c7
24853 Author: Mike Beattie <mike@ethernal.org>
24854 Date:   Thu Aug 30 01:01:06 2012 +1200
24855
24856     altosdroid: initial attempt at a UI.
24857     
24858     Signed-off-by: Mike Beattie <mike@ethernal.org>
24859
24860 commit 98f65994ee547feb8cca63ff4ed0fefd3fb2d37d
24861 Author: Keith Packard <keithp@keithp.com>
24862 Date:   Tue Aug 28 23:05:02 2012 -0700
24863
24864     altos: Oops. forgot ao_data.c
24865     
24866     Signed-off-by: Keith Packard <keithp@keithp.com>
24867
24868 commit 3a3982ceb721910c6a4f75badebb62baa6c6568e
24869 Author: Keith Packard <keithp@keithp.com>
24870 Date:   Tue Aug 28 22:43:10 2012 -0700
24871
24872     altos: Add spiradio Makefile
24873     
24874     git add doesn't add Makefile by default.
24875     
24876     Signed-off-by: Keith Packard <keithp@keithp.com>
24877
24878 commit fc9841ee5e92318471b6bec09b7075a788ab8872
24879 Author: Keith Packard <keithp@keithp.com>
24880 Date:   Tue Aug 28 18:13:02 2012 -0700
24881
24882     altos: Mostly working SPI radio link
24883     
24884     This includes long delays to avoid overrunning the cc1111 input,
24885     otherwise it works pretty well. The delays mean that we can't capture
24886     the reply to a cmac command though, so more work is needed.
24887     
24888     Signed-off-by: Keith Packard <keithp@keithp.com>
24889
24890 commit 27a879b4069ccedf8bbe39d7dbecf45000f29d8c
24891 Author: Keith Packard <keithp@keithp.com>
24892 Date:   Tue Aug 28 18:12:27 2012 -0700
24893
24894     altos: Include the radio_cmac debug commands in telefire
24895     
24896     Just temporary debugging
24897     
24898     Signed-off-by: Keith Packard <keithp@keithp.com>
24899
24900 commit eb1a9a8c3f3d3993d5986925bc4ad112c2bbc119
24901 Author: Keith Packard <keithp@keithp.com>
24902 Date:   Tue Aug 28 18:10:34 2012 -0700
24903
24904     altos: Explicitly erase memory in STM eeprom driver.
24905     
24906     This seems to make the STM32L152 happier
24907     
24908     Signed-off-by: Keith Packard <keithp@keithp.com>
24909
24910 commit 3fe5a70d9ac2114ee554813b1dbb3019a3e4aff7
24911 Author: Keith Packard <keithp@keithp.com>
24912 Date:   Tue Aug 28 18:08:59 2012 -0700
24913
24914     altos: Track protocol changes to ao_pad debug messages
24915     
24916     Make the debug output build again.
24917     
24918     Signed-off-by: Keith Packard <keithp@keithp.com>
24919
24920 commit 18b5021e99c1eef32d2d85f619c84e89cecae7a7
24921 Author: Keith Packard <keithp@keithp.com>
24922 Date:   Tue Aug 28 18:07:55 2012 -0700
24923
24924     altos: Stop providing debug commands in seven-segment driver
24925     
24926     The radio_cmac debug commands use the same letter, and this code works now...
24927     
24928     Signed-off-by: Keith Packard <keithp@keithp.com>
24929
24930 commit 78cd26eec77adda23ef1b5ca2d91027f1e059868
24931 Author: Keith Packard <keithp@keithp.com>
24932 Date:   Tue Aug 28 18:07:05 2012 -0700
24933
24934     altos: Move radio_cmac test funcs from ao_lco_cmd.c to new file
24935     
24936     These are useful in the firing node for testing as well, so move them
24937     to be shared.
24938     
24939     Signed-off-by: Keith Packard <keithp@keithp.com>
24940
24941 commit f2d919a2147025daa332957cda6d91959e4731ab
24942 Author: Keith Packard <keithp@keithp.com>
24943 Date:   Tue Aug 28 18:05:10 2012 -0700
24944
24945     altos: When sharing radio DMA for AES, use it for in instead of out
24946     
24947     We look at the out_done value, but not the in_done value; if we use
24948     the radio DMA for out, we would have to use ao_radio_dma_done to check
24949     for completion. This way, we can ignore that value and use the
24950     existing ao_aes_dma_out_done value.
24951     
24952     Signed-off-by: Keith Packard <keithp@keithp.com>
24953
24954 commit 31b42b99edbb976534ac432c07e218f13d1f5f9b
24955 Author: Keith Packard <keithp@keithp.com>
24956 Date:   Tue Aug 28 18:03:52 2012 -0700
24957
24958     altos: Fix ao_delay function and move from per-chip code to ao_task.c
24959     
24960     ao_delay hasn't been chip-specific for a long time, and it had a bug
24961     in not calling ao_clear_alarm.
24962     
24963     Signed-off-by: Keith Packard <keithp@keithp.com>
24964
24965 commit ac5d053e6d766d243b7a425ae19779810c350125
24966 Author: Keith Packard <keithp@keithp.com>
24967 Date:   Tue Aug 28 18:02:25 2012 -0700
24968
24969     ao-stmload: Always round up load amount to 4 byte boundary
24970     
24971     The flashing code doesn't deal with partial writes.
24972     
24973     Signed-off-by: Keith Packard <keithp@keithp.com>
24974
24975 commit 68df2b1173e82d48f7857ad2e9325e6a9cbbedfd
24976 Author: Keith Packard <keithp@keithp.com>
24977 Date:   Mon Aug 27 22:45:47 2012 -0700
24978
24979     altos: Enable STM SYSCFG when routing EXTI
24980     
24981     The EXTI routing information is in the syscfg unit, so that needs to
24982     be powered up or writes to its registers will be lost.
24983     
24984     Signed-off-by: Keith Packard <keithp@keithp.com>
24985
24986 commit c677f26852b70bcbb303382c306ce06664fde028
24987 Author: Keith Packard <keithp@keithp.com>
24988 Date:   Mon Aug 27 22:45:20 2012 -0700
24989
24990     altos: No need to initialize EXTI priorities at startup time
24991     
24992     They all get set to the correct value when enabled.
24993     
24994     Signed-off-by: Keith Packard <keithp@keithp.com>
24995
24996 commit 5ed88fb72c3e3ecf3333c700d838667db71cfbdc
24997 Merge: adbe64c 621d093
24998 Author: Bdale Garbee <bdale@gag.com>
24999 Date:   Tue Aug 28 23:39:53 2012 -0600
25000
25001     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
25002     
25003     Conflicts:
25004         debian/control
25005
25006 commit adbe64c5a9402b7c5075a444a12629131b663877
25007 Author: Bdale Garbee <bdale@gag.com>
25008 Date:   Tue Aug 28 23:37:00 2012 -0600
25009
25010     libelf-dev added to build deps
25011
25012 commit cb8f01745c9e8f258f96358b46e1caf17d6b0c9f
25013 Author: Mike Beattie <mike@ethernal.org>
25014 Date:   Tue Aug 28 23:20:04 2012 +1200
25015
25016     altosdroid: update Makefile.am for source file changes.
25017     
25018     Signed-off-by: Mike Beattie <mike@ethernal.org>
25019
25020 commit c220369953d351f49a5f45bfb5e317859d3a9843
25021 Author: Mike Beattie <mike@ethernal.org>
25022 Date:   Tue Aug 28 22:26:12 2012 +1200
25023
25024     altosdroid: Add Dumper class for testing
25025     
25026     Signed-off-by: Mike Beattie <mike@ethernal.org>
25027
25028 commit 6c985c2b0433a08add3bbf55fdb30102157b4ede
25029 Author: Mike Beattie <mike@ethernal.org>
25030 Date:   Tue Aug 28 22:10:26 2012 +1200
25031
25032     altosdroid: add timer to stop service
25033     
25034     * Stops when no UI clients, and no bluetooth connection remains
25035     
25036     Signed-off-by: Mike Beattie <mike@ethernal.org>
25037
25038 commit 781bdb6c15b7dd3cc2280b08a2f47ce0f92cf53f
25039 Author: Mike Beattie <mike@ethernal.org>
25040 Date:   Tue Aug 28 22:09:34 2012 +1200
25041
25042     altosdroid: do service start/bind/unbind in start/stop, not create/destroy.
25043     
25044     Signed-off-by: Mike Beattie <mike@ethernal.org>
25045
25046 commit ea5fe9e95a888d623329d17d048ee360ea114ad1
25047 Author: Mike Beattie <mike@ethernal.org>
25048 Date:   Tue Aug 28 22:08:49 2012 +1200
25049
25050     altosdroid: move methods around
25051     
25052     Signed-off-by: Mike Beattie <mike@ethernal.org>
25053
25054 commit c6d667a6ac0decfde5bc8a180b14774e9942dd0c
25055 Author: Mike Beattie <mike@ethernal.org>
25056 Date:   Tue Aug 28 22:08:19 2012 +1200
25057
25058     altosdroid: tidy up old messages
25059     
25060     Signed-off-by: Mike Beattie <mike@ethernal.org>
25061
25062 commit 5c7370dcd7a65c81a3c903a71167e07cfcbade53
25063 Author: Mike Beattie <mike@ethernal.org>
25064 Date:   Tue Aug 28 22:07:39 2012 +1200
25065
25066     altosdroid: stop sending device name, just send config data
25067     
25068     * Kinda complicated, but ultimately more sensible
25069     * Just send the config data as an arg to MSG_CONNECTED
25070     * keep retrying connection till we actually get config data
25071     
25072     Signed-off-by: Mike Beattie <mike@ethernal.org>
25073
25074 commit 5ce8c63850dbc6462d7c41ce917e0e06672ec0ab
25075 Author: Mike Beattie <mike@ethernal.org>
25076 Date:   Tue Aug 28 22:00:14 2012 +1200
25077
25078     altosdroid: whitespace
25079     
25080     Signed-off-by: Mike Beattie <mike@ethernal.org>
25081
25082 commit df7b74909c3794b7b2397275e7fce9226cb99489
25083 Author: Mike Beattie <mike@ethernal.org>
25084 Date:   Tue Aug 28 21:59:40 2012 +1200
25085
25086     altosdroid: override add_reply() to add android based debugging
25087     
25088     Signed-off-by: Mike Beattie <mike@ethernal.org>
25089
25090 commit 9d0f187f06c411f0d82e13ee4f2faea789ed9e79
25091 Author: Mike Beattie <mike@ethernal.org>
25092 Date:   Tue Aug 28 21:59:15 2012 +1200
25093
25094     altosdroid: more logical name for connection_lost() method.
25095     
25096     Signed-off-by: Mike Beattie <mike@ethernal.org>
25097
25098 commit 7664ecc0003151d3f05537f17914df2bf48e4275
25099 Author: Mike Beattie <mike@ethernal.org>
25100 Date:   Tue Aug 28 21:58:47 2012 +1200
25101
25102     altosdroid: rework ConnectThread
25103     
25104     * Start input_thread after connection, otherwise it's painful to kill
25105       on connect failure.
25106     
25107     Signed-off-by: Mike Beattie <mike@ethernal.org>
25108
25109 commit 502b24eb2c9c76e4e2bdcc79be0b71a869488b37
25110 Author: Mike Beattie <mike@ethernal.org>
25111 Date:   Tue Aug 28 21:55:40 2012 +1200
25112
25113     altosdroid: fix a connection retry having a null pointer
25114     
25115     Signed-off-by: Mike Beattie <mike@ethernal.org>
25116
25117 commit c7bef83fd553987f83c0bf7ff37ef941872564fe
25118 Author: Mike Beattie <mike@ethernal.org>
25119 Date:   Tue Aug 28 21:54:05 2012 +1200
25120
25121     altosdroid: fix double call of stopAltosBluetooth()
25122     
25123     Signed-off-by: Mike Beattie <mike@ethernal.org>
25124
25125 commit 150a726e125aa7d181c00348ddd1791fd84164e5
25126 Author: Mike Beattie <mike@ethernal.org>
25127 Date:   Tue Aug 28 21:53:01 2012 +1200
25128
25129     altosdroid: Miscellaneous comments/debug/etc cleanup
25130     
25131     Signed-off-by: Mike Beattie <mike@ethernal.org>
25132
25133 commit 162c640d382b9f823573578fe97584adc94cd9b6
25134 Author: Mike Beattie <mike@ethernal.org>
25135 Date:   Tue Aug 28 17:37:45 2012 +1200
25136
25137     altosdroid: miscellaneous cleanup
25138     
25139     * Copyright info
25140     * whitespace
25141     * comments
25142     * unused imports
25143     
25144     Signed-off-by: Mike Beattie <mike@ethernal.org>
25145
25146 commit ae03d8e87985b9f746e9e22b2394a0a5b4f39f1c
25147 Author: Mike Beattie <mike@ethernal.org>
25148 Date:   Tue Aug 28 17:36:41 2012 +1200
25149
25150     altosdroid: Add passing of Device Config at connect
25151     
25152     Signed-off-by: Mike Beattie <mike@ethernal.org>
25153
25154 commit 03563c765d8b0ab3689c91b2b533c68e11650577
25155 Author: Mike Beattie <mike@ethernal.org>
25156 Date:   Tue Aug 28 17:35:11 2012 +1200
25157
25158     altosdroid: Add new "TelemetryReader" class to handle Telemetry
25159     
25160     * Add MSG_TELEMETRY messages to both AltosDroid and TelemetryService
25161       to handle passing of AltosState object all the way back to the UI.
25162     * Remove linkedblockinglist from TelemetryService
25163     * (MSG_TELEMETRY is a rename of MSG_INCOMING_TELEM in AltosDroid)
25164     * commented code in case statement inside AltosDroind - won't work with
25165       the objects it is currently passed.
25166     * Add new "MSG_DEVCONFIG" message to AltosDroid - allows TelemetryService
25167       to pass information about the connected device back to the UI.
25168     
25169     Signed-off-by: Mike Beattie <mike@ethernal.org>
25170
25171 commit ed653a1e6dc8884cb171af1406fd0999ef125a4d
25172 Author: Mike Beattie <mike@ethernal.org>
25173 Date:   Tue Aug 28 17:26:09 2012 +1200
25174
25175     altosdroid: create connected() method
25176     
25177     Signed-off-by: Mike Beattie <mike@ethernal.org>
25178
25179 commit 621d0930244f25165d2ac5da596dcc87e253b965
25180 Author: Keith Packard <keithp@keithp.com>
25181 Date:   Mon Aug 27 13:52:11 2012 -0700
25182
25183     altos: Add spiradio product
25184     
25185     Implements the SPI radio protocol
25186     
25187     Signed-off-by: Keith Packard <keithp@keithp.com>
25188
25189 commit 61d094f281431e9f11f806454981da8e1245fb5c
25190 Author: Keith Packard <keithp@keithp.com>
25191 Date:   Mon Aug 27 13:51:53 2012 -0700
25192
25193     altos: sdcdb rc file for telefire
25194     
25195     Signed-off-by: Keith Packard <keithp@keithp.com>
25196
25197 commit c31d07fb35a5b4d283facf649bed3f0f9802d1fc
25198 Author: Keith Packard <keithp@keithp.com>
25199 Date:   Mon Aug 27 13:49:07 2012 -0700
25200
25201     altos: Add SPI linked radio API
25202     
25203     Forward the necessary radio functions over the SPI link
25204     
25205     Signed-off-by: Keith Packard <keithp@keithp.com>
25206
25207 commit 0f3483f93137f41a61f3fcbe06afcaffb1b9e17b
25208 Author: Keith Packard <keithp@keithp.com>
25209 Date:   Mon Aug 27 13:47:16 2012 -0700
25210
25211     altos: Clean up radio APIs
25212     
25213     Move api to ao_radio_cmac.h include file.
25214     Expose ao_radio_test as standard API.
25215     
25216     Signed-off-by: Keith Packard <keithp@keithp.com>
25217
25218 commit 85fd7ab504a9fac1de90bbe7df8ea477a092c2b0
25219 Author: Keith Packard <keithp@keithp.com>
25220 Date:   Mon Aug 27 13:45:56 2012 -0700
25221
25222     altos: Build telelco and spiradio when possible
25223     
25224     Signed-off-by: Keith Packard <keithp@keithp.com>
25225
25226 commit 467acda662de8b96e7d0df729c2e4761686b82a1
25227 Author: Keith Packard <keithp@keithp.com>
25228 Date:   Mon Aug 27 13:44:35 2012 -0700
25229
25230     altos: Expose a signed version of the tick count
25231     
25232     Useful when doing time comparisons.
25233     
25234     Signed-off-by: Keith Packard <keithp@keithp.com>
25235
25236 commit e7443bf350afe273e87a884915ea1e7662630cd3
25237 Author: Keith Packard <keithp@keithp.com>
25238 Date:   Mon Aug 27 13:42:38 2012 -0700
25239
25240     altos: Specify the LCD duty cycle for stm-demo
25241     
25242     This is the demo for the large 7-segment displays and needs static drive
25243     
25244     Signed-off-by: Keith Packard <keithp@keithp.com>
25245
25246 commit 708d49e498bbdc59bb5af9bf4ca5fcea5689547a
25247 Author: Keith Packard <keithp@keithp.com>
25248 Date:   Mon Aug 27 13:41:13 2012 -0700
25249
25250     altos: Test multiple quadrature devices. Export quadrature count.
25251     
25252     Signed-off-by: Keith Packard <keithp@keithp.com>
25253
25254 commit 8bfe8157cd9fe488d1ee961f200ffa0866322f2c
25255 Author: Keith Packard <keithp@keithp.com>
25256 Date:   Mon Aug 27 13:38:44 2012 -0700
25257
25258     altos: Seven segment display driver
25259     
25260     Hex numbers and the decimal point.
25261     
25262     Signed-off-by: Keith Packard <keithp@keithp.com>
25263
25264 commit 28c3923b6180e24a77aecc7162bb2852cec7d770
25265 Author: Keith Packard <keithp@keithp.com>
25266 Date:   Mon Aug 27 13:37:14 2012 -0700
25267
25268     altos: More SPI slave changes for cc1111 driver
25269     
25270     Don't enable DMA in the other direction when doing slave transfers.
25271     
25272     Signed-off-by: Keith Packard <keithp@keithp.com>
25273
25274 commit a27b9b5c36cf748e415ba210c8d8ae72d8227a98
25275 Author: Keith Packard <keithp@keithp.com>
25276 Date:   Mon Aug 27 13:35:39 2012 -0700
25277
25278     altos: Add SPI slave get/put macros to cc1111
25279     
25280     Theese don't try to drive the chip select line
25281     
25282     Signed-off-by: Keith Packard <keithp@keithp.com>
25283
25284 commit 304909b7534768bfc8da62954effb37ba86806ea
25285 Author: Keith Packard <keithp@keithp.com>
25286 Date:   Mon Aug 27 13:34:12 2012 -0700
25287
25288     altos: Provide interface for STM LCD driver.
25289     
25290     This provides a simple function interface for driving the LCD segments
25291     in the STM chip. It also uses the update complete interrupt to block
25292     LCD users during flush.
25293     
25294     Signed-off-by: Keith Packard <keithp@keithp.com>
25295
25296 commit c1168f40223ca09df23215f2e2fc445a8a03aea9
25297 Author: Keith Packard <keithp@keithp.com>
25298 Date:   Mon Aug 27 13:32:41 2012 -0700
25299
25300     altos: Rename drivers/ao_lco to drivers/ao_lco_cmd
25301     
25302     These contain command line functions for testing the cmac and lco
25303     features. Now that there's a telelco-specific ao_lco interface file,
25304     it's useful to have both for testing.
25305     
25306     Signed-off-by: Keith Packard <keithp@keithp.com>
25307
25308 commit fa8668931cbbc1506560222f2db7e427b514a351
25309 Author: Mike Beattie <mike@ethernal.org>
25310 Date:   Mon Aug 27 19:41:47 2012 +1200
25311
25312     altosdroid: Let a freshly connected client know what the device name is!
25313     
25314     Signed-off-by: Mike Beattie <mike@ethernal.org>
25315
25316 commit 9a41508d92f95012a37bb75603e6e48a2c405204
25317 Author: Mike Beattie <mike@ethernal.org>
25318 Date:   Mon Aug 27 19:41:29 2012 +1200
25319
25320     altosdroid: Add Connected/Connect_failed messages
25321     
25322     Signed-off-by: Mike Beattie <mike@ethernal.org>
25323
25324 commit e121ec3ae634f41979717281a28af5e4a38e8f3a
25325 Author: Mike Beattie <mike@ethernal.org>
25326 Date:   Mon Aug 27 19:40:30 2012 +1200
25327
25328     altosdroid: don't need keys for Bundles anymore
25329     
25330     Signed-off-by: Mike Beattie <mike@ethernal.org>
25331
25332 commit afac4d6c82916eea67ac838cd22806bd73db00a9
25333 Author: Mike Beattie <mike@ethernal.org>
25334 Date:   Mon Aug 27 19:39:53 2012 +1200
25335
25336     altosdroid: Toast() requests don't need Bundles
25337     
25338     Signed-off-by: Mike Beattie <mike@ethernal.org>
25339
25340 commit 18c380120fe37a4bdc8f295e86c6c4413d1aa037
25341 Author: Mike Beattie <mike@ethernal.org>
25342 Date:   Mon Aug 27 19:39:09 2012 +1200
25343
25344     altosdroid: really don't need to store a local copy of the device name
25345     
25346     Signed-off-by: Mike Beattie <mike@ethernal.org>
25347
25348 commit 6441437d3b0e848b225a3d6c78ab00e2590c6988
25349 Author: Mike Beattie <mike@ethernal.org>
25350 Date:   Mon Aug 27 19:37:16 2012 +1200
25351
25352     altosdroid: remove complexity around message passing
25353     
25354     * Don't really need to use bundles
25355     * TelemetryService: Use a local variable to store the bluetooth device object
25356     
25357     Signed-off-by: Mike Beattie <mike@ethernal.org>
25358
25359 commit f89e7de20374141b367205aa517a08ee203bfaf3
25360 Author: Keith Packard <keithp@keithp.com>
25361 Date:   Sun Aug 26 09:53:16 2012 -0700
25362
25363     altos: Trigger sample complete when all data are ready
25364     
25365     This has each sensor mark a bit in the current data record which is
25366     then sent for processing when all of the data are present.
25367     
25368     Signed-off-by: Keith Packard <keithp@keithp.com>
25369
25370 commit dec1481786ad54e22634e32109b5ed6e5483938e
25371 Author: Keith Packard <keithp@keithp.com>
25372 Date:   Sun Aug 26 09:52:27 2012 -0700
25373
25374     altos: Shrink STM stack size
25375     
25376     512 bytes should be enough for anybody.
25377     
25378     Signed-off-by: Keith Packard <keithp@keithp.com>
25379
25380 commit d13d0fbfcb0fd6d8a1af46f6270a968d746c830e
25381 Author: Keith Packard <keithp@keithp.com>
25382 Date:   Sun Aug 26 09:49:34 2012 -0700
25383
25384     altos: Make ao_cur_task_index track ao_cur_task in ao_yield
25385     
25386     This keeps the two main task references (index and pointer) in
25387     agreement during task switching, avoiding an extra assignment at the
25388     end of the task switching loop.
25389     
25390     Signed-off-by: Keith Packard <keithp@keithp.com>
25391
25392 commit 1c9baa88d6cd931c66d453674322908eb267ba4c
25393 Author: Keith Packard <keithp@keithp.com>
25394 Date:   Sun Aug 26 09:47:05 2012 -0700
25395
25396     altos: Make 'pad' driver useful with telefire v0.1
25397     
25398     This reports correct status bits over the radio and to the LEDs for
25399     all four channels, and also makes the firing test command control all
25400     four relays.
25401     
25402     Signed-off-by: Keith Packard <keithp@keithp.com>
25403
25404 commit ea4db73328e865fd658b573da256ca0004c69c61
25405 Author: Keith Packard <keithp@keithp.com>
25406 Date:   Sun Aug 26 09:45:03 2012 -0700
25407
25408     altos: Add debug command for 74hc597 driver
25409     
25410     This dumps the current state of the 74hc597 chip.
25411     
25412     Note that this shows that the 74hc597 driver doesn't work, and that
25413     the circuit used in telefire v0.1 can't work.
25414     
25415     Signed-off-by: Keith Packard <keithp@keithp.com>
25416
25417 commit 89f1a685a02c7808cf03853aa9a5ee50c6baf49e
25418 Author: Keith Packard <keithp@keithp.com>
25419 Date:   Sun Aug 26 09:43:34 2012 -0700
25420
25421     altos: Allow sharing of radio DMA with aes engine
25422     
25423     otherwise, telefire doesn't have enough DMA channels.
25424     
25425     Signed-off-by: Keith Packard <keithp@keithp.com>
25426
25427 commit 58d2b70575f3616a056d2356a737b3be15ed3d66
25428 Author: Mike Beattie <mike@ethernal.org>
25429 Date:   Sun Aug 26 23:38:33 2012 +1200
25430
25431     altosdroid: begin adding TextToSpeech support.
25432     
25433     Signed-off-by: Mike Beattie <mike@ethernal.org>
25434
25435 commit 11896d22b7bc6e34e3f6109d28f8b6a2d37e6c25
25436 Author: Mike Beattie <mike@ethernal.org>
25437 Date:   Sun Aug 26 23:38:10 2012 +1200
25438
25439     altosdroid: whitespace cleanup
25440     
25441     Signed-off-by: Mike Beattie <mike@ethernal.org>
25442
25443 commit f8211fee3c8a5de6925eadca2679441801ac793e
25444 Author: Mike Beattie <mike@ethernal.org>
25445 Date:   Sun Aug 26 23:37:58 2012 +1200
25446
25447     altosdroid: Send device name and connected state back to TelemetryService
25448     
25449     Signed-off-by: Mike Beattie <mike@ethernal.org>
25450
25451 commit 8fdde3e74c6dce35f90f4575ce6914516fc56aba
25452 Author: Mike Beattie <mike@ethernal.org>
25453 Date:   Sun Aug 26 23:37:33 2012 +1200
25454
25455     altosdroid: re-work connect/thread handling in AltosBluetooth
25456     
25457     * Much more resilient to failure
25458     * handles multiple blocked threads better
25459     
25460     Signed-off-by: Mike Beattie <mike@ethernal.org>
25461
25462 commit dba71db022ae4a9f7c5fd128b90caa73aa4e99da
25463 Author: Mike Beattie <mike@ethernal.org>
25464 Date:   Sun Aug 26 23:34:59 2012 +1200
25465
25466     altosdroid: remove old commented code
25467     
25468     Signed-off-by: Mike Beattie <mike@ethernal.org>
25469
25470 commit 38827db5131a2681243649c76bfd1d7d9801f9ba
25471 Author: Mike Beattie <mike@ethernal.org>
25472 Date:   Sun Aug 26 23:34:45 2012 +1200
25473
25474     altosdroid: add handling when restarting BT. delay start after stop.
25475     
25476     Signed-off-by: Mike Beattie <mike@ethernal.org>
25477
25478 commit 30d107882b62edf4e6d48923209da6ce3dabeef7
25479 Author: Mike Beattie <mike@ethernal.org>
25480 Date:   Sun Aug 26 23:34:28 2012 +1200
25481
25482     altosdroid: set devicename and pass on to clients
25483     
25484     Signed-off-by: Mike Beattie <mike@ethernal.org>
25485
25486 commit d95b84b56c63002788939b93b6ce949d921a4892
25487 Author: Mike Beattie <mike@ethernal.org>
25488 Date:   Sun Aug 26 23:30:45 2012 +1200
25489
25490     altosdroid: Send current state to client on connect
25491     
25492     Signed-off-by: Mike Beattie <mike@ethernal.org>
25493
25494 commit cf94a86f37284b53e89b13a7eeb871db647c61ba
25495 Author: Mike Beattie <mike@ethernal.org>
25496 Date:   Sun Aug 26 23:30:00 2012 +1200
25497
25498     altosdroid: add missing break; (just in case!)
25499     
25500     Signed-off-by: Mike Beattie <mike@ethernal.org>
25501
25502 commit 24fe48f66f94c99b8197a612afe6f98e980e9796
25503 Author: Mike Beattie <mike@ethernal.org>
25504 Date:   Sun Aug 26 23:29:25 2012 +1200
25505
25506     altosdroid: debugging statements
25507     
25508     Signed-off-by: Mike Beattie <mike@ethernal.org>
25509
25510 commit 2ef1723091b0c491ef445474844376185ca4102b
25511 Author: Mike Beattie <mike@ethernal.org>
25512 Date:   Sun Aug 26 23:28:59 2012 +1200
25513
25514     altosdroid: forgot change to IncomingHandler constructor call. oops!
25515     
25516     Signed-off-by: Mike Beattie <mike@ethernal.org>
25517
25518 commit d40f96fcc961cfbf6af67fc84591d2660d065ca0
25519 Author: Mike Beattie <mike@ethernal.org>
25520 Date:   Sun Aug 26 23:28:26 2012 +1200
25521
25522     altosdroid: Strings and Layout changes
25523     
25524     Signed-off-by: Mike Beattie <mike@ethernal.org>
25525
25526 commit 3d6fc5fe462531e05ca4b9be1a421490e067a28b
25527 Author: Mike Beattie <mike@ethernal.org>
25528 Date:   Sun Aug 26 23:26:58 2012 +1200
25529
25530     altosdroid: lots of debugging statements
25531     
25532     Signed-off-by: Mike Beattie <mike@ethernal.org>
25533
25534 commit 31bffa435cec2098c7ab5c42c829ba6e1578b5d2
25535 Author: Mike Beattie <mike@ethernal.org>
25536 Date:   Sun Aug 26 23:24:13 2012 +1200
25537
25538     altosdroid: need sendMessageToClients() for setState().. oops!
25539     
25540     Signed-off-by: Mike Beattie <mike@ethernal.org>
25541
25542 commit a9ec3c96288b7ea4e40586321a0a98edf0c8fee5
25543 Author: Mike Beattie <mike@ethernal.org>
25544 Date:   Sun Aug 26 23:23:33 2012 +1200
25545
25546     altosdroid: Need access to handler inside AltosBluetooth
25547     
25548     * Also move add_monitor() call
25549     
25550     Signed-off-by: Mike Beattie <mike@ethernal.org>
25551
25552 commit d7173e814c49826f39bba1ff6b024819c555860c
25553 Author: Mike Beattie <mike@ethernal.org>
25554 Date:   Sun Aug 26 23:20:01 2012 +1200
25555
25556     altosdroid: reflect change in message name
25557     
25558     Signed-off-by: Mike Beattie <mike@ethernal.org>
25559
25560 commit 215d78f06093bd8a8b08a85cae0f1f34aee2a6ec
25561 Author: Mike Beattie <mike@ethernal.org>
25562 Date:   Sun Aug 26 23:19:06 2012 +1200
25563
25564     altosdroid: begin adding state support
25565     
25566     Signed-off-by: Mike Beattie <mike@ethernal.org>
25567
25568 commit fe6680dd3b4c31b3d4edc3f06a142f02bcb879df
25569 Author: Mike Beattie <mike@ethernal.org>
25570 Date:   Sun Aug 26 23:16:49 2012 +1200
25571
25572     altosdroid: init device variable... oops!
25573     
25574     Signed-off-by: Mike Beattie <mike@ethernal.org>
25575
25576 commit 2c5513c51b187ad26a59b193b401f38c35141d27
25577 Author: Mike Beattie <mike@ethernal.org>
25578 Date:   Sun Aug 26 23:16:04 2012 +1200
25579
25580     altosdroid: Rename Connect message, add connected message
25581     
25582     Signed-off-by: Mike Beattie <mike@ethernal.org>
25583
25584 commit a6373e84393312ed0fbf22285c704819c2011588
25585 Author: Mike Beattie <mike@ethernal.org>
25586 Date:   Sun Aug 26 23:14:09 2012 +1200
25587
25588     altosdroid: init telem blocking list.. oops!
25589     
25590     Signed-off-by: Mike Beattie <mike@ethernal.org>
25591
25592 commit 21359f600354e8ee840e839e61ef97d30f3586fc
25593 Author: Mike Beattie <mike@ethernal.org>
25594 Date:   Sun Aug 26 23:13:33 2012 +1200
25595
25596     altosdroid: disable NotificationManager stuff for now
25597     
25598     Signed-off-by: Mike Beattie <mike@ethernal.org>
25599
25600 commit 54baecc208a40606e3242b2cbd5e66567053646f
25601 Author: Mike Beattie <mike@ethernal.org>
25602 Date:   Sun Aug 26 23:12:48 2012 +1200
25603
25604     altosdroid: Convert handlers to use weakreferences
25605     
25606     * Also renamed bluetooth start/stop methods
25607     
25608     Signed-off-by: Mike Beattie <mike@ethernal.org>
25609
25610 commit bf7def1a7b93867dfe16fe6499ee028747634c41
25611 Author: Mike Beattie <mike@ethernal.org>
25612 Date:   Sun Aug 26 15:28:58 2012 +1200
25613
25614     altosdroid: Remove Binder import from TelemetryService
25615     
25616     Signed-off-by: Mike Beattie <mike@ethernal.org>
25617
25618 commit 5f4c47389a3d0d10d659a2e00fc74a150b5fed88
25619 Author: Mike Beattie <mike@ethernal.org>
25620 Date:   Sun Aug 26 15:28:36 2012 +1200
25621
25622     altosdroid: Add State constants for future usage
25623     
25624     Signed-off-by: Mike Beattie <mike@ethernal.org>
25625
25626 commit 6ffcc82d8d18d3f05d4f5881e50dda298b43c114
25627 Author: Mike Beattie <mike@ethernal.org>
25628 Date:   Sun Aug 26 15:28:09 2012 +1200
25629
25630     altosdroid: begin adding IPC to TelemetryService
25631     
25632     * And add imports for LinkedBlockingQueue... oops!
25633     
25634     Signed-off-by: Mike Beattie <mike@ethernal.org>
25635
25636 commit a33333b97e810f50db36f345aab71a3200feccc3
25637 Author: Mike Beattie <mike@ethernal.org>
25638 Date:   Sun Aug 26 15:24:19 2012 +1200
25639
25640     altosdroid: remove old Binder from TelemetryService
25641     
25642     Signed-off-by: Mike Beattie <mike@ethernal.org>
25643
25644 commit b69796991c1da6baf245349fcc4392668b9b5570
25645 Author: Mike Beattie <mike@ethernal.org>
25646 Date:   Sun Aug 26 15:23:17 2012 +1200
25647
25648     altosdroid: begin adding IPC to main thread
25649     
25650     Signed-off-by: Mike Beattie <mike@ethernal.org>
25651
25652 commit bcd53483ccf4bbb2f163a011faae6d19a7bbed0d
25653 Author: Mike Beattie <mike@ethernal.org>
25654 Date:   Sun Aug 26 15:22:23 2012 +1200
25655
25656     altosdroid: Add TBT initialisation to AltosBluetooth
25657     
25658     Signed-off-by: Mike Beattie <mike@ethernal.org>
25659
25660 commit ef29a197ce3318404f37e8a0b24d235e8b024a1f
25661 Author: Mike Beattie <mike@ethernal.org>
25662 Date:   Sun Aug 26 15:21:57 2012 +1200
25663
25664     altosdroid: Add debugging statements to AltosBluetooth
25665     
25666     Signed-off-by: Mike Beattie <mike@ethernal.org>
25667
25668 commit fb8cd14cca61ca59b95c23e71505607b4509d4ed
25669 Author: Mike Beattie <mike@ethernal.org>
25670 Date:   Sun Aug 26 15:21:36 2012 +1200
25671
25672     altosdroid: Add input thread for reading from TBT
25673     
25674     Signed-off-by: Mike Beattie <mike@ethernal.org>
25675
25676 commit 5ce132b3366cd120499fcbe22b5fbe96d21b8584
25677 Author: Mike Beattie <mike@ethernal.org>
25678 Date:   Sun Aug 26 15:20:42 2012 +1200
25679
25680     altosdroid: Move constructor for AltosBluetooth
25681     
25682     Signed-off-by: Mike Beattie <mike@ethernal.org>
25683
25684 commit b59e7d0b201290f2cb0fd494ef28c1402e11ba3b
25685 Author: Mike Beattie <mike@ethernal.org>
25686 Date:   Sun Aug 26 15:18:44 2012 +1200
25687
25688     altosdroid: clean up stub functions in AltosBluetooth.java
25689     
25690     Signed-off-by: Mike Beattie <mike@ethernal.org>
25691
25692 commit d184638be79dafd6fb43df21040eb52402f54ea5
25693 Author: Mike Beattie <mike@ethernal.org>
25694 Date:   Sun Aug 26 15:11:12 2012 +1200
25695
25696     altosdroid: AltosBluetooth.java
25697     
25698     * clean up variables/comments
25699     
25700     Signed-off-by: Mike Beattie <mike@ethernal.org>
25701
25702 commit bad155538c4630c62ade80afd20830aad37c287e
25703 Author: Mike Beattie <mike@ethernal.org>
25704 Date:   Sun Aug 26 15:10:15 2012 +1200
25705
25706     altosdroid: AltosBluetooth.java
25707     
25708     * Clean up imports
25709     * Convert from reflection to using Well Known UUID for SPP.
25710     * clean up local variables
25711     * Add debug conditionals to logging
25712     * remove references to socket type
25713     
25714     Signed-off-by: Mike Beattie <mike@ethernal.org>
25715
25716 commit c9689a3ef65ea9da5a7009834add789737ffb6a9
25717 Author: Mike Beattie <mike@ethernal.org>
25718 Date:   Sun Aug 26 15:03:54 2012 +1200
25719
25720     altosdroid: Clean up imports in TelemetryService
25721     
25722     * Begin adding AltosLib usage
25723     
25724     Signed-off-by: Mike Beattie <mike@ethernal.org>
25725
25726 commit ffdfc08c317f503e30604d058749b24c3ca7bafa
25727 Author: Mike Beattie <mike@ethernal.org>
25728 Date:   Sun Aug 26 15:00:23 2012 +1200
25729
25730     altosdroid: Add service start/bind/unbind to AltosDroid
25731     
25732     Signed-off-by: Mike Beattie <mike@ethernal.org>
25733
25734 commit 95a34caa8343997bcf7d8969ee8ae3124efcb573
25735 Author: Mike Beattie <mike@ethernal.org>
25736 Date:   Sun Aug 26 14:57:04 2012 +1200
25737
25738     altosdroid: Remove AltosLib import from main thread
25739
25740 commit cfe93315fc0e4b01a95b8e59f24aca96b5a66daf
25741 Author: Mike Beattie <mike@ethernal.org>
25742 Date:   Sun Aug 26 14:55:19 2012 +1200
25743
25744     altosdroid: whitespace
25745     
25746     Signed-off-by: Mike Beattie <mike@ethernal.org>
25747
25748 commit 3f3da6626ef41b2cab116d6299d2a89cbf7718a9
25749 Author: Mike Beattie <mike@ethernal.org>
25750 Date:   Sun Aug 26 14:54:54 2012 +1200
25751
25752     altosdroid: Re-locate TextView initialisation
25753     
25754     Signed-off-by: Mike Beattie <mike@ethernal.org>
25755
25756 commit 917f519a4e876087590a3a260fbbccf4c0ac3e31
25757 Author: Mike Beattie <mike@ethernal.org>
25758 Date:   Sun Aug 26 14:54:06 2012 +1200
25759
25760     altosdroid: remove UI components/imports no longer used
25761     
25762     Signed-off-by: Mike Beattie <mike@ethernal.org>
25763
25764 commit 80bf63702175322053f2b38c4fff56b653ab7c70
25765 Author: Mike Beattie <mike@ethernal.org>
25766 Date:   Sun Aug 26 14:52:30 2012 +1200
25767
25768     altosdroid: excise BluetoothChatService example code
25769     
25770     Signed-off-by: Mike Beattie <mike@ethernal.org>
25771
25772 commit 372840b4ebfd3da3cd713b6bc6a8ffc8cd6b6b8c
25773 Author: Mike Beattie <mike@ethernal.org>
25774 Date:   Sun Aug 26 14:48:48 2012 +1200
25775
25776     altosdroid: remove TelemetryService activities
25777     
25778     service start/stop will be handled by AltosDroid/itself now.
25779     
25780     Signed-off-by: Mike Beattie <mike@ethernal.org>
25781
25782 commit 24503eb330bf887f5c76afe2aaa9c9f2ce177460
25783 Author: Mike Beattie <mike@ethernal.org>
25784 Date:   Sun Aug 26 14:44:09 2012 +1200
25785
25786     altosdroid: whitespace (spaces to tabs) (part2)
25787     
25788     Signed-off-by: Mike Beattie <mike@ethernal.org>
25789
25790 commit 7aab6e6b6e361455a7515fe6db7b0e9a6e4c786c
25791 Author: Mike Beattie <mike@ethernal.org>
25792 Date:   Sun Aug 26 14:29:36 2012 +1200
25793
25794     altosdroid: whitespace (spaces to tabs) (part1)
25795     
25796     Signed-off-by: Mike Beattie <mike@ethernal.org>
25797
25798 commit 0f3597389977f86a8c1bdff1b7f46107c43ef306
25799 Author: Mike Beattie <mike@ethernal.org>
25800 Date:   Sun Aug 26 12:41:24 2012 +1200
25801
25802     altosdroid: Update copyrights
25803     
25804     Signed-off-by: Mike Beattie <mike@ethernal.org>
25805
25806 commit 7ecb429fe4682faf209452b1738ff3c8096fc5d5
25807 Author: Keith Packard <keithp@keithp.com>
25808 Date:   Fri Aug 24 00:46:55 2012 -0700
25809
25810     altos: Configure telefire SPI and LEDs correctly
25811     
25812     This places the telefire SPI bus on USART1 option 2 and
25813     marks the various LED functions with symbolic names.
25814     
25815     Signed-off-by: Keith Packard <keithp@keithp.com>
25816
25817 commit 310c1d0bf83448eb12e5d64ac09a4279c25fd258
25818 Author: Keith Packard <keithp@keithp.com>
25819 Date:   Fri Aug 24 00:44:35 2012 -0700
25820
25821     altos: telelaunch doesn't need ao_radio_cmac_init
25822     
25823     This function was used to initialize the LCO functions, which were
25824     moved to ao_lco.c a few commits back, so ao_radio_cmac_init doesn't
25825     even exist anymore.
25826     
25827     Signed-off-by: Keith Packard <keithp@keithp.com>
25828
25829 commit 6581fa1641882198c870c2f7b1340794b9d47f29
25830 Author: Keith Packard <keithp@keithp.com>
25831 Date:   Fri Aug 24 00:42:32 2012 -0700
25832
25833     altos: Get ao_pad.c working on telefire v0.1
25834     
25835     Monitor all four channels, allow any channel to be fired.
25836     Turn on power LED at startup time.
25837     
25838     Signed-off-by: Keith Packard <keithp@keithp.com>
25839
25840 commit 83e0d4352041b3964ea7a133b0f67da9ebaa1c77
25841 Author: Keith Packard <keithp@keithp.com>
25842 Date:   Fri Aug 24 00:40:27 2012 -0700
25843
25844     altos: Split out LCO functions from ao_radio_cmac.c to ao_lco.c
25845     
25846     These functions are not used in the telelaunch or telefire nodes, so
25847     don't force them to be included.
25848     
25849     Signed-off-by: Keith Packard <keithp@keithp.com>
25850
25851 commit c64999c39d6d9242f98bdc9312436c3333115bfd
25852 Author: Keith Packard <keithp@keithp.com>
25853 Date:   Fri Aug 24 00:39:46 2012 -0700
25854
25855     altos: Have radio_cmac turn on LEDs as appropriate
25856     
25857     Use AO_LED_RX and AO_LED_TX defines if present to control LEDs during
25858     radio operations.
25859     
25860     Signed-off-by: Keith Packard <keithp@keithp.com>
25861
25862 commit a8e9906513227600599da12b268ff5f807ae98c7
25863 Author: Keith Packard <keithp@keithp.com>
25864 Date:   Fri Aug 24 00:34:55 2012 -0700
25865
25866     altos: Add 'ao_led_set_mask' in the PCA9922 driver
25867     
25868     This lets a subset of the LEDs be controlled independent of other LED settings.
25869     
25870     Signed-off-by: Keith Packard <keithp@keithp.com>
25871
25872 commit 50b58d703b8b48005a3ca9ad4e3603d6f7ac1430
25873 Author: Keith Packard <keithp@keithp.com>
25874 Date:   Fri Aug 24 00:33:38 2012 -0700
25875
25876     altos: Make cc1111 SPI pins configurable
25877     
25878     Allow either USART in any configuration. Still only supports one SPI
25879     bus though.
25880     
25881     Signed-off-by: Keith Packard <keithp@keithp.com>
25882
25883 commit 7a0ed0ff4192060854d69e640de2c30105eb2f62
25884 Author: Keith Packard <keithp@keithp.com>
25885 Date:   Fri Aug 24 00:27:13 2012 -0700
25886
25887     altos: Disable telefire 'pad' listener when testing radio
25888     
25889     Ensures that the radio testing won't block waiting for a firing mode
25890     packet to arrive.
25891     
25892     Signed-off-by: Keith Packard <keithp@keithp.com>
25893
25894 commit 659c0cd3ee4b9581c12ac2cd1b4162bf07a921ce
25895 Author: Keith Packard <keithp@keithp.com>
25896 Date:   Sun Aug 19 10:02:16 2012 -0700
25897
25898     altosui: Check for JRE 1.7 in Windows installer
25899     
25900     altosui runs fine with version 1.7 (on Linux at least), so allow that
25901     version to satisfy the java check instead of requiring the user to
25902     down-grade to 1.6
25903     
25904     Signed-off-by: Keith Packard <keithp@keithp.com>
25905
25906 commit ab1279cc6a683595631d7ac8bed7b36e0c8a691c
25907 Author: Keith Packard <keithp@keithp.com>
25908 Date:   Sat Aug 18 22:51:47 2012 -0700
25909
25910     Here's the button driver and event queue logic
25911     
25912     These were neglected in the commit which was supposed to include them
25913     
25914     Signed-off-by: Keith Packard <keithp@keithp.com>
25915
25916 commit 93db8febda03d9a02c5c1ccdc6ad44eaf00a433b
25917 Author: Keith Packard <keithp@keithp.com>
25918 Date:   Sat Aug 18 21:26:34 2012 -0700
25919
25920     altos: Add MMA655X driver
25921     
25922     Just debug code at this point, will complete on real hardware
25923     
25924     Signed-off-by: Keith Packard <keithp@keithp.com>
25925
25926 commit 8457ca81adc9d62a7ffe56a7c0c36f2fcadaa682
25927 Author: Keith Packard <keithp@keithp.com>
25928 Date:   Sat Aug 18 21:25:34 2012 -0700
25929
25930     altos/cc1111: Document SPI bus pin options
25931     
25932     Just a comment in the source code about which pins each option selects.
25933     
25934     Signed-off-by: Keith Packard <keithp@keithp.com>
25935
25936 commit f46d94ca5c969c88dd307d1b684d6fafa2157020
25937 Author: Keith Packard <keithp@keithp.com>
25938 Date:   Sat Aug 18 21:24:16 2012 -0700
25939
25940     altos: Use split SPI bus for MS5607 sensor
25941     
25942     Leave CS low while releasing the SPI bus when waiting for conversion
25943     complete -- other SPI bus users will use another set of pins.
25944     
25945     Signed-off-by: Keith Packard <keithp@keithp.com>
25946
25947 commit a1a48aa9ee0bf7fa6720b34c0f544485caea7cac
25948 Author: Keith Packard <keithp@keithp.com>
25949 Date:   Sat Aug 18 21:21:58 2012 -0700
25950
25951     altos: Allow STM SPI bus on multiple pin sets
25952     
25953     This allows multiple STM pin groups to be used for each SPI
25954     bus. Useful for the MS5607 sensor which signals conversion complete on
25955     the MISO line.
25956     
25957     Signed-off-by: Keith Packard <keithp@keithp.com>
25958
25959 commit 00abbbb79de67dc95176fe48b23ce3e8614e8d3a
25960 Author: Mike Beattie <mike@ethernal.org>
25961 Date:   Wed Aug 8 07:07:49 2012 +1200
25962
25963     ao-send-telem: make --realtime work
25964     
25965     (add "break;" to the case statement for options)
25966     
25967     Signed-off-by: Mike Beattie <mike@ethernal.org>
25968
25969 commit 9456332fc16269270a2e9b7ef0b54523800cfe27
25970 Merge: bd02349 4d4ad34
25971 Author: Mike Beattie <mike@ethernal.org>
25972 Date:   Wed Aug 8 06:49:15 2012 +1200
25973
25974     Merge branch 'master' of git://git.gag.com/fw/altos
25975
25976 commit 4d4ad34aec0c75c66162b992f1e52947e4685730
25977 Merge: c7f2285 8e4ebd1
25978 Author: Keith Packard <keithp@keithp.com>
25979 Date:   Tue Aug 7 11:48:20 2012 -0700
25980
25981     Merge remote-tracking branch 'mjb/master'
25982
25983 commit bd02349111ae0f39b320e6a10a330051ddc39fdf
25984 Merge: 8e4ebd1 c7f2285
25985 Author: Mike Beattie <mike@ethernal.org>
25986 Date:   Wed Aug 8 06:46:56 2012 +1200
25987
25988     Merge branch 'master' of git://git.gag.com/fw/altos
25989
25990 commit 8e4ebd1f6eb928b5cb7bcda4ed88851aa9e61bdf
25991 Author: Mike Beattie <mike@ethernal.org>
25992 Date:   Wed Aug 8 06:45:03 2012 +1200
25993
25994     Add ao-send-telem to .gitignore
25995     
25996     Signed-off-by: Mike Beattie <mike@ethernal.org>
25997
25998 commit c7f228503870c44dfd278ede8b0980dbac73d3c7
25999 Author: Keith Packard <keithp@keithp.com>
26000 Date:   Tue Aug 7 11:32:16 2012 -0700
26001
26002     altos: Fix .sdcdbrc file for telebt-v0.1
26003     
26004     Signed-off-by: Keith Packard <keithp@keithp.com>
26005
26006 commit c58f3d1a373b20fac3f51037008bcc40955f1348
26007 Author: Keith Packard <keithp@keithp.com>
26008 Date:   Tue Aug 7 11:30:47 2012 -0700
26009
26010     altos: Oops. Serial 1 stdin was busted by typo
26011     
26012     A typo in the symbol used to enable stdin wakeups from serial1 caused
26013     the input to pend until some other wakeup occurred.
26014     
26015     This also makes the serial1 hw flow control pin selects in config 2
26016     work right, although those aren't used by any current product
26017     
26018     Signed-off-by: Keith Packard <keithp@keithp.com>
26019
26020 commit 46f87373bc8c28442273ee4f8da3a352223150f5
26021 Author: Keith Packard <keithp@keithp.com>
26022 Date:   Mon Aug 6 22:53:52 2012 -0700
26023
26024     altos: Add button driver and event queue
26025     
26026     With this, a single task can wait for any button or quadrature input
26027     device.
26028     
26029     Signed-off-by: Keith Packard <keithp@keithp.com>
26030
26031 commit 11046bc89b3ce6386f1005fc8476b08f54d6f5fb
26032 Author: Keith Packard <keithp@keithp.com>
26033 Date:   Mon Aug 6 21:54:58 2012 -0700
26034
26035     altos: Support multiple quadrature encoders.
26036     
26037     Signed-off-by: Keith Packard <keithp@keithp.com>
26038
26039 commit 5f7e61c749b02ed16e368502062e39b0471e9257
26040 Author: Keith Packard <keithp@keithp.com>
26041 Date:   Mon Aug 6 20:20:32 2012 -0700
26042
26043     altos: Fix up quadrature driver
26044     
26045     Mostly works now, should work reliably with a bit of input filtering.
26046     
26047     Signed-off-by: Keith Packard <keithp@keithp.com>
26048
26049 commit ab379493dbe9923db8e458d2f4e0344df17d331c
26050 Author: Keith Packard <keithp@keithp.com>
26051 Date:   Mon Aug 6 19:35:02 2012 -0700
26052
26053     Signed-off-by: Keith Packard <keithp@keithp.com>
26054     
26055     altos: Test quadrature driver
26056
26057 commit b0b52ca73bc836336ecc70247a9ed1dd633920d9
26058 Author: Keith Packard <keithp@keithp.com>
26059 Date:   Mon Aug 6 19:34:34 2012 -0700
26060
26061     altos: Add quadrature driver
26062     
26063     Signed-off-by: Keith Packard <keithp@keithp.com>
26064
26065 commit 6171892fa32e8a662a494ec6ba28a82fddc68589
26066 Author: Keith Packard <keithp@keithp.com>
26067 Date:   Mon Aug 6 19:33:44 2012 -0700
26068
26069     altos: Add ao_gpio_get and ao_exti_set_mode
26070     
26071     Needed to support general GPIO interrupts
26072     
26073     Signed-off-by: Keith Packard <keithp@keithp.com>
26074
26075 commit de701d5a234cd21930cf92c9cabebb0e230da9b5
26076 Author: Keith Packard <keithp@keithp.com>
26077 Date:   Sun Aug 5 14:58:40 2012 -0700
26078
26079     altos: Build ao_kalman.h from cc1111 subdirs as needed
26080     
26081     Signed-off-by: Keith Packard <keithp@keithp.com>
26082
26083 commit fc9aed1ef3485d259722c9b89e19969e0afe257c
26084 Author: Mike Beattie <mike@ethernal.org>
26085 Date:   Sun Feb 26 22:30:09 2012 +1300
26086
26087     Adjust service to be persistent.
26088     
26089     * Run as a foreground service -> high priority
26090     * Notification set to display as "Ongoing".
26091     
26092     Changed logo to be in colour at keithp's request. Greyscale logos still present as *_g.png
26093     
26094     Signed-off-by: Mike Beattie <mike@ethernal.org>
26095
26096 commit b80d1f4e8a2df3ace64468a38a815a4f982aa179
26097 Author: Bdale Garbee <bdale@gag.com>
26098 Date:   Sun Jun 10 20:04:24 2012 -0600
26099
26100     move from Debian packaged sdcc to new cc1111 package forked from 2.9.0-5
26101
26102 commit 0f82021186565fda10df7893b95deae4a1f32778
26103 Author: Keith Packard <keithp@keithp.com>
26104 Date:   Sun Aug 5 12:17:25 2012 -0700
26105
26106     src/cc1111: Enable SPI slave mode
26107     
26108     This is untested...
26109     
26110     Signed-off-by: Keith Packard <keithp@keithp.com>
26111
26112 commit 39594fdb3e30a1a25dd894c217e3d9d773bab972
26113 Author: Keith Packard <keithp@keithp.com>
26114 Date:   Sun Aug 5 12:16:25 2012 -0700
26115
26116     src/cc1111: Allow serial0 without serial1
26117     
26118     The ao_serial_speed structure is needed by serial0 too.
26119     
26120     Signed-off-by: Keith Packard <keithp@keithp.com>
26121
26122 commit 2610b316eb939c1532061646b05207fcd54d984f
26123 Author: Keith Packard <keithp@keithp.com>
26124 Date:   Sun Aug 5 12:15:36 2012 -0700
26125
26126     src/cc1111: Add ao_gpio_set macro
26127     
26128     Allows general GPIO-using code to run on cc1111
26129     
26130     Signed-off-by: Keith Packard <keithp@keithp.com>
26131
26132 commit 82a37d70e3cacf792c1aa18f8c0d2a19d6f321ed
26133 Author: Keith Packard <keithp@keithp.com>
26134 Date:   Sat Aug 4 22:58:48 2012 -0700
26135
26136     altosui: Move 'implements Runnable' from AltosSerial to AltosLink
26137     
26138     AltosLink is the class providing the 'run' method, after all...
26139     
26140     Signed-off-by: Keith Packard <keithp@keithp.com>
26141
26142 commit af34baf5dc587bee4cffa699ef383f85dde8c7cd
26143 Author: Mike Beattie <mike@ethernal.org>
26144 Date:   Thu Aug 2 23:38:26 2012 +1200
26145
26146     Reduce size of textview.
26147     
26148     Signed-off-by: Mike Beattie <mike@ethernal.org>
26149
26150 commit 359d7353fd7b7d4d537db04c5e89724502333ff8
26151 Author: Mike Beattie <mike@ethernal.org>
26152 Date:   Thu Aug 2 22:09:24 2012 +1200
26153
26154     AltosDroid: Begin re-working Bluetooth code
26155     
26156     * Move to using explicit 'magic' UUID, rather than java reflection
26157     * Re-work UI to make it more useful for testing
26158     * Use Insecure RFCOMM only, and remove code that differentiates.
26159     
26160     Signed-off-by: Mike Beattie <mike@ethernal.org>
26161
26162 commit c5304ac976dd44344a0b70ae3622e1f2d112a147
26163 Author: Mike Beattie <mike@ethernal.org>
26164 Date:   Thu Aug 2 21:20:23 2012 +1200
26165
26166     Fix min/target SDK versions
26167     
26168     Signed-off-by: Mike Beattie <mike@ethernal.org>
26169
26170 commit 7481d06bebc2dc1473f451971d8b744c9da4e726
26171 Merge: 599e28b c56dead
26172 Author: Mike Beattie <mike@ethernal.org>
26173 Date:   Thu Aug 2 21:18:15 2012 +1200
26174
26175     Merge branch 'master' of ssh://mjb@git.ethernal.org/~/git/altos
26176
26177 commit 599e28b2242c79bdd0960ef16e580e51a2fa3795
26178 Author: Mike Beattie <mike@ethernal.org>
26179 Date:   Thu Aug 2 21:16:54 2012 +1200
26180
26181     Re-work external lib support for newer Android SDK
26182     
26183     * Remove older *.properties methods of locating lib dir
26184     * clean up Eclipse classpath file
26185     * adjust Makefile.am to link AltosLib.jar into libs/
26186     
26187     Signed-off-by: Mike Beattie <mike@ethernal.org>
26188
26189 commit c56dead72f65e7468017656347dba531ab2ca480
26190 Author: Mike Beattie <mike@ethernal.org>
26191 Date:   Tue Jul 31 20:05:35 2012 +1200
26192
26193     Ignore autogenerated file: altosui/Info.plist
26194     
26195     Signed-off-by: Mike Beattie <mike@ethernal.org>
26196
26197 commit fb79f8fb358f8df25674336cd558fc3998cb7d9e
26198 Author: Mike Beattie <mike@ethernal.org>
26199 Date:   Tue Jul 31 20:04:34 2012 +1200
26200
26201     Don't build ao-stmload if stlink is not available.
26202     
26203     Signed-off-by: Mike Beattie <mike@ethernal.org>
26204
26205 commit 2e7e304e67bc1e094282c8668fa8cccf09f9c9b4
26206 Author: Keith Packard <keithp@keithp.com>
26207 Date:   Sun Jul 29 19:48:08 2012 -0700
26208
26209     altos: Add driver for STM internal flash
26210     
26211     Signed-off-by: Keith Packard <keithp@keithp.com>
26212
26213 commit 843fcab46d633e5bb6959286adeb68e41a4c30a3
26214 Author: Keith Packard <keithp@keithp.com>
26215 Date:   Sun Jul 29 19:44:56 2012 -0700
26216
26217     altos: Add telefire-v0.1
26218     
26219     Signed-off-by: Keith Packard <keithp@keithp.com>
26220
26221 commit e4d244eefa4c779cd9c8a91389bf998c54705b72
26222 Author: Keith Packard <keithp@keithp.com>
26223 Date:   Sun Jul 29 19:42:53 2012 -0700
26224
26225     altos: Add software AES implementation
26226     
26227     This is untested
26228     
26229     Signed-off-by: Keith Packard <keithp@keithp.com>
26230
26231 commit 21e39811bd234c6f66ab7644864fcc1b8c316998
26232 Author: Keith Packard <keithp@keithp.com>
26233 Date:   Sun Jul 29 19:36:50 2012 -0700
26234
26235     altos/cc1111: Fix serial 0 option 2 pins definitions
26236     
26237     tx/rx are 4/5, rts/cts are 2/3
26238     
26239     Signed-off-by: Keith Packard <keithp@keithp.com>
26240
26241 commit 743dca54012758d3ae54312d542b34afa88495cd
26242 Author: Keith Packard <keithp@keithp.com>
26243 Date:   Sun Jul 29 19:35:15 2012 -0700
26244
26245     altosui: Remove duplicate values from info table. Add altitude
26246     
26247     No need to have state/call/serial/flight data, those are all in the
26248     header. Having altitude makes Monitor Idle slightly more useful.
26249     
26250     Signed-off-by: Keith Packard <keithp@keithp.com>
26251
26252 commit 0bf21399d3d47d58410df4c6ce89fc20fcd42c89
26253 Author: Keith Packard <keithp@keithp.com>
26254 Date:   Sun Jul 29 19:34:00 2012 -0700
26255
26256     altosui: Handle Monitor Idle errors better
26257     
26258     Deal with missing data by checking for MISSING in more places.
26259     Handle serial communication failures during send by reporting back
26260     from libaltos.
26261     
26262     Signed-off-by: Keith Packard <keithp@keithp.com>
26263
26264 commit 59588ba34159b27c02e1a886b46497ecfa0cf4d3
26265 Author: Keith Packard <keithp@keithp.com>
26266 Date:   Sun Jul 29 16:22:23 2012 -0700
26267
26268     Add ability to re-play telemetry through TeleDongle
26269     
26270     This adds a new command to TeleDongle to send arbitrary data, and then
26271     creates a new tool, 'ao-send-telem' that replays existing telemetry
26272     files through TeleDongle.
26273     
26274     Signed-off-by: Keith Packard <keithp@keithp.com>
26275
26276 commit 52e920bc7a98edf5c6f2ad0bd59d581011dcd5c9
26277 Author: Keith Packard <keithp@keithp.com>
26278 Date:   Sun Jul 22 15:18:27 2012 -0700
26279
26280     altos: Move ao_radio_cmac.c to core (it doesn't depend on hardware)
26281     
26282     Signed-off-by: Keith Packard <keithp@keithp.com>
26283
26284 commit 233ab58df8ac8e1fdeab8d4c2f6c8c9d3f6e7be1
26285 Author: Keith Packard <keithp@keithp.com>
26286 Date:   Sun Jul 22 11:53:44 2012 -0700
26287
26288     altosui: Move AltosIgnite.java to altoslib
26289     
26290     To be shared with altosdroid eventually
26291     
26292     Signed-off-by: Keith Packard <keithp@keithp.com>
26293
26294 commit 38f66a31174dd367e39d717c527f555add60a9d4
26295 Author: Keith Packard <keithp@keithp.com>
26296 Date:   Fri Jul 20 12:04:17 2012 -0700
26297
26298     tools: Use pkgconfig to find stlink for ao-stmload
26299     
26300     Signed-off-by: Keith Packard <keithp@keithp.com>
26301
26302 commit e033a72d3f420e18ed24354c7dfc7e1317a03fb6
26303 Author: Keith Packard <keithp@keithp.com>
26304 Date:   Fri Jul 20 11:08:22 2012 -0700
26305
26306     Add stlink pinout
26307     
26308     Signed-off-by: Keith Packard <keithp@keithp.com>
26309
26310 commit 15ebd9c75aa57572040e3b1ee41e6f3eb8cf92ee
26311 Author: Keith Packard <keithp@keithp.com>
26312 Date:   Thu Jul 19 09:46:20 2012 -0700
26313
26314     altosui: Delay starting KML output for flight and GPS coords
26315     
26316     Don't start outputing KML data until the telem record containing
26317     flight number and GPS coordinates are present.
26318     
26319     Signed-off-by: Keith Packard <keithp@keithp.com>
26320
26321 commit ada6f2dfc045e77cb9499f20cdec1b4a54ef0db1
26322 Author: Robert Garbee <robert@gag.com>
26323 Date:   Wed Jul 18 18:41:00 2012 -0600
26324
26325     telescience: correctly calculating rate values with higher resolution
26326
26327 commit e2b472bbb2418fc13be42dbc7c52beb88479c46d
26328 Merge: 75d6aa6 b242f27
26329 Author: Robert Garbee <robert@gag.com>
26330 Date:   Wed Jul 18 14:25:27 2012 -0600
26331
26332     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
26333
26334 commit 75d6aa6f798606f1a6c5a46542065dda81e63b2a
26335 Author: Robert Garbee <robert@gag.com>
26336 Date:   Wed Jul 18 14:24:05 2012 -0600
26337
26338     ICP3 working
26339
26340 commit 49b1ff4c614d24977b33cd17b583acc87acff476
26341 Author: Robert Garbee <robert@gag.com>
26342 Date:   Wed Jul 18 13:41:27 2012 -0600
26343
26344     Timer 3 working with slower clock and all 16 bits.
26345
26346 commit b242f2756a8d9419a9bdba890b9e6b73560bdc19
26347 Author: Keith Packard <keithp@keithp.com>
26348 Date:   Wed Jul 18 00:03:54 2012 -0700
26349
26350     altosdroid: Start adding an AltosLink subclass for android
26351     
26352     Will talks over bluetooth while providing an AltosLink APi
26353     
26354     Signed-off-by: Keith Packard <keithp@keithp.com>
26355
26356 commit f164e48cbeff521d45737794e2046a08322951d6
26357 Author: Keith Packard <keithp@keithp.com>
26358 Date:   Wed Jul 18 00:01:51 2012 -0700
26359
26360     altosui: Make scan UI handle incremental telem data
26361     
26362     The new telem format doesn't send everything in each telem packet, so
26363     we need to handle updating information incrementally in the scan
26364     results. This involved clearing old scan data when switching
26365     frequencies and then updating existing entries with new data as it arrives.
26366     
26367     Signed-off-by: Keith Packard <keithp@keithp.com>
26368
26369 commit a698cd68968fc0be5f96b1729cdea2f65d2ccbf6
26370 Author: Keith Packard <keithp@keithp.com>
26371 Date:   Tue Jul 17 23:59:13 2012 -0700
26372
26373     altos: Toggling telemetry monitoring would replay the telem queue
26374     
26375     Using the 'm' command to turn telem off and back on would end up going
26376     around the whole telemetry queue replaying everything there as the
26377     wait loop would exit when disabling monitoring even if the ring was empty.
26378     
26379     Signed-off-by: Keith Packard <keithp@keithp.com>
26380
26381 commit 9fd5e3c28fb0fd6da8641e7dd18b9912866d1b75
26382 Author: Keith Packard <keithp@keithp.com>
26383 Date:   Tue Jul 17 21:06:07 2012 -0700
26384
26385     altos: With debug cables disconnected, CC1120 seems happy at +16dBm
26386     
26387     Let's see how it goes...
26388     
26389     Signed-off-by: Keith Packard <keithp@keithp.com>
26390
26391 commit 700818c8ff0518e79bff2f0e80b2cc3cb3b48bf0
26392 Author: Keith Packard <keithp@keithp.com>
26393 Date:   Tue Jul 17 21:04:58 2012 -0700
26394
26395     altosui: Accept variations in spacing for igniter status reply
26396     
26397     Megametrum uses different white space; just deal with it here.
26398     
26399     Signed-off-by: Keith Packard <keithp@keithp.com>
26400
26401 commit f6921c9040b1f1fc4408d163532b0695a3611195
26402 Author: Keith Packard <keithp@keithp.com>
26403 Date:   Tue Jul 17 21:04:23 2012 -0700
26404
26405     altoslib: Move idle monitor managing code to altoslib
26406     
26407     More stuff to be shared (potentially)
26408     
26409     Signed-off-by: Keith Packard <keithp@keithp.com>
26410
26411 commit b4be63627e146c7c868b5b3468d34880a561cfba
26412 Author: Keith Packard <keithp@keithp.com>
26413 Date:   Tue Jul 17 20:44:55 2012 -0700
26414
26415     altos: Megametrum ADC values are 12 bits, discard low 4 for telemetry
26416     
26417     We've only got space for 8 bits for the ADC values for pyro channels,
26418     discard the low 4 bits instead of the low 8 bits.
26419     
26420     Signed-off-by: Keith Packard <keithp@keithp.com>
26421
26422 commit 97c1cfee929a35dd1596dc02ce519b80132f3c5c
26423 Author: Keith Packard <keithp@keithp.com>
26424 Date:   Tue Jul 17 20:43:31 2012 -0700
26425
26426     altoslib: Don't use MISSING values in max computations
26427     
26428     Early telemetry state may be missing critical data, don't use MISSING
26429     values in computing max ranges.
26430     
26431     Signed-off-by: Keith Packard <keithp@keithp.com>
26432
26433 commit 99b7eaf8d1b312443b842d078fb8464032b3a39b
26434 Author: Keith Packard <keithp@keithp.com>
26435 Date:   Tue Jul 17 20:42:42 2012 -0700
26436
26437     altoslib: Fix MM conversion functions
26438     
26439     Pressure is already reported in Pa, no need to convert that.
26440     Voltage divider computations were backwards.
26441     
26442     Signed-off-by: Keith Packard <keithp@keithp.com>
26443
26444 commit e93c6bcc799d76d4ff425815e2601a25e6796229
26445 Author: Robert Garbee <robert@gag.com>
26446 Date:   Tue Jul 17 13:23:48 2012 -0600
26447
26448     first work on PWM input to TeleScience, 'p' command displays timer 1
26449
26450 commit a5d873d47b3b16ca32559b4de668bf07b25eddb0
26451 Author: Keith Packard <keithp@keithp.com>
26452 Date:   Tue Jul 17 01:24:52 2012 -0700
26453
26454     altos: Place STM config values at fixed addresses for re-use
26455     
26456     Just like cc1111, stick the serial number and radio calibration values
26457     at known fixed addresses so that when re-flashing the board, we can go
26458     find the existing values.
26459     
26460     Signed-off-by: Keith Packard <keithp@keithp.com>
26461
26462 commit 20877ae9de8bb5d3a29e2a96024e53afbd396f55
26463 Author: Keith Packard <keithp@keithp.com>
26464 Date:   Tue Jul 17 01:18:45 2012 -0700
26465
26466     Add ao-stmload tool
26467     
26468     This loads an ELF image through the STlink programming interface using
26469     the stlink utility library
26470     
26471     Signed-off-by: Keith Packard <keithp@keithp.com>
26472
26473 commit eda636c5f309b85282b4142118ee65673d28d137
26474 Author: Keith Packard <keithp@keithp.com>
26475 Date:   Mon Jul 16 15:36:20 2012 -0700
26476
26477     altosui: Skip unknown data when parsing ADC for idle monitoring
26478     
26479     This resolves an infinite loop when talking to megametrum.
26480     
26481     Signed-off-by: Keith Packard <keithp@keithp.com>
26482
26483 commit 52196975c447851f14619213c1de5101d334eebc
26484 Author: Keith Packard <keithp@keithp.com>
26485 Date:   Mon Jul 16 15:35:11 2012 -0700
26486
26487     altosui: Move serial datastream parser to altoslib
26488     
26489     instead of having it in altosui
26490     
26491     Signed-off-by: Keith Packard <keithp@keithp.com>
26492
26493 commit 0edb5616a70fd480317acc99ec3c28c662aa8556
26494 Author: Keith Packard <keithp@keithp.com>
26495 Date:   Mon Jul 16 15:34:01 2012 -0700
26496
26497     altos: megametrum depends on ao_companion.h
26498     
26499     Signed-off-by: Keith Packard <keithp@keithp.com>
26500
26501 commit 5860f75677ee20fcf35ab89a6b62f3e14a1c32f5
26502 Author: Keith Packard <keithp@keithp.com>
26503 Date:   Mon Jul 16 15:32:26 2012 -0700
26504
26505     altos: Enable pyro channel control in telepyro
26506     
26507     This should make the board actually work now.
26508     
26509     Signed-off-by: Keith Packard <keithp@keithp.com>
26510
26511 commit 3ce645a79b54e22d7835c6e390a22a5ad501a339
26512 Author: Keith Packard <keithp@keithp.com>
26513 Date:   Mon Jul 16 15:30:29 2012 -0700
26514
26515     altos: Add manual firing command for extra pyro channels
26516     
26517     In parallel with the existing igniter commands, this tests the
26518     programmable pyro channels
26519     
26520     Signed-off-by: Keith Packard <keithp@keithp.com>
26521
26522 commit 6581eefbdbd8d3e94f615bdf11652a000d131c8e
26523 Author: Keith Packard <keithp@keithp.com>
26524 Date:   Mon Jul 16 15:27:58 2012 -0700
26525
26526     altos: Use 'HAS_ORIENT' to enable orientation selection in pyro code
26527     
26528     Don't expose orientation options when no orientation data is available
26529     
26530     Signed-off-by: Keith Packard <keithp@keithp.com>
26531
26532 commit 1887ca3d7d4a0259686f8c1e68d1e47c47b4ab84
26533 Author: Keith Packard <keithp@keithp.com>
26534 Date:   Mon Jul 16 15:25:47 2012 -0700
26535
26536     altos: Pass flight dynamics to companion boards
26537     
26538     Necessary for TelePyro
26539     
26540     Signed-off-by: Keith Packard <keithp@keithp.com>
26541
26542 commit 90507d4f7ef77b0870a032b1d9809898c2924721
26543 Author: Keith Packard <keithp@keithp.com>
26544 Date:   Mon Jul 16 15:24:21 2012 -0700
26545
26546     altos: Make ao_tick_count visible
26547     
26548     Necessary to fetch it when interrupts are already disabled as we can't
26549     call ao_time then.
26550     
26551     Signed-off-by: Keith Packard <keithp@keithp.com>
26552
26553 commit 184e2ff4790974733df57facdeeb96bfe692ab54
26554 Author: Keith Packard <keithp@keithp.com>
26555 Date:   Mon Jul 16 15:21:21 2012 -0700
26556
26557     altos: Remove some debug code from avr ADC driver
26558     
26559     Signed-off-by: Keith Packard <keithp@keithp.com>
26560
26561 commit e7ca3a7849b3cbbb38143d35fe86972290bd4e61
26562 Author: Keith Packard <keithp@keithp.com>
26563 Date:   Mon Jul 16 15:18:12 2012 -0700
26564
26565     altos: Make sure telepyro ao_product.h is built before .o files
26566     
26567     Signed-off-by: Keith Packard <keithp@keithp.com>
26568
26569 commit 4de789331098abc24abcb9390a35aef889a41784
26570 Author: Keith Packard <keithp@keithp.com>
26571 Date:   Mon Jul 16 14:47:53 2012 -0700
26572
26573     altos: Make storage addresses datatype configurable
26574     
26575     No sense using 32 bits for tiny hardware
26576     
26577     Signed-off-by: Keith Packard <keithp@keithp.com>
26578
26579 commit 84d5e00d417af4924594908d19346bb965089cdd
26580 Author: Keith Packard <keithp@keithp.com>
26581 Date:   Mon Jul 16 14:44:40 2012 -0700
26582
26583     src: Add driver for AVR internal eeprom. Use for telepyro config.
26584     
26585     Signed-off-by: Keith Packard <keithp@keithp.com>
26586
26587 commit 2a23030031c31267fc4f14accd9220f285c03b61
26588 Author: Keith Packard <keithp@keithp.com>
26589 Date:   Mon Jul 16 14:40:49 2012 -0700
26590
26591     altos: No space for pyro help on TP v0.1
26592     
26593     AVR doesn't have enough ram to hold the help messages, and we can't
26594     use them in flash.
26595     
26596     Signed-off-by: Keith Packard <keithp@keithp.com>
26597
26598 commit 366217e86a4c353012b5102322ee6927f7b27a21
26599 Author: Keith Packard <keithp@keithp.com>
26600 Date:   Mon Jul 16 14:39:05 2012 -0700
26601
26602     altos: Remove unused 'func' from ao_config_set
26603     
26604     Signed-off-by: Keith Packard <keithp@keithp.com>
26605
26606 commit 81b7b58c9df01847fa47747deeff8c3c91304ad1
26607 Author: Keith Packard <keithp@keithp.com>
26608 Date:   Mon Jul 16 14:37:58 2012 -0700
26609
26610     altos/avr: Remove debugging command from USB driver
26611     
26612     Signed-off-by: Keith Packard <keithp@keithp.com>
26613
26614 commit 42a51becf4b76f23dbd4f5f80f8879ce696aa543
26615 Author: Keith Packard <keithp@keithp.com>
26616 Date:   Mon Jul 16 14:36:51 2012 -0700
26617
26618     altos/avr: Remove debugging printf in avr stdio startup
26619     
26620     Signed-off-by: Keith Packard <keithp@keithp.com>
26621
26622 commit 0cfd22baa6af44e053428c30c1a95cf5551b68af
26623 Author: Keith Packard <keithp@keithp.com>
26624 Date:   Sat Jul 14 02:44:17 2012 -0700
26625
26626     src: Add explicit 'pin' argument to ao_enable_output
26627     
26628     This lets the cc1111 use the atomic bit operation instead of a mask,
26629     which is immune to interrupt issues as well as being a shorter code sequence.
26630     
26631     Signed-off-by: Keith Packard <keithp@keithp.com>
26632
26633 commit 37032e4b0cbac4c823e3dd18e60ad8900e9ceff1
26634 Author: Keith Packard <keithp@keithp.com>
26635 Date:   Sat Jul 14 01:29:50 2012 -0700
26636
26637     altos/megametrum: Support the four additional pyro channels
26638     
26639     These use the new pyro code to allow for some flexibility in programming.
26640     
26641     Signed-off-by: Keith Packard <keithp@keithp.com>
26642
26643 commit 82b50fc1b7f2c6af7264fbad2c35508abc15e81e
26644 Author: Keith Packard <keithp@keithp.com>
26645 Date:   Sat Jul 14 01:28:55 2012 -0700
26646
26647     altos/stm: Expose ao_gpio_set which sets a specific GPIO pin
26648     
26649     Will need versions for other architectures
26650     
26651     Signed-off-by: Keith Packard <keithp@keithp.com>
26652
26653 commit 726e0f2c547b6bae1f1e640e2c1155c0b9631a9b
26654 Author: Keith Packard <keithp@keithp.com>
26655 Date:   Sat Jul 14 01:28:31 2012 -0700
26656
26657     stm: running out of memory in MM -- reduce stack to 668 bytes
26658     
26659     Signed-off-by: Keith Packard <keithp@keithp.com>
26660
26661 commit d90587535676f9492f0fde6b974353158104ef88
26662 Author: Keith Packard <keithp@keithp.com>
26663 Date:   Sat Jul 14 01:26:38 2012 -0700
26664
26665     altos: Add arbitrary pyro channel support
26666     
26667     Programmed by specifying a conjunction of flight conditions that
26668     trigger the igniter to fire.
26669     
26670     Signed-off-by: Keith Packard <keithp@keithp.com>
26671
26672 commit 09633cac697e37d770b2b666ab20cab30628484f
26673 Author: Keith Packard <keithp@keithp.com>
26674 Date:   Sat Jul 14 01:24:14 2012 -0700
26675
26676     altos/stm: Force STM stack to start at the top of RAM
26677     
26678     Using a fixed size means crashing if there's not enough space for
26679     that, or wasting memory if there's too much.
26680     
26681     Signed-off-by: Keith Packard <keithp@keithp.com>
26682
26683 commit b5f6d4e5251a825395c93916afa3af659c678498
26684 Author: Keith Packard <keithp@keithp.com>
26685 Date:   Wed Jul 11 19:15:32 2012 -0700
26686
26687     altosui: Abstract remote connection timeout stuff
26688     
26689     This moves some of the logic for managing when to present the 'cancel'
26690     dialog for remote operations to altoslib.
26691     
26692     Signed-off-by: Keith Packard <keithp@keithp.com>
26693
26694 commit f078a591cf2fafe89bb1bb883f49d80750129d44
26695 Author: Keith Packard <keithp@keithp.com>
26696 Date:   Wed Jul 11 14:28:53 2012 -0700
26697
26698     altosui: Remove a bunch of debugging printfs
26699     
26700     These aren't useful at this point.
26701     
26702     Signed-off-by: Keith Packard <keithp@keithp.com>
26703
26704 commit 846a6298e4a8bfbe87bb24d7b0802c0bf6f233be
26705 Author: Keith Packard <keithp@keithp.com>
26706 Date:   Wed Jul 11 13:53:30 2012 -0700
26707
26708     Report RSSI values in monitor idle UI (trac #44)
26709     
26710     This adds a new 's' command to TeleDongle to report RSSI value from last
26711     received packet, and then has AltosUI request that value when closing
26712     the remote link.
26713     
26714     Signed-off-by: Keith Packard <keithp@keithp.com>
26715
26716 commit cf44ea354c2d1780cee343132c6058e11e9eefa3
26717 Author: Keith Packard <keithp@keithp.com>
26718 Date:   Wed Jul 11 13:52:32 2012 -0700
26719
26720     altos: Fix gcc compiler warnings in GPS code
26721     
26722     unused variables and mis-matches in printf format codes.
26723     
26724     Signed-off-by: Keith Packard <keithp@keithp.com>
26725
26726 commit fe70611c3c7d4b8cce3b5292f0ec549f3191bf86
26727 Author: Keith Packard <keithp@keithp.com>
26728 Date:   Wed Jul 11 13:50:56 2012 -0700
26729
26730     altos: Create macros to convert from/to radio RSSI representation
26731     
26732     AO_RSSI_FROM_RADIO and AO_RADIO_FROM_RSSI.
26733     
26734     Removes a bunch of open-coded versions of the same function.
26735     
26736     Signed-off-by: Keith Packard <keithp@keithp.com>
26737
26738 commit 18431c88c8a6cb267922b97192e8b7ddb88d0e7e
26739 Author: Keith Packard <keithp@keithp.com>
26740 Date:   Wed Jul 11 13:49:26 2012 -0700
26741
26742     altos: Have 'make clean' remove all programs, even old ones
26743     
26744     This makes sure that changing version numbers doesn't leave old
26745     compiled output lying around.
26746     
26747     Signed-off-by: Keith Packard <keithp@keithp.com>
26748
26749 commit 726f47c8a07f060aed930e1d102a1e8b5a5c7aed
26750 Author: Keith Packard <keithp@keithp.com>
26751 Date:   Wed Jul 11 13:47:25 2012 -0700
26752
26753     altos: remove optimization for 'help' that confuses cc1111 compiler
26754     
26755     The cc1111 compiler gets this very wrong and prints piles of garbage
26756     
26757     Signed-off-by: Keith Packard <keithp@keithp.com>
26758
26759 commit 7be98836e69a222b2f9f4baacddcf12d168e2207
26760 Author: Keith Packard <keithp@keithp.com>
26761 Date:   Wed Jul 11 13:40:54 2012 -0700
26762
26763     Add megametrum outline to doc dir
26764     
26765     And install it alongside telemetrum-outline
26766     
26767     Signed-off-by: Keith Packard <keithp@keithp.com>
26768
26769 commit cc5d106f014f714a9a2d5f595a2de0da8f7da80a
26770 Author: Keith Packard <keithp@keithp.com>
26771 Date:   Wed Jul 11 13:40:07 2012 -0700
26772
26773     altos: Ignore megametrum built files
26774     
26775     Signed-off-by: Keith Packard <keithp@keithp.com>
26776
26777 commit 675ccd41e3b668cd4e1d2dd282dd317a00d00151
26778 Author: Keith Packard <keithp@keithp.com>
26779 Date:   Wed Jul 11 00:35:21 2012 -0700
26780
26781     Get AltOS version numbers into Mac 'about' dialog
26782     
26783     Generate Info.plist from Info.plist.in to correctly set the VERSION
26784     information. This also changes some strings around to make them look better
26785     
26786     Signed-off-by: Keith Packard <keithp@keithp.com>
26787
26788 commit 46407f7f3e4d2b6e74b3a2e90b38736a792cfc54
26789 Author: Keith Packard <keithp@keithp.com>
26790 Date:   Tue Jul 10 22:41:59 2012 -0700
26791
26792     altos: Force 434.550Mhz by connecting  debug gnd and clk (trac #41)
26793     
26794     Check for pin P2_2 low at startup and set the frequency to
26795     434.550MHz. This value won't get written to flash, so rebooting again
26796     will restore the configured frequency.
26797     
26798     Signed-off-by: Keith Packard <keithp@keithp.com>
26799
26800 commit aa305da7e5dc182c99c09e422c053d85ed48d5d5
26801 Author: Keith Packard <keithp@keithp.com>
26802 Date:   Tue Jul 10 22:09:44 2012 -0700
26803
26804     altos: Continuously update ground state while on pad (trac #42)
26805     
26806     Average data for 5 seconds, wait 5 seconds and if still in pad mode,
26807     replace the existing data with the new data. This should avoid
26808     averaging in boost data while still keeping things reasonably current.
26809     
26810     Signed-off-by: Keith Packard <keithp@keithp.com>
26811
26812 commit 0b92164143aaf0d2aa3d5d742484391c16545289
26813 Author: Keith Packard <keithp@keithp.com>
26814 Date:   Tue Jul 10 22:08:28 2012 -0700
26815
26816     altos: Set HAS_FLIGHT_DEBUG=1 to include the flight debugging commands
26817     
26818     This leaves USB enabled, and adds the 'F' command to dump
26819     internal flight state.
26820     
26821     Signed-off-by: Keith Packard <keithp@keithp.com>
26822
26823 commit fb60d87b02c0fc83a0b4268212f0b6b740c984e3
26824 Author: Keith Packard <keithp@keithp.com>
26825 Date:   Tue Jul 10 20:35:19 2012 -0700
26826
26827     altos: Signal continuity over radio in pad mode (trac #40)
26828     
26829     This is especially useful for telemini which has no beeper, allowing
26830     you to hear the continuity signal while at the pad over the air.
26831     
26832     Signed-off-by: Keith Packard <keithp@keithp.com>
26833
26834 commit bca72b782a2909ecedef15ad589292647221ca56
26835 Author: Keith Packard <keithp@keithp.com>
26836 Date:   Tue Jul 10 20:34:02 2012 -0700
26837
26838     altos: Add 'void' parameter to ao_fec_decode callback parameter
26839     
26840     This keeps the compiler from whinging about the lack of a prototype.
26841     
26842     Signed-off-by: Keith Packard <keithp@keithp.com>
26843
26844 commit aafa8859ecb27383f697b98f6991643b44f4721a
26845 Author: Keith Packard <keithp@keithp.com>
26846 Date:   Tue Jul 10 20:32:31 2012 -0700
26847
26848     altos: Save some memory.
26849     
26850     A few minor space savings in ao_cmd.c and ao_config.c.  Don't build
26851     unused conversion functions ao_altitude_to_pres and ao_temp_to_dC
26852     
26853     Signed-off-by: Keith Packard <keithp@keithp.com>
26854
26855 commit a60c5a728530e4659a6750d8d5b87000735d4531
26856 Author: Keith Packard <keithp@keithp.com>
26857 Date:   Tue Jul 10 15:15:00 2012 -0700
26858
26859     altos: Improve ao_flight_test a bit
26860     
26861     Add -i flag to include flight description
26862     Have run-tests know how many failures to expect
26863     Add run_baro to plot a single flight using the baro-only mode
26864     
26865     Signed-off-by: Keith Packard <keithp@keithp.com>
26866
26867 commit b89d37d357273b97050c00d7fe12022e32799fa8
26868 Author: Keith Packard <keithp@keithp.com>
26869 Date:   Tue Jul 10 15:13:55 2012 -0700
26870
26871     altos: add some (unused) test code for different soft-decision sizes
26872     
26873     This lets us experiment with hard-decision and other possible
26874     soft_decision bit depths.
26875     
26876     Signed-off-by: Keith Packard <keithp@keithp.com>
26877
26878 commit 6694cedd560a7ea9520ef11472c2770b489187c0
26879 Author: Keith Packard <keithp@keithp.com>
26880 Date:   Tue Jul 10 15:13:18 2012 -0700
26881
26882     altos: Eliminate compiler warnings when building ao_flight_test
26883     
26884     We turn on a pile of warnings for that.
26885     
26886     Signed-off-by: Keith Packard <keithp@keithp.com>
26887
26888 commit 1ae3f467a1d7be2fc3b1a45ba12568a3a25a0099
26889 Author: Keith Packard <keithp@keithp.com>
26890 Date:   Tue Jul 10 15:11:36 2012 -0700
26891
26892     altos: Rename *_mm.c back to *.c
26893     
26894     Was just a temporary hack to keep cc1111 products building during MM development.
26895     
26896     Signed-off-by: Keith Packard <keithp@keithp.com>
26897
26898 commit 702ca87983594880d7926d2317d63802af82746e
26899 Author: Keith Packard <keithp@keithp.com>
26900 Date:   Tue Jul 10 15:07:34 2012 -0700
26901
26902     altos: remove stale ao_flight.c and ao_sample.c
26903     
26904     The mega-metrum versions are now the official versions
26905     
26906     Signed-off-by: Keith Packard <keithp@keithp.com>
26907
26908 commit 31b05454ec8d90b89fa3039563ff0e86ae80b2a0
26909 Author: Keith Packard <keithp@keithp.com>
26910 Date:   Tue Jul 3 21:02:20 2012 -0700
26911
26912     altos: Move profiling settings to Makefile
26913     
26914     Instead of splitting the changes across Makefile and ao_pins.h, put
26915     them both in Makefile to simplify enabling profiling.
26916     
26917     Signed-off-by: Keith Packard <keithp@keithp.com>
26918
26919 commit 939ad8bfd640ed55116703a58f87af06e75ef87e
26920 Author: Keith Packard <keithp@keithp.com>
26921 Date:   Tue Jul 3 21:01:01 2012 -0700
26922
26923     altos: Crank up the gaussian noise in the FEC test
26924     
26925     This lets us check to make sure our receive performance isn't
26926     degrading at all, instead of just making sure we can receive
26927     perfect packets well.
26928     
26929     Signed-off-by: Keith Packard <keithp@keithp.com>
26930
26931 commit e8ab00cc45e48230e3b2018ce959114d3fedd228
26932 Author: Keith Packard <keithp@keithp.com>
26933 Date:   Tue Jul 3 20:59:35 2012 -0700
26934
26935     altos: Viterbi performance improvments. Down to 5.7ms for command decode
26936     
26937     Stealing more of Phil's good ideas, decoding a command mode packet has
26938     been reduced from 9ms to 5.7ms. Lots more comments to help future-me
26939     figure out how this code works.
26940     
26941     Signed-off-by: Keith Packard <keithp@keithp.com>
26942
26943 commit ea957f9e6144f8411ac84ee2905700f55f5a6e8a
26944 Author: Keith Packard <keithp@keithp.com>
26945 Date:   Tue Jul 3 00:29:43 2012 -0700
26946
26947     altosui: Fix flight data download for TM. Look for MM flights when graphing
26948     
26949     A couple of minor fixes, the first to not force the log format so that
26950     TM/Tm data will be downloaded correctly and the second to expand the
26951     set of files to include '.mega' files when plotting data.
26952     
26953     Signed-off-by: Keith Packard <keithp@keithp.com>
26954
26955 commit 933fc7e4c2f617e49e1cfdf45b83695290b51456
26956 Author: Keith Packard <keithp@keithp.com>
26957 Date:   Mon Jul 2 23:44:10 2012 -0700
26958
26959     altos: Do not block igniters on the radio mutex.
26960     
26961     Blocking igniters on the radio mutex fails when doing igniter testing
26962     over the RF link; the packet receiver task will never release the
26963     mutex and the CPU at the same time, causing the system to lock up.
26964     
26965     Signed-off-by: Keith Packard <keithp@keithp.com>
26966
26967 commit 50b343d389039eae082e82b8ac0b76ae3e2b3ad4
26968 Author: Bdale Garbee <bdale@gag.com>
26969 Date:   Sun Jul 1 23:24:20 2012 -0600
26970
26971     extend cross-compiler availability logic to all target CPUs, not just ARM
26972
26973 commit f0ec8416f2e308e40e1b9f34a7c2549989fee5fb
26974 Author: Bdale Garbee <bdale@gag.com>
26975 Date:   Sat Jun 30 13:00:33 2012 -0600
26976
26977     conditionalize build of ARM binaries on presence of arm-none-eabi-gcc in PATH
26978
26979 commit edbc5d27c8c2936b59ff5289276d9198b501ebc8
26980 Author: Keith Packard <keithp@keithp.com>
26981 Date:   Thu Jun 28 17:43:36 2012 -0700
26982
26983     altos: Declare cc1111 accel_ref as unsigned so the math works
26984     
26985     If accel_ref is signed, then the careful shifting and dividing dance
26986     necessary to correct for changes in the relationship between the 5V
26987     and 3.3V supplies always generates zero.
26988     
26989     Signed-off-by: Keith Packard <keithp@keithp.com>
26990
26991 commit ccf64117662fc800a07b3a25e52255b80f8b5eaf
26992 Author: Keith Packard <keithp@keithp.com>
26993 Date:   Thu Jun 28 16:42:59 2012 -0700
26994
26995     Update version to 1.0.9.6
26996     
26997     Signed-off-by: Keith Packard <keithp@keithp.com>
26998
26999 commit ca1bc20735a170a77066f5f37e0ad728899a3989
27000 Author: Keith Packard <keithp@keithp.com>
27001 Date:   Thu Jun 28 16:05:56 2012 -0700
27002
27003     altos: Disable MS5607 interrupt in the handler
27004     
27005     Avoids having the interrupt re-raised multiple times until the reading
27006     task finally wakes up.
27007     
27008     Signed-off-by: Keith Packard <keithp@keithp.com>
27009
27010 commit 572e1664938c7ce6c308b36779f6a412959e03f1
27011 Author: Keith Packard <keithp@keithp.com>
27012 Date:   Wed Jun 27 23:11:27 2012 -0700
27013
27014     altos: Track missed HMC5883 interrupts
27015     
27016     When it fails to signal conversion complete to the CPU, keep track of
27017     that and report it with the rest of the current data.
27018     
27019     Signed-off-by: Keith Packard <keithp@keithp.com>
27020
27021 commit 79dbe1a5e46d7f0b8929400897631ab969cd2bc0
27022 Author: Keith Packard <keithp@keithp.com>
27023 Date:   Wed Jun 27 23:09:16 2012 -0700
27024
27025     altos: Increase default STM stack to 648 bytes
27026     
27027     512 seems cozy given the printf implementation we're using and the
27028     extensive interrupts.
27029     
27030     Signed-off-by: Keith Packard <keithp@keithp.com>
27031
27032 commit aab7b31b71aa7c87c5a5003084e4b7773c30835f
27033 Author: Keith Packard <keithp@keithp.com>
27034 Date:   Wed Jun 27 23:05:36 2012 -0700
27035
27036     altos: panic if MPU6000 self test fails
27037     
27038     Don't try to fly if the board isn't working right.
27039     
27040     Signed-off-by: Keith Packard <keithp@keithp.com>
27041
27042 commit f9f65211c378849270a6138fda05ed2a166f7d82
27043 Author: Keith Packard <keithp@keithp.com>
27044 Date:   Wed Jun 27 23:04:25 2012 -0700
27045
27046     altos: Disable mag sensor for megametrum
27047     
27048     It doesn't work unless USB is connected or occasionally while the
27049     debug port is enabled. It's mystic.
27050     
27051     Signed-off-by: Keith Packard <keithp@keithp.com>
27052
27053 commit dd623b21cb904238c6d903b6936ff2f8ebf6f339
27054 Author: Keith Packard <keithp@keithp.com>
27055 Date:   Wed Jun 27 23:03:33 2012 -0700
27056
27057     altos: Allow megametrum to be built without using the mag sensor
27058     
27059     I'm having trouble getting it working reliably, so we'll like disable it
27060     for now. This patch makes that possible.
27061     
27062     Signed-off-by: Keith Packard <keithp@keithp.com>
27063
27064 commit bd21c050fd8b96b33ab6859c942bf55cf2b91868
27065 Author: Keith Packard <keithp@keithp.com>
27066 Date:   Wed Jun 27 19:47:52 2012 -0700
27067
27068     altos: Make profiling Viterbi decoder more useful
27069     
27070     This blocks starting the decoder until all of the data have arrived so
27071     that the time spent in the decoder is easily computed.
27072     
27073     Signed-off-by: Keith Packard <keithp@keithp.com>
27074
27075 commit 407cefae9cb95c5910b3bd79851776c48729e06b
27076 Author: Keith Packard <keithp@keithp.com>
27077 Date:   Wed Jun 27 19:45:22 2012 -0700
27078
27079     altos: Unroll viterbi state loop for >30% performance boost
27080     
27081     9.3ms vs 14.7ms, a clear win.
27082     
27083     Signed-off-by: Keith Packard <keithp@keithp.com>
27084
27085 commit 4f258fe565dc3e58b83761bfa1a2276946012163
27086 Author: Keith Packard <keithp@keithp.com>
27087 Date:   Wed Jun 27 17:18:57 2012 -0700
27088
27089     altos: Clean up STM I2C clock computations
27090     
27091     Fix both clock time and rise time.
27092     
27093     Signed-off-by: Keith Packard <keithp@keithp.com>
27094
27095 commit 84f9a525c64491afa9b7a565e3c10a4cee106e14
27096 Author: Keith Packard <keithp@keithp.com>
27097 Date:   Wed Jun 27 17:17:44 2012 -0700
27098
27099     altos: Clean up radio CRC handling
27100     
27101     Make the FEC code just set the CRC_OK bit like the cc1111 radio does;
27102     eliminates a bunch of weird conventions across the FEC API.
27103     
27104     Signed-off-by: Keith Packard <keithp@keithp.com>
27105
27106 commit b0b7f5da2d29716959c6793d744e47a3d435c247
27107 Author: Keith Packard <keithp@keithp.com>
27108 Date:   Wed Jun 27 14:38:35 2012 -0700
27109
27110     altos: get MPU6000 I2C link working reliably
27111     
27112     This slows the i2c bus to 100kHz (yuck), sets the rise time to spec
27113     (it was way off) and adds more delays during bus setup. I've run this
27114     for hours now without trouble. Will try to adjust things back to fast
27115     mode and see if I can make that work as 100kHz isn't fast enough to
27116     reliably get data at 100 samples/sec.
27117     
27118     Signed-off-by: Keith Packard <keithp@keithp.com>
27119
27120 commit e63d624f9670b5e2e002fcd5f24b80cf7f1effdf
27121 Author: Keith Packard <keithp@keithp.com>
27122 Date:   Wed Jun 27 14:35:56 2012 -0700
27123
27124     altos: reorder stm USB state stores to avoid races
27125     
27126     Must set ao_usb_in_pending before telling USB about new data or an
27127     interrupt could arrive at the wrong time to clear it.
27128     
27129     Same for ao_usb_in_flushed.
27130     
27131     Without these changes, I've seen the USB bus lock up on occasion,
27132     waiting for an IN packet to consume data, but with no IN data pending
27133     in the hardware.
27134     
27135     Signed-off-by: Keith Packard <keithp@keithp.com>
27136
27137 commit 08a4ed8fe794a2b2b52147bd5535fe0954822e95
27138 Author: Keith Packard <keithp@keithp.com>
27139 Date:   Wed Jun 27 14:34:53 2012 -0700
27140
27141     altos: include targe SPI speed in get request
27142     
27143     STM needs it to be provided when enabling the SPI device, so just fix
27144     AVR and cc1111 to do the same.
27145     
27146     Signed-off-by: Keith Packard <keithp@keithp.com>
27147
27148 commit 1a1d4a557a30e2e743936b828b654187ec562ca8
27149 Author: Keith Packard <keithp@keithp.com>
27150 Date:   Wed Jun 27 02:46:27 2012 -0700
27151
27152     altos: Wait for i2c START condition before setting interrupt bits
27153     
27154     This seems better than the random loop that it replaces, but I still
27155     have no idea why this is required; it doesn't coorespond to the docs
27156     at all...
27157     
27158     Signed-off-by: Keith Packard <keithp@keithp.com>
27159
27160 commit 9695a217e13f9d194b6dc40e2696017e5f8e8176
27161 Author: Keith Packard <keithp@keithp.com>
27162 Date:   Wed Jun 27 01:22:32 2012 -0700
27163
27164     altos: disable FEC debug on MM
27165     
27166     Seems to work; we'll leave the code around in case something bad
27167     happens later.
27168     
27169     Signed-off-by: Keith Packard <keithp@keithp.com>
27170
27171 commit b96eece8e42df0713fc92d47b6bb27604c0168a2
27172 Author: Keith Packard <keithp@keithp.com>
27173 Date:   Wed Jun 27 01:22:00 2012 -0700
27174
27175     altos: Clean up cc1120 driver a bit
27176     
27177     Make some variables static, remove stale debug code
27178     
27179     Signed-off-by: Keith Packard <keithp@keithp.com>
27180
27181 commit a00aff5ee93ea9763b5c0466fcecc823cad135ef
27182 Author: Keith Packard <keithp@keithp.com>
27183 Date:   Wed Jun 27 01:20:43 2012 -0700
27184
27185     altos: Don't try to grab radio while firing MM igniters
27186     
27187     If you're in idle mode, you stop forever as the packet mode receiver
27188     will own the radio mutex forever.
27189     
27190     Signed-off-by: Keith Packard <keithp@keithp.com>
27191
27192 commit 8fc643c9768f0db31a248331681af9490f5715af
27193 Author: Keith Packard <keithp@keithp.com>
27194 Date:   Wed Jun 27 01:19:05 2012 -0700
27195
27196     altos: stm i2c debug code was calling flush() even when disabled
27197     
27198     The fancy stm i2c debugging code had calls to flush() that were
27199     invoked outside of the conditionals leading to all kinds of fun --
27200     flush() may re-enable interrupts, yield or do all kinds of wacky
27201     stuff, none of which is appropriate from the middle of a device driver
27202     
27203     Signed-off-by: Keith Packard <keithp@keithp.com>
27204
27205 commit 0285696e5280fc64774b6c3a2fcdaa36bd36ae7c
27206 Author: Keith Packard <keithp@keithp.com>
27207 Date:   Wed Jun 27 01:17:51 2012 -0700
27208
27209     altos: mpu6000 requires a delay during start
27210     
27211     I have no idea why this is required, but the mpu6000 will not come up
27212     and run if this isn't present.
27213     
27214     Signed-off-by: Keith Packard <keithp@keithp.com>
27215
27216 commit 4847595e0383e5ff9c5a373f3c7f2af8c210c50a
27217 Author: Keith Packard <keithp@keithp.com>
27218 Date:   Tue Jun 26 23:25:00 2012 -0700
27219
27220     altos: ao_ignite.c is no longer cc1111 specific
27221     
27222     Move it to core
27223     
27224     Signed-off-by: Keith Packard <keithp@keithp.com>
27225
27226 commit 8efac8eb99a9aabb45d9fbf742e4be91e4b331a5
27227 Author: Keith Packard <keithp@keithp.com>
27228 Date:   Tue Jun 26 23:21:04 2012 -0700
27229
27230     altos: Add debugging code to check for stack overflow
27231     
27232     Stack overflow often happens from interrupt handlers sitting on top of
27233     a task stack. Check for this during ao_wakeup as that is often called
27234     during interrupt processing.
27235     
27236     Signed-off-by: Keith Packard <keithp@keithp.com>
27237
27238 commit ebeac02a990da3fa6dd71487141d0bc6f78b42de
27239 Author: Keith Packard <keithp@keithp.com>
27240 Date:   Tue Jun 26 23:20:17 2012 -0700
27241
27242     altos: Enable full flight computer functionality in MegaMetrum
27243     
27244     This turns on everything that currently works
27245     
27246     Signed-off-by: Keith Packard <keithp@keithp.com>
27247
27248 commit fb2b83fcd28199d8c686e676d46d6ecfbf706f37
27249 Author: Keith Packard <keithp@keithp.com>
27250 Date:   Tue Jun 26 23:18:44 2012 -0700
27251
27252     altos: Create a 32-bit 1MHz timer for use in profiling execution
27253     
27254     This provides a simple method for getting high-resolution timer data
27255     to use in performance tuning code. It's not used by default anywhere.
27256     
27257     Signed-off-by: Keith Packard <keithp@keithp.com>
27258
27259 commit 097b337eb9b7deff13d5dcdafddec9bec3868b93
27260 Author: Keith Packard <keithp@keithp.com>
27261 Date:   Tue Jun 26 23:17:00 2012 -0700
27262
27263     altos: Abort radio receive when using flash memory on megametrum
27264     
27265     Radio receive camps on the SPI bus, making it impossible to access
27266     flash memory. Abort any pending receive operation when trying to get
27267     to the flash part.
27268     
27269     Yes, this is a total hack.
27270     
27271     Signed-off-by: Keith Packard <keithp@keithp.com>
27272
27273 commit 1ae69a1c2ce7e45db9d9c175bc63867eff68ebe5
27274 Author: Keith Packard <keithp@keithp.com>
27275 Date:   Tue Jun 26 23:15:54 2012 -0700
27276
27277     altos: Make gcc happy with ao_telemetry_set_interval
27278     
27279     Using unsigned locals made GCC sad as it was compared with a signed value.
27280     
27281     Signed-off-by: Keith Packard <keithp@keithp.com>
27282
27283 commit c4036bf6e7997b618f89a05dd1214c16066ba2b2
27284 Author: Keith Packard <keithp@keithp.com>
27285 Date:   Tue Jun 26 23:14:13 2012 -0700
27286
27287     altos: Turn radio-related bits of ao_flight_mm.c
27288     
27289     Now that MM has full radio functionality, we can make it work right.
27290     
27291     Signed-off-by: Keith Packard <keithp@keithp.com>
27292
27293 commit b5f5fd92109ac6f4909a81303d52bc9220cc2520
27294 Author: Keith Packard <keithp@keithp.com>
27295 Date:   Tue Jun 26 23:13:14 2012 -0700
27296
27297     altos: custom hex printer for telemetry packets
27298     
27299     Using printf is way too slow with pdclib; just hand-write hex byte output.
27300     
27301     Signed-off-by: Keith Packard <keithp@keithp.com>
27302
27303 commit f1ae622eff60e05c1f5d8f822a3cf6a85750c6cc
27304 Author: Keith Packard <keithp@keithp.com>
27305 Date:   Tue Jun 26 23:11:10 2012 -0700
27306
27307     altos: Optimize FEC encode and decode
27308     
27309     Integrate interleaving, CRC and padding within the decode/encode
27310     functions.
27311     
27312     Provide for ISR priorities so that the 1120 RX interrupt takes
27313     precedence over the other interrupts or we risk losing bits.
27314     
27315     Optimize the viterbi decoder a bit (goes from 10ms per packet to 7ms
27316     per packet).
27317     
27318     Signed-off-by: Keith Packard <keithp@keithp.com>
27319
27320 commit 936ecad62596f34773afb7460b10f63df7d0896d
27321 Author: Keith Packard <keithp@keithp.com>
27322 Date:   Tue Jun 26 23:07:38 2012 -0700
27323
27324     altos: Add GPS logging code for MegaMetrum
27325     
27326     MM uses a different logging format with larger log blocks, so
27327     restructure the GPS logging code to fill them up
27328     
27329     Signed-off-by: Keith Packard <keithp@keithp.com>
27330
27331 commit 33f8f7add27a02d24b0671da353b59762224c1ee
27332 Author: Keith Packard <keithp@keithp.com>
27333 Date:   Tue Jun 26 23:05:42 2012 -0700
27334
27335     altos: Make cc1111 radio control functions static
27336     
27337     No need to publish these; they're all private to cc1111
27338     
27339     Signed-off-by: Keith Packard <keithp@keithp.com>
27340
27341 commit 03dc80d15a2f8fe9d7340351226dadd8bc3cfdb9
27342 Author: Keith Packard <keithp@keithp.com>
27343 Date:   Tue Jun 26 23:01:58 2012 -0700
27344
27345     altos: Clean up usage of port parameters
27346     
27347     Make stm port parameters always be pointers; this avoids the confusion
27348     where some macros took '&port' and others took a bare 'port', and also
27349     unifies code to run on other processors in a consistent fashion.
27350     
27351     Signed-off-by: Keith Packard <keithp@keithp.com>
27352
27353 commit f11f05c5d634de2a80c34d0d3dc93925980f52e6
27354 Author: Keith Packard <keithp@keithp.com>
27355 Date:   Tue Jun 26 22:20:50 2012 -0700
27356
27357     altosui: Make libaltos recognise new USB ids
27358     
27359     libaltos has a small range of 'AltusMetrum' products to avoid opening
27360     other devices. We've got more IDs, so open up the range.
27361     
27362     Signed-off-by: Keith Packard <keithp@keithp.com>
27363
27364 commit 9dcb4e2ab60ecf0cc7371c1b1a620be952fa8776
27365 Author: Keith Packard <keithp@keithp.com>
27366 Date:   Tue Jun 26 22:19:01 2012 -0700
27367
27368     altosui: AltosSerial and AltosLink both tried to provide frequency setting
27369     
27370     AltosLink owns all of the device configuration, so remove that from
27371     AltosSerial and make sure that AltosLink provides the right function
27372     signatures (wasn't using the new direct frequency setting command).
27373     
27374     Signed-off-by: Keith Packard <keithp@keithp.com>
27375
27376 commit eab18714ed9eabbcef0ff81b07427da042a58ccc
27377 Author: Keith Packard <keithp@keithp.com>
27378 Date:   Tue Jun 26 22:16:44 2012 -0700
27379
27380     altos: rename ao_viterbi.c to ao_fec_rx.c
27381     
27382     Keep it parallel with ao_fec_tx.c
27383     
27384     Signed-off-by: Keith Packard <keithp@keithp.com>
27385
27386 commit 09761fe0f6ed40ff74317fbb47d6a74068fb4ce4
27387 Author: Keith Packard <keithp@keithp.com>
27388 Date:   Mon Jun 25 06:51:36 2012 -0700
27389
27390     altos: Incremental viterbi decode
27391     
27392     Decode radio input one interleave block at a time. This overlaps the
27393     decode computation with the packet reception, leading to lower latency
27394     in an attempt to keep up with the transmitter.
27395     
27396     Signed-off-by: Keith Packard <keithp@keithp.com>
27397
27398 commit 628076aa90e7bc9a894646e417dd8e1fe149b60d
27399 Author: Keith Packard <keithp@keithp.com>
27400 Date:   Mon Jun 25 06:38:34 2012 -0700
27401
27402     altos: decode cc1120 received packets
27403     
27404     Call the fec decode function, compute RSSI and check CRC
27405     
27406     Signed-off-by: Keith Packard <keithp@keithp.com>
27407
27408 commit 70cf32e89df19bde5185339fc703532c8a5b8be6
27409 Author: Keith Packard <keithp@keithp.com>
27410 Date:   Mon Jun 25 05:03:34 2012 -0700
27411
27412     altos: Get cc1120 packet reception working
27413     
27414     Interrupt-per-bit, but it seems to work
27415     
27416     Signed-off-by: Keith Packard <keithp@keithp.com>
27417
27418 commit 246174b32bb6cf827d240c32d6a51c3513a08c37
27419 Author: Keith Packard <keithp@keithp.com>
27420 Date:   Mon Jun 25 05:03:16 2012 -0700
27421
27422     altos: Forgot ao_telemetry.h
27423     
27424     Not much builds without this...
27425     
27426     Signed-off-by: Keith Packard <keithp@keithp.com>
27427
27428 commit b292c14790fc225029cba3f80ce8ad6c5652bc4e
27429 Author: Keith Packard <keithp@keithp.com>
27430 Date:   Sat Jun 23 16:05:42 2012 -0700
27431
27432     altos: improve FEC apis to reduce data copying
27433     
27434     Integrate interleaving and whitening into encode and decode steps.
27435     Add CRC checking function for receive.
27436     
27437     Make ao_fec_test program round-trip the data and verify correctness.
27438     
27439     Signed-off-by: Keith Packard <keithp@keithp.com>
27440
27441 commit 74f6a1a8c8fa9d5bb8d74c99782310b431dd4727
27442 Author: Keith Packard <keithp@keithp.com>
27443 Date:   Sat Jun 23 02:24:30 2012 -0700
27444
27445     altos: Add ao_viterbi.c to megametrum build
27446     
27447     It's not used yet, just wanted to see how big the resulting object
27448     file was (492 bytes).
27449     
27450     Signed-off-by: Keith Packard <keithp@keithp.com>
27451
27452 commit 566a0c277de01963922cabc80db8ec3a129923bd
27453 Author: Keith Packard <keithp@keithp.com>
27454 Date:   Sat Jun 23 02:23:08 2012 -0700
27455
27456     altos: fix comment about decoding last byte of FEC data
27457     
27458     There aren't *any* forward bits to use when decoding the last byte.
27459     
27460     Signed-off-by: Keith Packard <keithp@keithp.com>
27461
27462 commit 83549f8bde42c3fddbdc817540c869dc8aefd013
27463 Author: Keith Packard <keithp@keithp.com>
27464 Date:   Sat Jun 23 02:13:52 2012 -0700
27465
27466     altos: Make ao_fec_tx_test build cleanly with -Wall
27467     
27468     Signed-off-by: Keith Packard <keithp@keithp.com>
27469
27470 commit f7bf07dfdad260c1f219064957ef08fb480bf20f
27471 Author: Keith Packard <keithp@keithp.com>
27472 Date:   Sat Jun 23 02:12:58 2012 -0700
27473
27474     altos: optimize Viterbi implementation
27475     
27476     Minimize data usage, make data arrays static
27477     
27478     Signed-off-by: Keith Packard <keithp@keithp.com>
27479
27480 commit ff8de3af193839de4bacfd07ade7a5f9ac0bf5b3
27481 Author: Keith Packard <keithp@keithp.com>
27482 Date:   Sat Jun 23 00:54:42 2012 -0700
27483
27484     altos: incremental viterbi decode
27485     
27486     Decode bits incrementally. Don't bother decoding the last byte; it's
27487     always a pad byte.
27488     
27489     Signed-off-by: Keith Packard <keithp@keithp.com>
27490
27491 commit 047e95421c87c5d056038797b48f759bedabf245
27492 Author: Keith Packard <keithp@keithp.com>
27493 Date:   Fri Jun 22 23:31:11 2012 -0700
27494
27495     altos: Start optimizing viterbi decoder
27496     
27497     Only need two cost arrays (previous and next). Create constant
27498     full-width decoder table instead of expanding bits into bytes for each
27499     decode step.
27500     
27501     Signed-off-by: Keith Packard <keithp@keithp.com>
27502
27503 commit cbf79a0f9cb859d04e8e03d627219cb2bf49611f
27504 Author: Keith Packard <keithp@keithp.com>
27505 Date:   Fri Jun 22 23:12:02 2012 -0700
27506
27507     altos: Add the simplest possible viterbi decoder
27508     
27509     I think I understand how it works now. It's not exactly speedy, and it
27510     uses a lot of memory.
27511     
27512     Signed-off-by: Keith Packard <keithp@keithp.com>
27513
27514 commit 75e4521ec42a368cebc67a07f8713d7a854ea265
27515 Author: Keith Packard <keithp@keithp.com>
27516 Date:   Thu Jun 21 09:52:37 2012 -0700
27517
27518     altos: Move FEC code to core
27519     
27520     It's not a driver as it's not specific to the 1120 chip
27521     
27522     Signed-off-by: Keith Packard <keithp@keithp.com>
27523
27524 commit 0b5548d6ced67201311e1072d37fbedd3d9929c9
27525 Author: Keith Packard <keithp@keithp.com>
27526 Date:   Thu Jun 21 09:51:17 2012 -0700
27527
27528     ao-tools: Support MM telemetry packets in ao-telem
27529     
27530     Parse the new packet formats
27531     
27532     Signed-off-by: Keith Packard <keithp@keithp.com>
27533
27534 commit 6f421818fd7062f03bfaf9e606d6a4cfdcb13b49
27535 Author: Keith Packard <keithp@keithp.com>
27536 Date:   Thu Jun 21 09:50:18 2012 -0700
27537
27538     altosui: Support MM telemetry packets
27539     
27540     Required restructuring the whole telemetry system to provide abstract
27541     interfaces to flight data.
27542     
27543     Signed-off-by: Keith Packard <keithp@keithp.com>
27544
27545 commit ff5b0ba90e73a83360a2e8a7e9969ed2c3ce1514
27546 Author: Keith Packard <keithp@keithp.com>
27547 Date:   Thu Jun 21 09:46:50 2012 -0700
27548
27549     altos: Crank down STM SPI speed for MM
27550     
27551     The cc1120 is noisy enough to break SPI data transfers at 4MHz, so
27552     crank things down to 1MHz. It's "stable" now, but clearly needs a
27553     filter and shorter traces.
27554     
27555     Signed-off-by: Keith Packard <keithp@keithp.com>
27556
27557 commit d2bd95edb6f77daeb1e8f043c4a239c248728e0c
27558 Author: Keith Packard <keithp@keithp.com>
27559 Date:   Thu Jun 21 09:45:42 2012 -0700
27560
27561     altos: Add full MM telemetry
27562     
27563     Create two new telemetry packets to hold all of the MM data.
27564     
27565     This patch also splits the telemetry structures out of ao.h
27566     
27567     Signed-off-by: Keith Packard <keithp@keithp.com>
27568
27569 commit 419a801131c1034f1fa149a67850290431cbda72
27570 Author: Keith Packard <keithp@keithp.com>
27571 Date:   Thu Jun 21 09:39:10 2012 -0700
27572
27573     altos: Configure STM LCD driver for giant LCD digits
27574     
27575     These devices require static mode.
27576     
27577     Signed-off-by: Keith Packard <keithp@keithp.com>
27578
27579 commit 611f37607fadcdc9908d67456f844a452ad4a87a
27580 Author: Keith Packard <keithp@keithp.com>
27581 Date:   Sun Jun 17 19:11:35 2012 -0700
27582
27583     altos: Make sure ao_storage_config is set before reading config block
27584     
27585     ao_storage_read does in fact call ao_storage_setup, but we need the
27586     value of ao_storage_config *before* calling ao_storage_read, so call
27587     ao_storage_setup first.
27588     
27589     Signed-off-by: Keith Packard <keithp@keithp.com>
27590
27591 commit ae3662c56effda9f0516c7d6ffd2d5f56b859593
27592 Author: Keith Packard <keithp@keithp.com>
27593 Date:   Sun Jun 17 19:06:08 2012 -0700
27594
27595     altos: hack STM serial number to 58
27596     
27597     otherwise altosui won't record telemetry
27598     
27599     Signed-off-by: Keith Packard <keithp@keithp.com>
27600
27601 commit 976a8375932ddb46ca3100863b0a892732c0923e
27602 Author: Keith Packard <keithp@keithp.com>
27603 Date:   Sun Jun 17 19:04:53 2012 -0700
27604
27605     altos: make cc1120 ao_radio_send re-entrant
27606     
27607     It gets called from multiple tasks, so put local data on the stack.
27608     
27609     Signed-off-by: Keith Packard <keithp@keithp.com>
27610
27611 commit 629f43e7c7abbff33e14b168a08a4b6a9c88b937
27612 Author: Keith Packard <keithp@keithp.com>
27613 Date:   Sun Jun 17 19:04:22 2012 -0700
27614
27615     altos: Add telemetry to megametrum
27616     
27617     Now that the radio works
27618     
27619     Signed-off-by: Keith Packard <keithp@keithp.com>
27620
27621 commit 9b24f413da0b6d989b32e8654a91c8deee4c81dd
27622 Author: Keith Packard <keithp@keithp.com>
27623 Date:   Sun Jun 17 19:02:50 2012 -0700
27624
27625     ao-tools: add rudimentary support for MM telemetry to ao-telem
27626     
27627     Just pretends they're TM packets for now
27628     
27629     Signed-off-by: Keith Packard <keithp@keithp.com>
27630
27631 commit 4cb46b8a84a0dd5b8fcb479d7aa5157480e1bc67
27632 Author: Keith Packard <keithp@keithp.com>
27633 Date:   Sun Jun 17 19:01:24 2012 -0700
27634
27635     altosui: Add rudimentary MM support to altosui
27636     
27637     Decoded the MM sensor packets as if they were TM packets.
27638     Add the USB ids.
27639     Add class of 'altimeter' devices and match those instead of just
27640     telemetrum as appropriate.
27641     
27642     Signed-off-by: Keith Packard <keithp@keithp.com>
27643
27644 commit 55747ce210d7d80d5b4fdaaf9dc7ee0f7bc8b0a3
27645 Author: Keith Packard <keithp@keithp.com>
27646 Date:   Sun Jun 17 18:58:56 2012 -0700
27647
27648     altosui: Move product definitions from AltosUI to AltosLib
27649     
27650     Signed-off-by: Keith Packard <keithp@keithp.com>
27651
27652 commit e6d236fdc615625fbbf28377453f920729e49b0f
27653 Author: Keith Packard <keithp@keithp.com>
27654 Date:   Sun Jun 17 16:17:00 2012 -0700
27655
27656     altos: Software implemenation of CC1111 radio encoding
27657     
27658     Add CRC, whitening, FEC and interleaving routines for transmission
27659     path to allow cc1120 to send telem packets to cc1111.
27660     
27661     Signed-off-by: Keith Packard <keithp@keithp.com>
27662
27663 commit 1a294852b3607947f0f86bf236785456d8719e5f
27664 Author: Keith Packard <keithp@keithp.com>
27665 Date:   Sun Jun 17 16:14:33 2012 -0700
27666
27667     altos: Be more careful about register save/restore in ao_yield
27668     
27669     Make sure the general registers are all saved before messing with any
27670     of them. Then, explicitly use r0 to save/restore apsr and primask.
27671     
27672     Signed-off-by: Keith Packard <keithp@keithp.com>
27673
27674 commit 9d3fe2a80d0925e3eded6d738d05c5b4ea61504c
27675 Author: Keith Packard <keithp@keithp.com>
27676 Date:   Sun Jun 17 16:12:18 2012 -0700
27677
27678     altos: Don't lose IRQ disabled state in ao_sleep
27679     
27680     Using ao_arch_critical around the wchan setting will force interrupts
27681     to be re-enabled before ao_yield records the state of that bit,
27682     potentially causing problems with functions not atomically testing and
27683     sleeping.
27684     
27685     Tasks that need to set wchan with interrupts disabled should have
27686     interrupts disabled when entering ao_sleep already.
27687     
27688     Signed-off-by: Keith Packard <keithp@keithp.com>
27689
27690 commit 4e6d96816e6604ee8d9bb49345a1c1211699a655
27691 Author: Keith Packard <keithp@keithp.com>
27692 Date:   Sun Jun 17 16:11:23 2012 -0700
27693
27694     altos: ao_storage_read already calls ao_storage_setup
27695     
27696     No need to call twice.
27697     
27698     Signed-off-by: Keith Packard <keithp@keithp.com>
27699
27700 commit ca310342d7b0bd1b78318cae38d920b8690dfd36
27701 Author: Keith Packard <keithp@keithp.com>
27702 Date:   Sun Jun 17 16:09:43 2012 -0700
27703
27704     altosui: Catch timeout errors when setting up TD telem monitoring
27705     
27706     Close the port in this case so it can be used for other things.
27707     
27708     Signed-off-by: Keith Packard <keithp@keithp.com>
27709
27710 commit 58e005375ca29dec6091d87159055004e7f19605
27711 Author: Keith Packard <keithp@keithp.com>
27712 Date:   Sun Jun 17 12:43:43 2012 -0700
27713
27714     altos: Use interrupts to wake up after RDF transmission.
27715     
27716     Also clean up the debug output
27717     
27718     Signed-off-by: Keith Packard <keithp@keithp.com>
27719
27720 commit 5df94f74522357e062f4ec2786ff825381b2fb10
27721 Author: Keith Packard <keithp@keithp.com>
27722 Date:   Sun Jun 17 12:42:32 2012 -0700
27723
27724     altos: Crank cc1120 power down to 0dBm to avoid crashing CPU
27725     
27726     Looks like RFI from the transmitter is confusing the CPU; lower the
27727     1120 power output from +14dBm to +0dBm to keep the CPU happy.
27728     
27729     Signed-off-by: Keith Packard <keithp@keithp.com>
27730
27731 commit e856df474c386b8df3d2bd9e87b766ae0439efbf
27732 Author: Keith Packard <keithp@keithp.com>
27733 Date:   Fri Jun 15 22:41:17 2012 -0700
27734
27735     altos: Reduce STM SPI data rate to 4MHz
27736     
27737     cc1120 doesn't want more than 6.1MHz, otherwise it gets very angry.
27738     
27739     Signed-off-by: Keith Packard <keithp@keithp.com>
27740
27741 commit e09e35471e788b88909ff01037fb8e0e4eabcd7d
27742 Author: Keith Packard <keithp@keithp.com>
27743 Date:   Fri Jun 15 22:40:30 2012 -0700
27744
27745     altos: Start making cc1120 radio work
27746     
27747     RDF tones and radio calibration work now.
27748     
27749     Signed-off-by: Keith Packard <keithp@keithp.com>
27750
27751 commit c2949ea15c59215834fedac7646f50c8a09f716f
27752 Author: Keith Packard <keithp@keithp.com>
27753 Date:   Fri Jun 15 22:38:37 2012 -0700
27754
27755     altos: Fix cc1120 packet mode datarate and config
27756     
27757     Was using the wrong function
27758     
27759     Signed-off-by: Keith Packard <keithp@keithp.com>
27760
27761 commit 1b7e4c29bf9608bfc972ae28b53cc823f4c37f92
27762 Author: Keith Packard <keithp@keithp.com>
27763 Date:   Fri Jun 15 22:32:10 2012 -0700
27764
27765     altos: Make sure cc1120 is initialized correctly at startup time
27766     
27767     Check to make sure it pulls down MISO when CS is enabled.
27768     
27769     Signed-off-by: Keith Packard <keithp@keithp.com>
27770
27771 commit 27c95adf35e646840b9bd562497eea0dc96bb9bb
27772 Author: Keith Packard <keithp@keithp.com>
27773 Date:   Fri Jun 15 22:31:36 2012 -0700
27774
27775     altos: use 'b' command for radio beep
27776     
27777     'B' is used by the baro data dumper.
27778     
27779     Signed-off-by: Keith Packard <keithp@keithp.com>
27780
27781 commit 93e6d0a2c0b60e7bedd34f06ba63b468dcc8e013
27782 Author: Keith Packard <keithp@keithp.com>
27783 Date:   Fri Jun 15 22:30:03 2012 -0700
27784
27785     altos: Fix RDF mode data rate and PKT_CFG0 value
27786     
27787     Changes tone to the desired 1kHz frequency and ensures the PKT_CFG0
27788     has the right value.
27789     
27790     Signed-off-by: Keith Packard <keithp@keithp.com>
27791
27792 commit c96e60bedeb00d28c36436c12b803fd8cbadce26
27793 Author: Keith Packard <keithp@keithp.com>
27794 Date:   Fri Jun 15 22:28:55 2012 -0700
27795
27796     altos: Actually write cc1120 register values
27797     
27798     Helps to not use 'read' mode when writing.
27799     
27800     Signed-off-by: Keith Packard <keithp@keithp.com>
27801
27802 commit 97d163c88ed8c8f64a9714018863d0b6eedab38f
27803 Author: Keith Packard <keithp@keithp.com>
27804 Date:   Fri Jun 15 22:27:48 2012 -0700
27805
27806     altos: Configure cc1120 frequency
27807     
27808     Set default conversion value, and pull the selected frequency
27809     calibration data out of the config block.
27810     
27811     Signed-off-by: Keith Packard <keithp@keithp.com>
27812
27813 commit a5a7df405c242593cbc828d5b66bbfc141a35947
27814 Author: Keith Packard <keithp@keithp.com>
27815 Date:   Fri Jun 15 22:26:06 2012 -0700
27816
27817     Temporarily disable packet and telem on MM
27818     
27819     While work on the radio code progresses
27820     
27821     Signed-off-by: Keith Packard <keithp@keithp.com>
27822
27823 commit baf1be1def01266512e67068948bf19b04ead6aa
27824 Author: Keith Packard <keithp@keithp.com>
27825 Date:   Fri Jun 15 22:23:10 2012 -0700
27826
27827     Allow product to override maximum number of command lists (NUM_CMDS)
27828     
27829     Just in case some product wants to save memory, or have more.
27830     
27831     Signed-off-by: Keith Packard <keithp@keithp.com>
27832
27833 commit bfbd1d82f4c25120a97840a1bd4787680823afd8
27834 Author: Keith Packard <keithp@keithp.com>
27835 Date:   Tue Jun 5 15:15:25 2012 -0700
27836
27837     altosdroid: Add files necessary to build application
27838     
27839     Signed-off-by: Keith Packard <keithp@keithp.com>
27840
27841 commit b8c363d9411fd5e79e3f806894dbc12bcc106b88
27842 Author: Keith Packard <keithp@keithp.com>
27843 Date:   Mon Jun 4 20:56:25 2012 -0700
27844
27845     altosui: More changes to migrate code to altoslib
27846     
27847     Signed-off-by: Keith Packard <keithp@keithp.com>
27848
27849 commit 5634192a6036c6c7b47d224e2988e81bb71a4557
27850 Author: Keith Packard <keithp@keithp.com>
27851 Date:   Mon Jun 4 20:55:33 2012 -0700
27852
27853     altosui: attempt to get ms5607 data into .mega files was misinformed
27854     
27855     The ms5607 'p' command also means 'go into packet mode', which nicely
27856     broke attempts to communicate with teledongle
27857     
27858     Signed-off-by: Keith Packard <keithp@keithp.com>
27859
27860 commit 705891be53e298ac6ced4ba02b87d2f6d1085b34
27861 Author: Keith Packard <keithp@keithp.com>
27862 Date:   Mon Jun 4 20:54:36 2012 -0700
27863
27864     altos: Make cc1111 products all depend on ao_arch.h and ao_arch_func.h
27865     
27866     Ensures that files get recompiled as needed
27867     
27868     Signed-off-by: Keith Packard <keithp@keithp.com>
27869
27870 commit a9ad342ae4c34626df4f2891da4c7f6d2c14d73e
27871 Author: Keith Packard <keithp@keithp.com>
27872 Date:   Mon Jun 4 20:53:53 2012 -0700
27873
27874     altos: Other half of the ms5607 prom reporting patch
27875     
27876     Signed-off-by: Keith Packard <keithp@keithp.com>
27877
27878 commit dec5cbee22f13c47690b0c6bf7ca724ef132fe5e
27879 Author: Keith Packard <keithp@keithp.com>
27880 Date:   Mon Jun 4 20:53:06 2012 -0700
27881
27882     altos: typo in ao_monitor prevented ground station from including code
27883     
27884     This created ground station software that couldn't actually receive
27885     and report telemetry packets.
27886     
27887     Signed-off-by: Keith Packard <keithp@keithp.com>
27888
27889 commit e687a9bafc696998b47fd0300fbc89dece09509c
27890 Author: Keith Packard <keithp@keithp.com>
27891 Date:   Mon Jun 4 20:52:38 2012 -0700
27892
27893     altos: Make 'v' command dump pressure sensor ROM values
27894     
27895     Avoids needing a new command
27896     
27897     Signed-off-by: Keith Packard <keithp@keithp.com>
27898
27899 commit 1832e2f76c844e97a2bd11226b003fb2af8057db
27900 Author: Keith Packard <keithp@keithp.com>
27901 Date:   Mon Jun 4 20:51:35 2012 -0700
27902
27903     altos: fix test builds of non-accel flight code
27904     
27905     Remove references to accel variables when building baro-only flight
27906     test code.
27907     
27908     Signed-off-by: Keith Packard <keithp@keithp.com>
27909
27910 commit 06afa2c3e78ea5bc9f1eb4913ee35c0eab0ac1bf
27911 Author: Keith Packard <keithp@keithp.com>
27912 Date:   Mon Jun 4 20:50:10 2012 -0700
27913
27914     altos: Legacy telemetry needs original ADC record
27915     
27916     The legacy telemetry packets included the raw ADC structure directly,
27917     so make sure that doesn't change further, allowing teledongle firmware
27918     to remain compatible with old TM firmware.
27919     
27920     Signed-off-by: Keith Packard <keithp@keithp.com>
27921
27922 commit f1b14932149153a096961fff94191778f88581d9
27923 Author: Keith Packard <keithp@keithp.com>
27924 Date:   Mon Jun 4 20:49:15 2012 -0700
27925
27926     altos: Remove unused AES code from teledongle and tidongle
27927     
27928     Leave this out as neither of these products need it.
27929     
27930     Signed-off-by: Keith Packard <keithp@keithp.com>
27931
27932 commit 718a8affe1df98eacfd707b5c8c34f9456dcff14
27933 Author: Keith Packard <keithp@keithp.com>
27934 Date:   Mon Jun 4 20:47:14 2012 -0700
27935
27936     altos: Remove accel_ref from pre v1.1 TM firmware
27937     
27938     V1.0 needs RAM space for flash buffer, leaving too little room for
27939     this extra data.
27940     
27941     Signed-off-by: Keith Packard <keithp@keithp.com>
27942
27943 commit 7a19d6790a9800f925c8de24aac71796351e2c04
27944 Author: Keith Packard <keithp@keithp.com>
27945 Date:   Mon Jun 4 19:28:58 2012 -0700
27946
27947     altos: More cleanups for moving files to altoslib
27948     
27949     Signed-off-by: Keith Packard <keithp@keithp.com>
27950
27951 commit f86dac643081987c8994ab57a96640d5e91b342a
27952 Author: Keith Packard <keithp@keithp.com>
27953 Date:   Sat Jun 2 19:59:40 2012 -0700
27954
27955     altoslib: Clean up random rebase failures
27956     
27957     Signed-off-by: Keith Packard <keithp@keithp.com>
27958
27959 commit dd43a2ae7594f062a8980d1756a07488ee54b447
27960 Author: Keith Packard <keithp@keithp.com>
27961 Date:   Sat Jun 2 19:42:47 2012 -0700
27962
27963     altoslib: Move new sensor library code into altoslib
27964     
27965     Signed-off-by: Keith Packard <keithp@keithp.com>
27966
27967 commit 0772020c969a69c3b0a705de7362340a9732daab
27968 Author: Keith Packard <keithp@keithp.com>
27969 Date:   Fri Mar 16 20:27:45 2012 -0700
27970
27971     Build altosdroid
27972
27973 commit e81163ed875dc93a618baf9278f43ed7dd0f730e
27974 Author: Mike Beattie <mike@ethernal.org>
27975 Date:   Thu Feb 23 16:43:04 2012 +1300
27976
27977     Add local.properties to .gitignore
27978     
27979     Signed-off-by: Mike Beattie <mike@ethernal.org>
27980
27981 commit 392c878000e9909d37dae6342df3d6cb8f217a1b
27982 Author: Mike Beattie <mike@ethernal.org>
27983 Date:   Thu Feb 23 16:41:26 2012 +1300
27984
27985     Add TelemetryService.java and associated files
27986     
27987     Signed-off-by: Mike Beattie <mike@ethernal.org>
27988
27989 commit 69e6df07976a56b49e07c242cd6e5b2cbd2a578d
27990 Author: Keith Packard <keithp@keithp.com>
27991 Date:   Thu Feb 23 17:00:48 2012 +1300
27992
27993     Move altoslib sources to top dir
27994     
27995     No sense having them live deep in the file system.
27996     
27997     Signed-off-by: Keith Packard <keithp@keithp.com>
27998
27999 commit 9b659904109f992b8a3e61efb94e81cdb19af1c9
28000 Author: Keith Packard <keithp@keithp.com>
28001 Date:   Thu Feb 23 16:37:24 2012 +1300
28002
28003     Demonstrate using AltosLib from altosdroid
28004     
28005     Get things hooked up so that we can use AltosLib functions from the
28006     android application; it's a bit of a hack at present, but appears to
28007     work. Some more 'official' technique would be nice...
28008     
28009     Signed-off-by: Keith Packard <keithp@keithp.com>
28010
28011 commit a018724e40f2a4c0bae8b3d5c77bb90328ad4314
28012 Author: Keith Packard <keithp@keithp.com>
28013 Date:   Thu Feb 23 11:15:23 2012 +1300
28014
28015     Ignore generated altoslib files
28016     
28017     Signed-off-by: Keith Packard <keithp@keithp.com>
28018
28019 commit 025eb09b5de9b50de143da9f36bc02818e018ba9
28020 Author: Keith Packard <keithp@keithp.com>
28021 Date:   Wed Feb 22 23:39:01 2012 +1300
28022
28023     Build Android local.properties from local.properties.in
28024     
28025     Make sure the SDK path is set correctly
28026     
28027     Signed-off-by: Keith Packard <keithp@keithp.com>
28028
28029 commit 3a80545d4ecedc4b98a9ee8296ab6abbbf64312d
28030 Author: Mike Beattie <mike@ethernal.org>
28031 Date:   Wed Feb 22 23:40:25 2012 +1300
28032
28033     Add $HOME/android as an SDK location
28034     
28035     Signed-off-by: Mike Beattie <mike@ethernal.org>
28036
28037 commit 091affece185dcd0832a55b0befeacaa182a57bb
28038 Author: Keith Packard <keithp@keithp.com>
28039 Date:   Fri Jan 13 10:40:30 2012 -0800
28040
28041     doc: Add companion SPI message protocol doc
28042     
28043     Signed-off-by: Keith Packard <keithp@keithp.com>
28044
28045 commit bb5b5312a0c6102b12f3d4710ef213f0f6c67412
28046 Author: Keith Packard <keithp@keithp.com>
28047 Date:   Sat Jan 7 20:56:49 2012 -0800
28048
28049     altosui: Clean up a few 'fat' build rules
28050     
28051     Signed-off-by: Keith Packard <keithp@keithp.com>
28052
28053 commit fc86ae58c3a296730fa99010cc27b8b3c2c3b780
28054 Author: Keith Packard <keithp@keithp.com>
28055 Date:   Thu Jan 5 16:30:41 2012 -0800
28056
28057     Add altosdroid/Makefile.am
28058
28059 commit dfa059b22bf15de3f25328aeef4fdb8e5ca664dc
28060 Author: Mike Beattie <mike@ethernal.org>
28061 Date:   Wed Jan 4 21:01:44 2012 -0800
28062
28063     Add AltusMetrum Logo as app icon, and change app name
28064     
28065     Signed-off-by: Mike Beattie <mike@ethernal.org>
28066     Signed-off-by: Keith Packard <keithp@keithp.com>
28067
28068 commit 402f1e76909229fc0c3b54743ba577b657495faf
28069 Author: Keith Packard <keithp@keithp.com>
28070 Date:   Wed Jan 4 20:54:40 2012 -0800
28071
28072     altosdroid: build android bits when possible
28073     
28074     Locate android sdk automatically
28075     
28076     Signed-off-by: Keith Packard <keithp@keithp.com>
28077
28078 commit a48e4d40729e736929632ec422fd189ecdfba33b
28079 Author: Keith Packard <keithp@keithp.com>
28080 Date:   Wed Jan 4 20:33:06 2012 -0800
28081
28082     altosdroid: import code from mjb
28083     
28084     Signed-off-by: Keith Packard <keithp@keithp.com>
28085
28086 commit 81465a20049da40cd8d3cda920d6585ffe87bfe3
28087 Author: Keith Packard <keithp@keithp.com>
28088 Date:   Wed Jan 4 20:28:42 2012 -0800
28089
28090     altosui: Move java altoslib to top level
28091     
28092     This will be shared with other (android) java code.
28093     
28094     Signed-off-by: Keith Packard <keithp@keithp.com>
28095
28096 commit d6df16525927d8096d1c0cccf4c86bf4c6599d53
28097 Author: Keith Packard <keithp@keithp.com>
28098 Date:   Mon Jan 2 22:43:48 2012 -0800
28099
28100     Add altoslib/.gitignore
28101
28102 commit 02b53b7f592b78b2fec4f4a17b6b3e114d2bf3c5
28103 Author: Keith Packard <keithp@keithp.com>
28104 Date:   Mon Jan 2 22:42:18 2012 -0800
28105
28106     altosui: Fix AltosTelemetryReader move
28107     
28108     Lost the provided link value causing a crash.
28109     
28110     Signed-off-by: Keith Packard <keithp@keithp.com>
28111
28112 commit 9fb15d397890c7e78bf3c1438f142f62bfc2bd35
28113 Author: Keith Packard <keithp@keithp.com>
28114 Date:   Mon Jan 2 22:41:48 2012 -0800
28115
28116     altosui: Remove unused files
28117     
28118     Left around from development, these aren't useful.
28119     
28120     Signed-off-by: Keith Packard <keithp@keithp.com>
28121
28122 commit 5270a0f1416baef5fde08547c6c98d97f973ae95
28123 Author: Keith Packard <keithp@keithp.com>
28124 Date:   Mon Jan 2 22:35:41 2012 -0800
28125
28126     altosui: Move telemetry reader &c to altoslib
28127     
28128     Move all of the device and file reading code into altoslib
28129     
28130     Signed-off-by: Keith Packard <keithp@keithp.com>
28131
28132 commit 93305717ac4c993c88d9144d797ca64d26db97c5
28133 Author: Keith Packard <keithp@keithp.com>
28134 Date:   Mon Jan 2 22:13:38 2012 -0800
28135
28136     altosui: Move AltosState.java to altoslib
28137     
28138     Signed-off-by: Keith Packard <keithp@keithp.com>
28139
28140 commit a5ac5c37ea385e3a2b2703c6f125b4e3b55e867a
28141 Author: Keith Packard <keithp@keithp.com>
28142 Date:   Mon Jan 2 22:05:47 2012 -0800
28143
28144     altosui: Pull most of AltosSerial into AltosLink
28145     
28146     Share basic command processing across java users
28147     
28148     Signed-off-by: Keith Packard <keithp@keithp.com>
28149
28150 commit 18914b9a84bbd8c4364a1568bb07dcc2b04ad7ba
28151 Author: Keith Packard <keithp@keithp.com>
28152 Date:   Mon Jan 2 21:12:45 2012 -0800
28153
28154     altosui: Move AltosGreatCircle.java to altoslib
28155     
28156     Signed-off-by: Keith Packard <keithp@keithp.com>
28157
28158 commit 027863b737190bccc3b5cd032d77587396d0c5c4
28159 Author: Keith Packard <keithp@keithp.com>
28160 Date:   Mon Jan 2 21:08:34 2012 -0800
28161
28162     altosui: Move AltosEepromTeleScience.java to altoslib
28163     
28164     Signed-off-by: Keith Packard <keithp@keithp.com>
28165
28166 commit 346df410f570a67cda057550a067fa2b451b785d
28167 Author: Keith Packard <keithp@keithp.com>
28168 Date:   Mon Jan 2 21:05:02 2012 -0800
28169
28170     altosui: Move more eeprom stuff to altoslib
28171     
28172     Signed-off-by: Keith Packard <keithp@keithp.com>
28173
28174 commit a4ccdd253a9873c16f194a63a79f0c26feaafa29
28175 Author: Keith Packard <keithp@keithp.com>
28176 Date:   Mon Jan 2 20:57:57 2012 -0800
28177
28178     altosui: Move eeprom managment code to library
28179     
28180     Signed-off-by: Keith Packard <keithp@keithp.com>
28181
28182 commit 89aa06cfdcb02de1894ccb01aed97782f9eec9b2
28183 Author: Keith Packard <keithp@keithp.com>
28184 Date:   Mon Jan 2 20:47:16 2012 -0800
28185
28186     altosui: Move AltosEepromChunk.java to lib
28187     
28188     Also fixes install issues with split lib
28189     
28190     Signed-off-by: Keith Packard <keithp@keithp.com>
28191
28192 commit b273b8b298540b1a6d0a87b1cf61df1fbf62e013
28193 Author: Keith Packard <keithp@keithp.com>
28194 Date:   Mon Jan 2 20:39:16 2012 -0800
28195
28196     altosui: Finish moving AltosConfigData to altoslib
28197     
28198     Signed-off-by: Keith Packard <keithp@keithp.com>
28199
28200 commit 4c88b0ca96758b663c82395e63b338043d1c1a10
28201 Author: Keith Packard <keithp@keithp.com>
28202 Date:   Mon Jan 2 20:34:38 2012 -0800
28203
28204     altosui: Move AltosConfigData.java to library
28205     
28206     Create a new 'AltosLink' which exposes how to talk to the remote
28207     device abstractly via 'get_reply' and 'printf' methods.
28208     
28209     Signed-off-by: Keith Packard <keithp@keithp.com>
28210
28211 commit ead8f1cfca2c454d18dce56479899f2b423d8bdd
28212 Author: Keith Packard <keithp@keithp.com>
28213 Date:   Mon Jan 2 20:32:35 2012 -0800
28214
28215     altosui: Add back in the split-out Altos constants as AltosLib
28216     
28217     These were pulled out of Altos.java, but not added back to git
28218     
28219     Signed-off-by: Keith Packard <keithp@keithp.com>
28220
28221 commit 3c2f601139d36761de6a8a2210545d082ef16133
28222 Author: Keith Packard <keithp@keithp.com>
28223 Date:   Mon Jan 2 17:26:59 2012 -0800
28224
28225     altosui: Complete split out of separate java library
28226     
28227     Signed-off-by: Keith Packard <keithp@keithp.com>
28228
28229 commit 40ee170753f4fd422c848e34a8da104683b7c8a2
28230 Author: Keith Packard <keithp@keithp.com>
28231 Date:   Mon Jan 2 16:16:51 2012 -0800
28232
28233     altosui: Clean swing/awt bits out of altoslib
28234     
28235     Signed-off-by: Keith Packard <keithp@keithp.com>
28236
28237 commit 71636c1ed7cbe075921391605d1ac4edaa6ee52b
28238 Author: Keith Packard <keithp@keithp.com>
28239 Date:   Mon Jan 2 16:13:46 2012 -0800
28240
28241     move a file back
28242
28243 commit 6510e8495fc5e8057b6092963def4d78978625a0
28244 Author: Keith Packard <keithp@keithp.com>
28245 Date:   Mon Jan 2 16:09:29 2012 -0800
28246
28247     altosui: Split out lots of the altosui code to a shared library
28248     
28249     To be shared with the Android application eventually
28250     
28251     Signed-off-by: Keith Packard <keithp@keithp.com>
28252
28253 commit 97663f922e236f4ee7bd08277ca80d419b5cd10f
28254 Author: Keith Packard <keithp@keithp.com>
28255 Date:   Mon Jan 2 15:45:14 2012 -0800
28256
28257     altosui: Split out UI-specific preferences
28258     
28259     Prepare to create library shared with android application.
28260     
28261     Signed-off-by: Keith Packard <keithp@keithp.com>
28262
28263 commit c9e52287751867d9e451146ccde78109609d30d7
28264 Author: Keith Packard <keithp@keithp.com>
28265 Date:   Sat Jun 2 19:06:08 2012 -0700
28266
28267     altosui: Fixed width format for new IMU values.
28268     
28269     Signed-off-by: Keith Packard <keithp@keithp.com>
28270
28271 commit 9aa7993ee31bdfd6890ad7262a0375c07464ee76
28272 Author: Keith Packard <keithp@keithp.com>
28273 Date:   Sat Jun 2 17:09:00 2012 -0700
28274
28275     altos: Intgrate hmc5883 sensor into adc ring
28276     
28277     Creates a task to poll the mag sensor and place the data into the
28278     sensor data ring.
28279     
28280     Signed-off-by: Keith Packard <keithp@keithp.com>
28281
28282 commit 69a8907ecbb7ca0e8526aeea0dc7490a191a0f8b
28283 Author: Keith Packard <keithp@keithp.com>
28284 Date:   Sat Jun 2 16:57:22 2012 -0700
28285
28286     altos: Get HMC5883 driver limping along
28287     
28288     Not pushing data into the ring yet, but the chip appears to work now.
28289     
28290     Signed-off-by: Keith Packard <keithp@keithp.com>
28291
28292 commit 97317d332f21c42860747c4ecde633bd0228ef52
28293 Author: Keith Packard <keithp@keithp.com>
28294 Date:   Sat Jun 2 16:56:41 2012 -0700
28295
28296     altos: Reset i2c controller at boot time
28297     
28298     In case it's wedged.
28299     
28300     Signed-off-by: Keith Packard <keithp@keithp.com>
28301
28302 commit 64e2e66a5239541b15f43172655cfb3560bec79b
28303 Author: Keith Packard <keithp@keithp.com>
28304 Date:   Sat Jun 2 16:54:42 2012 -0700
28305
28306     altos: Fix broken EXTI edge mode selections. Clear pending exti on enable
28307     
28308     Make sure the edge mode registers are set according to the requested
28309     mode.
28310     
28311     Clear any pending interrupt when enabling to avoid spurious isr call
28312     
28313     Signed-off-by: Keith Packard <keithp@keithp.com>
28314
28315 commit 8d425ffba84ec6f632e8c0d44105de73242a86a9
28316 Author: Keith Packard <keithp@keithp.com>
28317 Date:   Sat Jun 2 16:53:46 2012 -0700
28318
28319     altos: Route correct GPIO line to interrupt controller
28320     
28321     Which GPIO a particular pin interrupt comes from is selected by the
28322     SYSCFG EXTICR registers; set these when an exti interrupt is configured.
28323     
28324     Signed-off-by: Keith Packard <keithp@keithp.com>
28325
28326 commit 1353b277f8314fbddef81c743bd6ea229364fd18
28327 Author: Keith Packard <keithp@keithp.com>
28328 Date:   Sat Jun 2 14:58:00 2012 -0700
28329
28330     altos: Enable some debugging during flight mode on MM
28331     
28332     Until we've got the radio working, there's no way to see inside the MM
28333     state without using USB. Add a diagnostic command to dump out the
28334     internal flight state variables.
28335     
28336     Signed-off-by: Keith Packard <keithp@keithp.com>
28337
28338 commit c04af7533bd3fd3f3260338c0753fde966131720
28339 Author: Keith Packard <keithp@keithp.com>
28340 Date:   Fri Jun 1 23:07:38 2012 -0700
28341
28342     altos: Add support for MegaAccel daughter card.
28343     
28344     Switches all acceleration computation to using the MegaAccel
28345     accelerometer to ensure support for high-g flights.
28346     
28347     MPU6000 values continue to be logged as normal
28348     
28349     Signed-off-by: Keith Packard <keithp@keithp.com>
28350
28351 commit 1824761f5b98e92485e2dd347b1c4d043ec207e2
28352 Author: Keith Packard <keithp@keithp.com>
28353 Date:   Fri Jun 1 19:51:25 2012 -0700
28354
28355     altosui: Quick hacks to download megametrum data and convert to CSV
28356     
28357     Very little useful data crunching is done, but at least we can save
28358     and convert files
28359     
28360     Signed-off-by: Keith Packard <keithp@keithp.com>
28361
28362 commit ab85337aa942cb73a08bd3b783771179773b9a67
28363 Author: Keith Packard <keithp@keithp.com>
28364 Date:   Fri Jun 1 19:35:33 2012 -0700
28365
28366     altos: Timers clock base depends on perhipheral bus prescalers too
28367     
28368     For some weird reason, a non-unity perhipheral bus clock scaler
28369     affects the base of the various timers; this left the 100Hz tick
28370     running at 200Hz.
28371     
28372     Signed-off-by: Keith Packard <keithp@keithp.com>
28373
28374 commit ff4f3a56e09d595abbe32293cbdf1fe368633c49
28375 Author: Keith Packard <keithp@keithp.com>
28376 Date:   Fri Jun 1 19:35:01 2012 -0700
28377
28378     altos: megametrum has logging
28379     
28380     This makes sure the various other subsystems know about it, like the
28381     'v' command.
28382     
28383     Signed-off-by: Keith Packard <keithp@keithp.com>
28384
28385 commit 6806103bad98385c0ec122d400f981eb81c59dd3
28386 Author: Keith Packard <keithp@keithp.com>
28387 Date:   Fri Jun 1 19:34:17 2012 -0700
28388
28389     altos: add high-z accel and mag sensor to megametrum logging
28390     
28391     These nicely fill the 32-byte sensor log record
28392     
28393     Signed-off-by: Keith Packard <keithp@keithp.com>
28394
28395 commit e5aebfe0203de9e69712fac291c8cd0d3a96a385
28396 Author: Keith Packard <keithp@keithp.com>
28397 Date:   Fri Jun 1 19:33:18 2012 -0700
28398
28399     altos: Mark full and mega logging correctly in 'v' command
28400     
28401     Make sure megametrum reports 'log format 5'.
28402     
28403     Signed-off-by: Keith Packard <keithp@keithp.com>
28404
28405 commit 7fce3ddf5e7e92a14cefb7fcf35e4014df744987
28406 Author: Keith Packard <keithp@keithp.com>
28407 Date:   Mon May 28 11:48:04 2012 -0600
28408
28409     Bump to 1.0.9.5
28410     
28411     Signed-off-by: Keith Packard <keithp@keithp.com>
28412
28413 commit 47bc9b2a39b7a8d3ef3fe8acc7fbf0512695e548
28414 Author: Keith Packard <keithp@keithp.com>
28415 Date:   Mon May 28 11:47:28 2012 -0600
28416
28417     altos: Clear stm i2c transfer timeout alarm
28418     
28419     Signed-off-by: Keith Packard <keithp@keithp.com>
28420
28421 commit 8164cd95db62e4564b3a9ba5c06a74c870c03841
28422 Author: Keith Packard <keithp@keithp.com>
28423 Date:   Mon May 28 11:46:51 2012 -0600
28424
28425     altos: Remove debug printf from accel auto-cal
28426     
28427     Otherwise, this goes way too slow
28428     
28429     Signed-off-by: Keith Packard <keithp@keithp.com>
28430
28431 commit ee61fb8ccb47f94b7c39e803f5a0248840d1eea6
28432 Author: Keith Packard <keithp@keithp.com>
28433 Date:   Mon May 28 11:45:53 2012 -0600
28434
28435     altos: Clean up ADC selection for cc1111
28436     
28437     Depend directly on product defines instead of trying to guess
28438     
28439     Signed-off-by: Keith Packard <keithp@keithp.com>
28440
28441 commit 2df9113a22f4f67707d9ee777bd6b23ff671b105
28442 Author: Keith Packard <keithp@keithp.com>
28443 Date:   Mon May 28 11:45:30 2012 -0600
28444
28445     altos: All cc1111 products have a radio
28446     
28447     Signed-off-by: Keith Packard <keithp@keithp.com>
28448
28449 commit a53b8b84283eb62157b0f8ecd8061f61a4b6bd6f
28450 Author: Keith Packard <keithp@keithp.com>
28451 Date:   Mon May 28 11:44:45 2012 -0600
28452
28453     altos: Shrink telemetry generation code
28454     
28455     otherwise TM doesn't build anymore
28456     
28457     Signed-off-by: Keith Packard <keithp@keithp.com>
28458
28459 commit 43e558738c76afd72fc01660884be3158f44470d
28460 Author: Keith Packard <keithp@keithp.com>
28461 Date:   Mon May 28 11:44:07 2012 -0600
28462
28463     altos: Try to get hmc5883 working
28464     
28465     No joy yet
28466     
28467     Signed-off-by: Keith Packard <keithp@keithp.com>
28468
28469 commit 9f5e4cf7d8204016e023cf439d93de1203dc406e
28470 Author: Keith Packard <keithp@keithp.com>
28471 Date:   Sun May 27 18:23:39 2012 -0600
28472
28473     altos: Make teleterra v0.2 compile with new ao_data struct
28474     
28475     Signed-off-by: Keith Packard <keithp@keithp.com>
28476
28477 commit 5dd5e0284c8b26b0d4ce69c64bb7864e0ae83db7
28478 Author: Keith Packard <keithp@keithp.com>
28479 Date:   Sun May 27 17:45:09 2012 -0600
28480
28481     altos: Make telepyro-v0.1 build with new ao_data struct
28482     
28483     Signed-off-by: Keith Packard <keithp@keithp.com>
28484
28485 commit 29edf6d901432a1afc65900ff599c963edac5a2b
28486 Author: Keith Packard <keithp@keithp.com>
28487 Date:   Sun May 27 17:44:01 2012 -0600
28488
28489     altos: Make telescience-v0.1 build with new ao_data struct
28490     
28491     Signed-off-by: Keith Packard <keithp@keithp.com>
28492
28493 commit 5fd869b244f8f2b76258dc31a5507a73fd47cf1d
28494 Author: Keith Packard <keithp@keithp.com>
28495 Date:   Sun May 27 17:31:12 2012 -0600
28496
28497     altos: Make telenano build with new ao_data structure
28498     
28499     Signed-off-by: Keith Packard <keithp@keithp.com>
28500
28501 commit 627b904b36e129ff2ead436a626699abfc3b3211
28502 Author: Keith Packard <keithp@keithp.com>
28503 Date:   Sun May 27 17:29:27 2012 -0600
28504
28505     altos: Make stm-demo compile with new ao_data structure
28506     
28507     Signed-off-by: Keith Packard <keithp@keithp.com>
28508
28509 commit 090dc9aecdf4cfd1ac727325ae141d441c5b28aa
28510 Author: Keith Packard <keithp@keithp.com>
28511 Date:   Sun May 27 17:26:43 2012 -0600
28512
28513     altos: Make telemini-v1.0 compile with new ao_data structure
28514     
28515     Signed-off-by: Keith Packard <keithp@keithp.com>
28516
28517 commit 98e992b65d366d9f79d7d2dd2dd4d1886dd1d9c4
28518 Author: Keith Packard <keithp@keithp.com>
28519 Date:   Sun May 27 17:25:17 2012 -0600
28520
28521     altos: Make telemetrum-v1.0 build with new ao_data structure
28522     
28523     Signed-off-by: Keith Packard <keithp@keithp.com>
28524
28525 commit ce8153472069ed56b24ac36f297ac569d1f767d4
28526 Author: Keith Packard <keithp@keithp.com>
28527 Date:   Sun May 27 17:24:09 2012 -0600
28528
28529     altos: Make telemetrum-v1.1 compile with new ao_data structure
28530     
28531     Signed-off-by: Keith Packard <keithp@keithp.com>
28532
28533 commit ed635545e0b965901032ed2c3474ffe997c73de3
28534 Author: Keith Packard <keithp@keithp.com>
28535 Date:   Sun May 27 16:52:45 2012 -0600
28536
28537     ignore pa to altitude conversion file
28538     
28539     Signed-off-by: Keith Packard <keithp@keithp.com>
28540
28541 commit dd73c9b441f7672fb9982c4caeb5178df30f5d2b
28542 Author: Keith Packard <keithp@keithp.com>
28543 Date:   Sun May 27 16:47:30 2012 -0600
28544
28545     altos: Split out mm-specific versions of sampling code
28546     
28547     Avoid breaking telemetrum (too much) by splitting this stuff apart.
28548     
28549     Signed-off-by: Keith Packard <keithp@keithp.com>
28550
28551 commit 9eeba439ce8c9dc1def8528f96b6a67c6578d656
28552 Author: Keith Packard <keithp@keithp.com>
28553 Date:   Sun May 27 16:46:00 2012 -0600
28554
28555     altos: Don't start ADC ring until the other sensors have a valid value
28556     
28557     Yes, this is still an ugly kludge, but it's easy.
28558     
28559     Signed-off-by: Keith Packard <keithp@keithp.com>
28560
28561 commit d01c10eff4b70af13347969a7cece8730cf1a3f1
28562 Author: Keith Packard <keithp@keithp.com>
28563 Date:   Sun May 27 16:44:38 2012 -0600
28564
28565     altos: Data packet tick count does not live in adc structure
28566     
28567     It was moved to the global structure. Having two is confusing.
28568     
28569     Signed-off-by: Keith Packard <keithp@keithp.com>
28570
28571 commit 78423f3fc5164ea9fd428606419784c1700ad5c5
28572 Author: Keith Packard <keithp@keithp.com>
28573 Date:   Fri May 25 23:18:06 2012 -0600
28574
28575     Get megametrum ready to at least log flight data
28576     
28577     Doesn't track flight state changes correctly.
28578     
28579     Signed-off-by: Keith Packard <keithp@keithp.com>
28580
28581 commit 0239e4dfe587528524b6380bbf6d9583047e52d6
28582 Author: Keith Packard <keithp@keithp.com>
28583 Date:   Fri May 18 21:23:47 2012 -0700
28584
28585     altos: Poll mpu6000 values every tick and stash them locally.
28586     
28587     Signed-off-by: Keith Packard <keithp@keithp.com>
28588
28589 commit 34bb17bc1a3d8a1c95b5e57f059e7a1747e17a03
28590 Author: Keith Packard <keithp@keithp.com>
28591 Date:   Fri May 18 20:16:35 2012 -0700
28592
28593     altos: Finish ms5607 support
28594     
28595     This has the MS5607 polling once each tick for pressure and
28596     temperature and then saving that in a global variable. The command UI
28597     provides for dumping the prom data so that an eeprom file can have
28598     raw sensor data along with the conversion factors necessary to compute
28599     useful values.
28600     
28601     Signed-off-by: Keith Packard <keithp@keithp.com>
28602
28603 commit 5d8b9d524d6424ff98dcc4155fe8b8bd892b6d8f
28604 Author: Keith Packard <keithp@keithp.com>
28605 Date:   Fri May 18 20:04:57 2012 -0700
28606
28607     altos: Add conversion between Pa and meters
28608     
28609     To be used with the MS5607 which generates data in calibrated units.
28610     
28611     Signed-off-by: Keith Packard <keithp@keithp.com>
28612
28613 commit 1541fc0bde71f503b1ae5757497e9e1e6d023111
28614 Author: Keith Packard <keithp@keithp.com>
28615 Date:   Mon May 7 23:14:57 2012 -0700
28616
28617     altos: Check MS5607 CRC. Clean up MS5607 API
28618     
28619     It's not ready for flight yet, but at least it's sensible now.
28620     
28621     Signed-off-by: Keith Packard <keithp@keithp.com>
28622
28623 commit 6a62edd4a1f01a6ee380c3aabaff3f437e8d6f1e
28624 Author: Keith Packard <keithp@keithp.com>
28625 Date:   Mon May 7 23:14:14 2012 -0700
28626
28627     altos: Conditional byte swapping in mpu6000 driver
28628     
28629     Only needed on LSB machines.
28630     
28631     Signed-off-by: Keith Packard <keithp@keithp.com>
28632
28633 commit 6a973f788563ccc66b01cc7557a004dabef18d09
28634 Merge: d387f24 da2c920
28635 Author: Bdale Garbee <bdale@gag.com>
28636 Date:   Wed May 16 09:13:53 2012 -0600
28637
28638     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
28639
28640 commit d387f246b24502642b76aad04eb3e0f1a5b78a05
28641 Author: Bdale Garbee <bdale@gag.com>
28642 Date:   Wed May 16 09:09:44 2012 -0600
28643
28644     build-dep on default-jdk instead of openjdk-6-jdk, closes: #655580
28645
28646 commit da2c920b9f3378d5a18551e008c1da5dace1e0ef
28647 Author: Keith Packard <keithp@keithp.com>
28648 Date:   Mon May 7 21:53:53 2012 -0700
28649
28650     altosui: Try to make telem tick counts match eeprom
28651     
28652     telem files can have an extra wrap or two of tick count if they start
28653     recording a long time before the flight. Account for this so that the
28654     CSV file output from each have matching tick values.
28655     
28656     Signed-off-by: Keith Packard <keithp@keithp.com>
28657
28658 commit b5b898264077fcada29e73efa28dcbe4729f2709
28659 Author: Keith Packard <keithp@keithp.com>
28660 Date:   Mon May 7 21:53:11 2012 -0700
28661
28662     altosui: Output recorded clock tick in CSV files
28663     
28664     This allows eeprom and telem files to be correlated accurately
28665     
28666     Signed-off-by: Keith Packard <keithp@keithp.com>
28667
28668 commit 73c26f39b1a08fcc13e23a5b1a4293bc7df9f163
28669 Author: Keith Packard <keithp@keithp.com>
28670 Date:   Mon May 7 21:52:12 2012 -0700
28671
28672     altos: Hacking at cc1120 driver
28673     
28674     Still doesn't work, but this adds a ton more register definitions
28675     
28676     Signed-off-by: Keith Packard <keithp@keithp.com>
28677
28678 commit 318b564486aa9965bbad54c71e51fcb32b414162
28679 Author: Keith Packard <keithp@keithp.com>
28680 Date:   Mon May 7 21:51:25 2012 -0700
28681
28682     altos: Get mpu6000 working
28683     
28684     This initializes the device appropraitely, and provides a command to
28685     dump the current values in converted form.
28686     
28687     Signed-off-by: Keith Packard <keithp@keithp.com>
28688
28689 commit af949c67eeb9dc310b1430d3435d241adccfc0a9
28690 Author: Keith Packard <keithp@keithp.com>
28691 Date:   Mon May 7 21:50:26 2012 -0700
28692
28693     altos: stm: pass DMA buffer index to DMA completion callback
28694     
28695     This lets the user know which DMA has finished.
28696     
28697     Signed-off-by: Keith Packard <keithp@keithp.com>
28698
28699 commit dd7699cf8daded17ac41abf5c5170cfb599b6ff5
28700 Author: Keith Packard <keithp@keithp.com>
28701 Date:   Mon May 7 21:49:24 2012 -0700
28702
28703     altos: stm: delay during USB config with pull-up off
28704     
28705     This makes sure that a reboot will reliably cause the device to
28706     disconnect from the USB bus.
28707     
28708     Signed-off-by: Keith Packard <keithp@keithp.com>
28709
28710 commit 744d05e6037ffc11688a9faa9c7b5dcda4065ee3
28711 Author: Keith Packard <keithp@keithp.com>
28712 Date:   Mon May 7 21:47:17 2012 -0700
28713
28714     altos: stm: share i2c_stop code between send and recv
28715     
28716     This waits for the stop signal to appear on the bus, necessary before
28717     starting another transaction.
28718     
28719     Signed-off-by: Keith Packard <keithp@keithp.com>
28720
28721 commit ddaf501ddcfc1a5f74a1ef1b6b76e1c82d89c77a
28722 Author: Keith Packard <keithp@keithp.com>
28723 Date:   Sun May 6 23:54:13 2012 -0700
28724
28725     altos: stm i2c DMA for large recv appears to work
28726     
28727     Transaction appears to be clean on the i2c bus now; correct number of
28728     bytes received, and the nack and stop at the right time. This tests >
28729     2 length reads; should try that too.
28730     
28731     Signed-off-by: Keith Packard <keithp@keithp.com>
28732
28733 commit fad6cda3d081d438b18305611f37fe05335aa372
28734 Author: Keith Packard <keithp@keithp.com>
28735 Date:   Sun May 6 22:53:25 2012 -0700
28736
28737     altos: megametrum needs ao_mpu6000.h
28738     
28739     Signed-off-by: Keith Packard <keithp@keithp.com>
28740
28741 commit f66f5de7a6cae71948da777ad0638bc6267a710f
28742 Author: Keith Packard <keithp@keithp.com>
28743 Date:   Sun May 6 22:52:56 2012 -0700
28744
28745     altos: Switch megametrum compile to -Os
28746     
28747     Looks like gcc has compiler bugs with -O0
28748     
28749     Signed-off-by: Keith Packard <keithp@keithp.com>
28750
28751 commit 0f0cc91ce8e9807dca48a5c0c53d821f5060e245
28752 Author: Keith Packard <keithp@keithp.com>
28753 Date:   Sun May 6 22:47:33 2012 -0700
28754
28755     altos: STM i2c work.
28756     
28757     Start now driven by interrupts
28758     Send now done with DMA and interrupts
28759     
28760     Signed-off-by: Keith Packard <keithp@keithp.com>
28761
28762 commit 69feb1e3d94a028d04529edb015654bafd06353b
28763 Author: Keith Packard <keithp@keithp.com>
28764 Date:   Tue May 1 18:12:41 2012 -0700
28765
28766     ao-tools: Add GPS and rssi printing to ao-telem
28767     
28768     This prints all of the basic telemetrum messages now.
28769     
28770     Signed-off-by: Keith Packard <keithp@keithp.com>
28771
28772 commit 8b08095b3d41e21684a10bddfb54431019da5af6
28773 Author: Keith Packard <keithp@keithp.com>
28774 Date:   Tue May 1 11:08:49 2012 -0700
28775
28776     altos: Report latest telemetry data, rather than using the oldest
28777     
28778     ao_sample_adc points to the *next* ADC entry, rather than the most
28779     recent one. Step back one entry to get the latest valid data.
28780     
28781     Signed-off-by: Keith Packard <keithp@keithp.com>
28782
28783 commit 7b0b6bcc40891d8dd106d091d3af8107b2941c66
28784 Author: Keith Packard <keithp@keithp.com>
28785 Date:   Wed Apr 25 23:29:20 2012 -0700
28786
28787     altos: Add hmc5883 and mpu6000 drivers to megametrum build
28788     
28789     Signed-off-by: Keith Packard <keithp@keithp.com>
28790
28791 commit e0b8c614ec4d11f432963e48d94e4497d31a9ddc
28792 Author: Keith Packard <keithp@keithp.com>
28793 Date:   Wed Apr 25 23:27:58 2012 -0700
28794
28795     altos: Add mpu6000 and hmc5883 stubs
28796     
28797     No real drivers here yet, just some testing stubs
28798     
28799     Signed-off-by: Keith Packard <keithp@keithp.com>
28800
28801 commit 0266e08dbf19e2204fb5f758d5d0f944d2afff7d
28802 Author: Keith Packard <keithp@keithp.com>
28803 Date:   Wed Apr 25 23:26:57 2012 -0700
28804
28805     altos: Add STM I2C recv and stop funcs
28806     
28807     Recv doesn't appear to work with more than one byte
28808     
28809     Signed-off-by: Keith Packard <keithp@keithp.com>
28810
28811 commit 962476911aaab17fd482593a0e8b95fe47de2f29
28812 Author: Keith Packard <keithp@keithp.com>
28813 Date:   Wed Apr 25 23:25:43 2012 -0700
28814
28815     altos: Oopsed the STM DMA channels for I2C1
28816     
28817     TX is 6, RX is 7
28818     
28819     Signed-off-by: Keith Packard <keithp@keithp.com>
28820
28821 commit 5f55d0490017faa19b8d70b1742e4a45266c7e79
28822 Author: Keith Packard <keithp@keithp.com>
28823 Date:   Fri Apr 20 22:26:16 2012 -0500
28824
28825     altosui: Mac OS Lion Java default heap space is too small (Trac #37)
28826     
28827     Increase it to 512M in the Info.plist file.
28828     
28829     Signed-off-by: Keith Packard <keithp@keithp.com>
28830
28831 commit 1489263b895a2a825e29d0560c9b1dbba8a3f431
28832 Author: Keith Packard <keithp@keithp.com>
28833 Date:   Tue Apr 17 11:01:18 2012 -0700
28834
28835     altos: Starting to write cc1120 driver
28836     
28837     This does "something" in radio test mode, appearing to generate a
28838     730MHz signal.
28839     
28840     Signed-off-by: Keith Packard <keithp@keithp.com>
28841
28842 commit cc305ea231ae22278abf91c0d9925f5992945369
28843 Author: Keith Packard <keithp@keithp.com>
28844 Date:   Sat Apr 14 13:53:36 2012 -0700
28845
28846     altosui: Add apogee lockout configuration
28847     
28848     Provide suggested values of 5/10/15/20 seconds.
28849     
28850     Signed-off-by: Keith Packard <keithp@keithp.com>
28851
28852 commit b4ab9f5dfa9f2a50e0528acf0a1fdeaa1f9bc523
28853 Author: Keith Packard <keithp@keithp.com>
28854 Date:   Sat Apr 14 13:52:37 2012 -0700
28855
28856     altosui: Read frequency from device while configuring ground station
28857     
28858     Missed this when adding the TD config UI.
28859     
28860     Signed-off-by: Keith Packard <keithp@keithp.com>
28861
28862 commit 5c8af6d35ebfc8fd896dfbf9928ec8f9dbfa531f
28863 Author: Keith Packard <keithp@keithp.com>
28864 Date:   Sat Apr 14 12:05:28 2012 -0700
28865
28866     altos: Remove debug printf from cc1111 check-stack script
28867     
28868     Signed-off-by: Keith Packard <keithp@keithp.com>
28869
28870 commit 6cb744e305116a738b5d71686c6748f6f08c12ea
28871 Author: Keith Packard <keithp@keithp.com>
28872 Date:   Sat Apr 14 12:02:14 2012 -0700
28873
28874     altos: Respect apogee lockout time in flight algorithm
28875     
28876     This prevents any apogee detection from occurring until the specified
28877     number of seconds after boost. This also prevents the switch from
28878     accel+baro to baro only mode in the Kalman filter.
28879     
28880     The test frame work is also changed to look for Apogee lockout: in the
28881     eeprom input file.
28882     
28883     Signed-off-by: Keith Packard <keithp@keithp.com>
28884
28885 commit 9a8fec1b6d8f3346f988882ffb03d7d0e45b3c81
28886 Author: Keith Packard <keithp@keithp.com>
28887 Date:   Sat Apr 14 12:00:32 2012 -0700
28888
28889     altos: Clean up test scripts
28890     
28891     The flight test scripts were using invalid bash syntax. Clean that up
28892     and also switch the default flight directory to my new
28893     ~/misc/rockets/flights directory.
28894     
28895     Signed-off-by: Keith Packard <keithp@keithp.com>
28896
28897 commit e9f6fca7cfe796cbd86ae9d8f1ebe31bba7251db
28898 Author: Keith Packard <keithp@keithp.com>
28899 Date:   Fri Apr 13 18:38:29 2012 -0700
28900
28901     altos: Correct STM USB driver
28902     
28903     Configure endpoint registers correctly now.
28904     Restructure code to make sure we send the right IN packets.
28905     
28906     Signed-off-by: Keith Packard <keithp@keithp.com>
28907
28908 commit 1a84d34fa08f43a5f79b1a5f8d8de7674d04647d
28909 Author: Keith Packard <keithp@keithp.com>
28910 Date:   Fri Apr 13 18:35:46 2012 -0700
28911
28912     altos: Check all USE_SERIAL_*_STDIO when computing AO_NUM_STDIOS
28913     
28914     AO_NUM_STDIOS is allocated based on the total number of possible stdio
28915     values. Now that multiple serial stdio are possible, make sure to
28916     check all of them.
28917     
28918     Signed-off-by: Keith Packard <keithp@keithp.com>
28919
28920 commit 3c67543f3e5fddc6a8850f33ac519ccd55b607f0
28921 Author: Keith Packard <keithp@keithp.com>
28922 Date:   Fri Apr 13 18:34:52 2012 -0700
28923
28924     altos: Set USB Interrupt endpoint interval to maximum allowed
28925     
28926     We don't ever send anything over this channel, so there's no sense
28927     asking the host to poll it very often.
28928     
28929     Signed-off-by: Keith Packard <keithp@keithp.com>
28930
28931 commit 0667261e03b3fd403e97d02ea6204b007bb13f58
28932 Author: Keith Packard <keithp@keithp.com>
28933 Date:   Fri Apr 13 09:39:20 2012 -0700
28934
28935     altos: Pull more interfaces out of ao.h and move to separate files
28936     
28937     This moves the aes, btm, companion, lcd and packet interfaces out of ao.h
28938     
28939     Signed-off-by: Keith Packard <keithp@keithp.com>
28940
28941 commit 2b4a53342980618b193cbee5b803e56f7c937893
28942 Author: Keith Packard <keithp@keithp.com>
28943 Date:   Fri Apr 13 09:36:00 2012 -0700
28944
28945     altos: ao_telelaunch.c got left in src directory
28946     
28947     Should live in product/ao_telelaunch.c
28948     
28949     Signed-off-by: Keith Packard <keithp@keithp.com>
28950
28951 commit 040a6eb119451026e1ec7c3a6a8e76b439c632d5
28952 Author: Keith Packard <keithp@keithp.com>
28953 Date:   Thu Apr 12 14:51:07 2012 -0700
28954
28955     altos: Massive product config cleanup
28956     
28957     Support multiple serial ports more cleanly
28958     
28959     Split out parts of ao.h into separate feature header files
28960     
28961     Signed-off-by: Keith Packard <keithp@keithp.com>
28962
28963 commit f952f9c285e2718a433c8c720c9b5d9c369e7036
28964 Author: Keith Packard <keithp@keithp.com>
28965 Date:   Thu Apr 12 14:50:12 2012 -0700
28966
28967     altos: Start adding apogee lockout support
28968     
28969     Remove radio channel support too.
28970     
28971     Signed-off-by: Keith Packard <keithp@keithp.com>
28972
28973 commit 6d1606895f70c6bca20c25084107f90bd0b613ec
28974 Author: Keith Packard <keithp@keithp.com>
28975 Date:   Wed Apr 11 23:31:28 2012 -0700
28976
28977     altos: Switch stm-demo to HSE clock, add USB
28978     
28979     Requires that SB17 be soldered shut so that the MCO from the STlink
28980     CPU is available the target for HSE input.
28981     
28982     Signed-off-by: Keith Packard <keithp@keithp.com>
28983
28984 commit 49ac2828510e8b5fcba7e31631dac0580a455011
28985 Author: Keith Packard <keithp@keithp.com>
28986 Date:   Wed Apr 11 23:30:13 2012 -0700
28987
28988     altos: Rework how STM clocks are initialized.
28989     
28990     Clean all of the RCC configuration up after turning on the clocks.
28991     Use the MSI clock during initialization to avoid messing around with
28992     the HSI clock temporarily.
28993     
28994     Allow for an external clock on the HSE line.
28995     
28996     Signed-off-by: Keith Packard <keithp@keithp.com>
28997
28998 commit 93ef7e4a23d13540615f1a9782e1d58ddb7f258e
28999 Author: Keith Packard <keithp@keithp.com>
29000 Date:   Wed Apr 11 23:29:38 2012 -0700
29001
29002     altos: Use new USB driver in megametrum-v0.1 product
29003     
29004     Signed-off-by: Keith Packard <keithp@keithp.com>
29005
29006 commit d432307a3c2709634350eaa1262b935028d073d3
29007 Author: Keith Packard <keithp@keithp.com>
29008 Date:   Wed Apr 11 23:28:45 2012 -0700
29009
29010     altos: Add STM USB driver
29011     
29012     Emulates the usual CDC-ACM device
29013     
29014     Signed-off-by: Keith Packard <keithp@keithp.com>
29015
29016 commit afd52a8b54fe31577d939a161ea9cf5ad48e3a43
29017 Author: Keith Packard <keithp@keithp.com>
29018 Date:   Wed Apr 11 23:26:30 2012 -0700
29019
29020     altos: Add STM ao_arch_reboot implementation
29021     
29022     Uses the AIRCR register to force a reset
29023     
29024     Signed-off-by: Keith Packard <keithp@keithp.com>
29025
29026 commit 150881f86f8d90b5867507889441990d18223e62
29027 Author: Keith Packard <keithp@keithp.com>
29028 Date:   Wed Apr 11 23:25:36 2012 -0700
29029
29030     altos: Add register definitions for STM syscfg and usb
29031     
29032     Signed-off-by: Keith Packard <keithp@keithp.com>
29033
29034 commit 0dd9e1dd62656a931f9559af6da9131f704f83f9
29035 Author: Keith Packard <keithp@keithp.com>
29036 Date:   Mon Apr 9 23:27:43 2012 -0700
29037
29038     altos: Add support for multiple SPI busses and sharing device drivers
29039     
29040     The STM32L151 has several SPI busses, and we want to use more than
29041     one, so add a 'bus' parameter to the SPI interfaces. To avoid wasting
29042     time on AVR and CC1111 processors which only use one SPI bus, elide
29043     those parameters from the actual functions by wrapping them with
29044     macros.
29045     
29046     Configuring chip select is now all macroized so that each chip can
29047     have its own version, allowing the STM to share the various SPI device
29048     drivers with the cc1111 and avr processors. Note that only the M25
29049     driver has been ported; porting the others is 'trivial', but not
29050     necessary at this point.
29051     
29052     Signed-off-by: Keith Packard <keithp@keithp.com>
29053
29054 commit 35e3c47da895bdd868b9b66b98bca64bd82db862
29055 Author: Keith Packard <keithp@keithp.com>
29056 Date:   Mon Apr 9 22:25:59 2012 -0700
29057
29058     altos: make megametrum beeper test keep beeping
29059     
29060     Used to measure the beep frequency.
29061     
29062     Signed-off-by: Keith Packard <keithp@keithp.com>
29063
29064 commit 9804528e249db256e020d4b5340ba6216d3474f0
29065 Author: Keith Packard <keithp@keithp.com>
29066 Date:   Mon Apr 9 22:25:13 2012 -0700
29067
29068     altos: Check for cc1111 flash overflow
29069     
29070     The linker is supposed to do this, but it ignores the static
29071     initializer data added after the code.
29072     
29073     Signed-off-by: Keith Packard <keithp@keithp.com>
29074
29075 commit d15c4976ed9c23c861e620eb9c429d1cb7eedbee
29076 Author: Keith Packard <keithp@keithp.com>
29077 Date:   Mon Apr 9 22:24:36 2012 -0700
29078
29079     altos: Increase STM SPI speed to PCLK/4
29080     
29081     The pressure sensor seems happy at this speed.
29082     
29083     Signed-off-by: Keith Packard <keithp@keithp.com>
29084
29085 commit 0cd682ef0c8cdcf364b7e173ff3a9f84e485c113
29086 Author: Keith Packard <keithp@keithp.com>
29087 Date:   Mon Apr 9 22:23:52 2012 -0700
29088
29089     altos: Move MS5607 configuration to ao_pins.h
29090     
29091     Which SPI port and where chip select is to be found are product specific.
29092     
29093     Signed-off-by: Keith Packard <keithp@keithp.com>
29094
29095 commit 3909fca0a3f918121888a415f9bf9bca99505366
29096 Author: Keith Packard <keithp@keithp.com>
29097 Date:   Mon Apr 9 22:22:58 2012 -0700
29098
29099     altos: Add missing parens in ao_ms5607.h
29100     
29101     Signed-off-by: Keith Packard <keithp@keithp.com>
29102
29103 commit c5bbfc7244faaae41c7b581644c3c253e9b7f462
29104 Author: Keith Packard <keithp@keithp.com>
29105 Date:   Mon Apr 9 22:21:46 2012 -0700
29106
29107     altos: Reduce MS5607 reset delay, increase conversion delay
29108     
29109     Reset doesn't take very long, while doing a conversion seems to take
29110     more than 10ms.
29111     
29112     Signed-off-by: Keith Packard <keithp@keithp.com>
29113
29114 commit 51aef5d4fc29986353ad887f4a67ed2fe35f8c8e
29115 Author: Keith Packard <keithp@keithp.com>
29116 Date:   Mon Apr 9 22:17:33 2012 -0700
29117
29118     altos: Make STM clock configuration per-product. Fix 32MHz CPU speed
29119     
29120     This moves all of the STM clock configuration into ao_pins.h so that
29121     each product can configure it separately. While doing this, I
29122     discovered that the flash memory mode (64-bit, prefetch, latency 1)
29123     wasn't actually getting set, which is why the CPU refused to work at
29124     32MHz.
29125     
29126     Signed-off-by: Keith Packard <keithp@keithp.com>
29127
29128 commit 1dcfbb05531767e67df45c2799a2fe533834fb71
29129 Author: Keith Packard <keithp@keithp.com>
29130 Date:   Mon Apr 9 20:28:19 2012 -0700
29131
29132     altos: Add beeper driver to STM arch
29133     
29134     Drives the MegaMetrum beeper
29135     
29136     Signed-off-by: Keith Packard <keithp@keithp.com>
29137
29138 commit 67044cca5b463772491d0712d0ce07a8f897a476
29139 Author: Keith Packard <keithp@keithp.com>
29140 Date:   Mon Apr 9 00:10:43 2012 -0700
29141
29142     altos: Test I2C code on discovery board.
29143     
29144     Signed-off-by: Keith Packard <keithp@keithp.com>
29145
29146 commit 0a198dfcd1b0defe194feaf301f4586e5573d6e9
29147 Author: Keith Packard <keithp@keithp.com>
29148 Date:   Mon Apr 9 00:10:01 2012 -0700
29149
29150     altos: ARM -O0 flag appears to generate buggy code
29151     
29152     Use -Os always, which is annoying...
29153     
29154     Signed-off-by: Keith Packard <keithp@keithp.com>
29155
29156 commit 597c3df668ccf656d8c014f665c154a03166577c
29157 Author: Keith Packard <keithp@keithp.com>
29158 Date:   Mon Apr 9 00:09:18 2012 -0700
29159
29160     altos: Make ms5607 driver do something
29161     
29162     It's loading prom values and converting sensor data, but it's getting
29163     the wrong answer at present.
29164     
29165     Signed-off-by: Keith Packard <keithp@keithp.com>
29166
29167 commit e9362841b1075a2ae59eecc73137b20e700567a8
29168 Author: Keith Packard <keithp@keithp.com>
29169 Date:   Mon Apr 9 00:08:20 2012 -0700
29170
29171     altos: add STM I2C driver.
29172     
29173     Not well tested yet...
29174     
29175     Signed-off-by: Keith Packard <keithp@keithp.com>
29176
29177 commit e027247a9ef82746c26bcb8d0a851a0fa06511de
29178 Author: Keith Packard <keithp@keithp.com>
29179 Date:   Mon Apr 9 00:06:35 2012 -0700
29180
29181     altos: Slow STM SPI down a bit so the MS5607 returns values
29182     
29183     It's still not working right, but at least it returns something other
29184     than all zeros...
29185     
29186     Signed-off-by: Keith Packard <keithp@keithp.com>
29187
29188 commit 059f09dbca4703c25b42389b54c6510331c39485
29189 Author: Keith Packard <keithp@keithp.com>
29190 Date:   Mon Apr 9 00:05:18 2012 -0700
29191
29192     altos: Allow STM DMA channels to be reserved for one use
29193     
29194     This allows a single user of a DMA channel to reserve it for use
29195     without needing to lock the mutex; this is required for DMA from the
29196     ADC to work on megametrum as it wants to start DMA from an interrupt
29197     handler, which cannot block on a mutex.
29198     
29199     Signed-off-by: Keith Packard <keithp@keithp.com>
29200
29201 commit f7cfbbce2b94b5ac0094a0e34e1766fe1ceb12c8
29202 Author: Keith Packard <keithp@keithp.com>
29203 Date:   Sat Apr 7 20:35:17 2012 -0700
29204
29205     altos: Show temperature in stm-demo
29206     
29207     Use the ADC to show current temperature
29208     
29209     Signed-off-by: Keith Packard <keithp@keithp.com>
29210
29211 commit 98aa481741b8fbc617545beda3d295b53de90716
29212 Author: Keith Packard <keithp@keithp.com>
29213 Date:   Sat Apr 7 20:33:27 2012 -0700
29214
29215     altos: Use 384 cycle ADC sample time
29216     
29217     This is plenty fast, and provides nice stable readings.
29218     
29219     Signed-off-by: Keith Packard <keithp@keithp.com>
29220
29221 commit 0bce68e6a0abc19f49c573331164d13643c9bee5
29222 Author: Keith Packard <keithp@keithp.com>
29223 Date:   Sat Apr 7 20:31:58 2012 -0700
29224
29225     altos: Add STM temperature sensor calibration data
29226     
29227     Each stm32l has two-point factory temperature calibration data.
29228     Provide access to that for displaying temperature data.
29229     
29230     Signed-off-by: Keith Packard <keithp@keithp.com>
29231
29232 commit a41628c97e90770890cce1d6f580e92c1cad1a7f
29233 Author: Keith Packard <keithp@keithp.com>
29234 Date:   Sat Apr 7 18:55:53 2012 -0700
29235
29236     altos: Add ADC support to megametrum firmware
29237     
29238     Measures all MM igniter and battery voltages.
29239     
29240     Signed-off-by: Keith Packard <keithp@keithp.com>
29241
29242 commit 9b9357f48597a034211affb3f18fc6089816456d
29243 Author: Keith Packard <keithp@keithp.com>
29244 Date:   Sat Apr 7 18:55:20 2012 -0700
29245
29246     altos: Add ADC tests to stm-demo
29247     
29248     Signed-off-by: Keith Packard <keithp@keithp.com>
29249
29250 commit b5e9d14b4e3e8f29ad8a7bb9b339890be4bcfa2f
29251 Author: Keith Packard <keithp@keithp.com>
29252 Date:   Sat Apr 7 18:54:32 2012 -0700
29253
29254     altos: STM SPI is not using interrupts itself
29255     
29256     All SPI transfers are done via DMA, so the DMA interrupts suffice.
29257     
29258     Signed-off-by: Keith Packard <keithp@keithp.com>
29259
29260 commit 5e41d1e03680af9806c599aad80b9b64dd719f9b
29261 Author: Keith Packard <keithp@keithp.com>
29262 Date:   Sat Apr 7 18:53:12 2012 -0700
29263
29264     altos: Add support for STM ADC
29265     
29266     DMA-based driver for the STM analog to digital converter.
29267     
29268     Signed-off-by: Keith Packard <keithp@keithp.com>
29269
29270 commit fa96ee3db9b57cc2a88e9edd74bb9efcc228ccf3
29271 Author: Keith Packard <keithp@keithp.com>
29272 Date:   Sat Apr 7 18:44:11 2012 -0700
29273
29274     altosui: remove debug printf from AltosFlightStats
29275     
29276     Signed-off-by: Keith Packard <keithp@keithp.com>
29277
29278 commit e56038b65ba1c6413ba9942be3c092644986f126
29279 Author: Keith Packard <keithp@keithp.com>
29280 Date:   Sat Apr 7 18:36:36 2012 -0700
29281
29282     altosui: When computing flight stats, auto-detect boost time
29283     
29284     Detect when boost actually starts by looking for the last low
29285     acceleration value before the recorded boost time. This improves the
29286     computation of the boost state data.
29287     
29288     Signed-off-by: Keith Packard <keithp@keithp.com>
29289
29290 commit 20066268d8d1853055d0afe108584db34b425fcb
29291 Author: Keith Packard <keithp@keithp.com>
29292 Date:   Sat Apr 7 18:35:26 2012 -0700
29293
29294     altosui: Integrate accel speed from very start of eeprom record
29295     
29296     Don't wait for the flight computer to have detected boost--that's
29297     often several samples after boost actually occurred, which can leave a
29298     bunch of acceleration out of the speed computation.
29299     
29300     Signed-off-by: Keith Packard <keithp@keithp.com>
29301
29302 commit d35c4df12a3d8e2dab5d41f8d918ff4237f91e46
29303 Author: Keith Packard <keithp@keithp.com>
29304 Date:   Sat Apr 7 01:01:33 2012 -0700
29305
29306     altos: Add ability to change radio frequency in TeleTerra
29307     
29308     Provide a way to set the frequency locally.
29309     
29310     Signed-off-by: Keith Packard <keithp@keithp.com>
29311
29312 commit 4700f63937786e8f6e9b4882363234a33eb54c46
29313 Author: Keith Packard <keithp@keithp.com>
29314 Date:   Sat Apr 7 01:01:06 2012 -0700
29315
29316     altos: Make ao_config_set_radio public
29317     
29318     Allows other bits of code to reset the radio parameters.
29319     
29320     Signed-off-by: Keith Packard <keithp@keithp.com>
29321
29322 commit a0a650a2be007b0436bd527d6c18f36eef6fbe2b
29323 Author: Keith Packard <keithp@keithp.com>
29324 Date:   Sat Apr 7 00:25:50 2012 -0700
29325
29326     altos: Force radio channel to zero when setting frequency
29327     
29328     Otherwise, the actual radio frequency will include the channel offset,
29329     which is not useful.
29330     
29331     Signed-off-by: Keith Packard <keithp@keithp.com>
29332
29333 commit c7119405a3dd7128120374a2a001bc98ef523619
29334 Author: Keith Packard <keithp@keithp.com>
29335 Date:   Sat Apr 7 00:25:26 2012 -0700
29336
29337     altos: Make ao_freq_to_set reentrant
29338     
29339     Save a bunch of data space this way.
29340     
29341     Signed-off-by: Keith Packard <keithp@keithp.com>
29342
29343 commit d0d0d20c20e5eeacbc9a1ec1c93141a2044830fb
29344 Author: Keith Packard <keithp@keithp.com>
29345 Date:   Sat Apr 7 00:24:59 2012 -0700
29346
29347     altos: Shorten help strings
29348     
29349     Save a bit of code space
29350     
29351     Signed-off-by: Keith Packard <keithp@keithp.com>
29352
29353 commit 8405efb6ca68c8216413b94e7acbdf51af00554a
29354 Author: Keith Packard <keithp@keithp.com>
29355 Date:   Sat Apr 7 00:23:55 2012 -0700
29356
29357     altos: Save memory in ao_config.c
29358     
29359     Shorten help messages.
29360     Stop setting aes_key on products not using aes key.
29361     
29362     Signed-off-by: Keith Packard <keithp@keithp.com>
29363
29364 commit 41a8383ccd29351f3a88a374f9456d6efb71b9a0
29365 Author: Keith Packard <keithp@keithp.com>
29366 Date:   Sat Apr 7 00:22:41 2012 -0700
29367
29368     altos: Save memory in ao_cmd.c
29369     
29370     Shrink a couple of help strings
29371     move a variable in ao_cmd from data to pdata.
29372     
29373     Signed-off-by: Keith Packard <keithp@keithp.com>
29374
29375 commit 5f63065a16b65618b39314880c72074f0a8b5550
29376 Author: Keith Packard <keithp@keithp.com>
29377 Date:   Sat Apr 7 00:22:02 2012 -0700
29378
29379     altos: Add fake install/uninstall targets for stm-bringup
29380     
29381     Keep global 'make install' from failing.
29382     Signed-off-by: Keith Packard <keithp@keithp.com>
29383
29384 commit 5569e4df50648a3ec131ba5e244da9b67d1a67db
29385 Author: Keith Packard <keithp@keithp.com>
29386 Date:   Sat Apr 7 00:21:03 2012 -0700
29387
29388     altosui: Radio channel gets set to zero by altos when frequency is set
29389     
29390     Just remember what the channe is going to get set to.
29391     
29392     Signed-off-by: Keith Packard <keithp@keithp.com>
29393
29394 commit 2db6b0f58811ffc44a468c8fbcacc08d37edd26c
29395 Author: Keith Packard <keithp@keithp.com>
29396 Date:   Fri Apr 6 22:40:49 2012 -0700
29397
29398     altos: Shuffle stm-demo SPI test code around a bit
29399     
29400     Move a debug printf beyond the chip select boundary to
29401     allow for more accurate timing.
29402     
29403     Send four bytes instead of just one.
29404     
29405     Signed-off-by: Keith Packard <keithp@keithp.com>
29406
29407 commit 89201cdf2062b7319a0da4e266e4d6edba1493f8
29408 Author: Keith Packard <keithp@keithp.com>
29409 Date:   Fri Apr 6 22:40:17 2012 -0700
29410
29411     altos: Declare stm DMA address registers as volatile void *
29412     
29413     Eliminates a cast when assigning to them.
29414     
29415     Signed-off-by: Keith Packard <keithp@keithp.com>
29416
29417 commit 0bcc23c3be1a20a362fea268901c600f9f0d287a
29418 Author: Keith Packard <keithp@keithp.com>
29419 Date:   Fri Apr 6 22:39:45 2012 -0700
29420
29421     altos: Disable DMA unit when idle
29422     
29423     Should save a bit of power
29424     
29425     Signed-off-by: Keith Packard <keithp@keithp.com>
29426
29427 commit 20926b62a87154a846cb950dc542c737cd54826d
29428 Author: Keith Packard <keithp@keithp.com>
29429 Date:   Fri Apr 6 22:39:12 2012 -0700
29430
29431     altos: Disable STM SPI transceiver when idle
29432     
29433     Should save a bit of power.
29434     
29435     Signed-off-by: Keith Packard <keithp@keithp.com>
29436
29437 commit 9b12bc445fe482306e4587ad60c6d2daf65a60f3
29438 Author: Keith Packard <keithp@keithp.com>
29439 Date:   Fri Apr 6 18:07:07 2012 -0700
29440
29441     altos: Add DMA, SPI and MS5607 drivers
29442     
29443     Signed-off-by: Keith Packard <keithp@keithp.com>
29444
29445 commit 2a04ac8dff1bfc3efba8c7e4dc9c1a827496dbdf
29446 Author: Keith Packard <keithp@keithp.com>
29447 Date:   Mon Apr 2 23:00:29 2012 -0700
29448
29449     altos: megametrum builds an ELF file, not an IHX file
29450     
29451     Name it appropriately.
29452     
29453     Signed-off-by: Keith Packard <keithp@keithp.com>
29454
29455 commit cf1e4d60e1fcd75fa734365a2666ea8930938128
29456 Author: Keith Packard <keithp@keithp.com>
29457 Date:   Mon Apr 2 22:58:54 2012 -0700
29458
29459     altos: Move SPI functions to architecture-specific location
29460     
29461     Some architecture specific stuff needs to use core altos code, so
29462     create new ao_arch_funcs.h files per architecture that get pulled in
29463     at the end of ao.h
29464     
29465     Signed-off-by: Keith Packard <keithp@keithp.com>
29466
29467 commit c09d155328bd446bb84ac1068d380cceb884df22
29468 Author: Keith Packard <keithp@keithp.com>
29469 Date:   Mon Apr 2 19:27:53 2012 -0700
29470
29471     altos: Oops. Set per-USART STM baud rate register instead of usart1
29472     
29473     Was accidentally always setting usart1 instead of the per-usart
29474     register. Didn't work too well for other usarts...
29475     
29476     Signed-off-by: Keith Packard <keithp@keithp.com>
29477
29478 commit 440226df03a85cd0047d876b57b2a3410bfb2b02
29479 Author: Bdale Garbee <bdale@gag.com>
29480 Date:   Sat Mar 31 17:53:25 2012 -0600
29481
29482     be explicit in a couple places about only using single-cell LiPo batteries
29483
29484 commit 4ca52908c8b3f98a79588981f6878025250f0924
29485 Author: Bdale Garbee <bdale@gag.com>
29486 Date:   Sat Mar 31 16:43:39 2012 -0600
29487
29488     use explicit path not $(HOME) to find ARM toolchain for now
29489
29490 commit 246618baf9b8803e5ae4e650eb46740d1128a010
29491 Author: Bdale Garbee <bdale@gag.com>
29492 Date:   Sat Mar 31 16:43:11 2012 -0600
29493
29494     add config file for gdb use with MegaMetrum via Olimex dongle
29495
29496 commit b89f11139fae7ae722ed78d342a169ed2bf5c948
29497 Author: Keith Packard <keithp@keithp.com>
29498 Date:   Sat Mar 31 12:44:14 2012 -0700
29499
29500     Build megametrum-v0.1 by default
29501
29502 commit bbf31b8591f89e2a1fcc7dac5f42d730a81473d2
29503 Author: Keith Packard <keithp@keithp.com>
29504 Date:   Sat Mar 31 12:43:58 2012 -0700
29505
29506     altos: Add stub cc1120 driver
29507     
29508     Signed-off-by: Keith Packard <keithp@keithp.com>
29509
29510 commit 1f2b75518169c4f2da9762de46bf1d9a71a04d17
29511 Author: Keith Packard <keithp@keithp.com>
29512 Date:   Wed Mar 28 21:54:32 2012 -0700
29513
29514     altos: Move cc1111 DMA engine interface to cc1111/ao_arch.h from ao.h
29515     
29516     It's hardware specific
29517     
29518     Signed-off-by: Keith Packard <keithp@keithp.com>
29519
29520 commit 47a9925f16f6a13b173c49d3873d91fc7cf6d46e
29521 Author: Keith Packard <keithp@keithp.com>
29522 Date:   Wed Mar 28 21:53:30 2012 -0700
29523
29524     altos: Move cc1111 AES driver to cc1111 directory
29525     
29526     Signed-off-by: Keith Packard <keithp@keithp.com>
29527
29528 commit 93ae5f6ce09fa71ebd34f77a884684b3670c8b44
29529 Author: Bdale Garbee <bdale@gag.com>
29530 Date:   Sat Mar 31 13:29:15 2012 -0600
29531
29532     openocd config file for MegaMetrum
29533
29534 commit b711768da6310a1b06f3b995a280587fed5f26cd
29535 Author: Keith Packard <keithp@keithp.com>
29536 Date:   Wed Mar 28 21:45:44 2012 -0700
29537
29538     Bump version to 1.0.9.4
29539     
29540     Signed-off-by: Keith Packard <keithp@keithp.com>
29541
29542 commit 0993595035a2813deba6991fa25bc0d475f2e6bb
29543 Author: Keith Packard <keithp@keithp.com>
29544 Date:   Wed Mar 28 21:45:02 2012 -0700
29545
29546     altos: Add ao_freq.c to megametrum build
29547     
29548     I think this will be needed to compute radio settings on the cc1120
29549     
29550     Signed-off-by: Keith Packard <keithp@keithp.com>
29551
29552 commit a157edbe1bf7fffd5a6041f7b1760674addd2229
29553 Author: Keith Packard <keithp@keithp.com>
29554 Date:   Sun Mar 25 13:08:05 2012 -0700
29555
29556     stm-demo does not use altitude.h
29557
29558 commit c1531fb26461b9f4ec39672bbfaeb70e6f4d1056
29559 Author: Keith Packard <keithp@keithp.com>
29560 Date:   Fri Mar 23 01:42:32 2012 -0700
29561
29562     Use -Os for STM apps. Fix altos.ld to matchall .rodata* sections
29563     
29564     Without .rodata*, it would stick the flash copy of the data on top of
29565     any further .rodata* sections. Fortunately, the linker catches that
29566     and complains...
29567     
29568     Signed-off-by: Keith Packard <keithp@keithp.com>
29569
29570 commit f2c110fb4531144f18f62200e4127738c84e87f1
29571 Author: Keith Packard <keithp@keithp.com>
29572 Date:   Fri Mar 23 00:55:53 2012 -0700
29573
29574     Get config stuff hooked up for MegaMetrum
29575     
29576     This stubs out enough stuff to let ao_config link and work
29577     
29578     Signed-off-by: Keith Packard <keithp@keithp.com>
29579
29580 commit 0bda768c2be5b81bec13f21d4d3bb6a11a8e88fa
29581 Author: Keith Packard <keithp@keithp.com>
29582 Date:   Fri Mar 23 00:43:47 2012 -0700
29583
29584     Add preliminary MegaMetrum v0.1 support
29585     
29586     This turns on an LED, enables the internal R/C clock, hooks USART3 to
29587     the GPS chip and USART1 to the console.
29588     
29589     Signed-off-by: Keith Packard <keithp@keithp.com>
29590
29591 commit c27e211796a64b6bbacfe6a1516e9872fdb0853e
29592 Author: Keith Packard <keithp@keithp.com>
29593 Date:   Fri Mar 23 00:43:17 2012 -0700
29594
29595     Use new Makefile.defs in stm-demo
29596     
29597     Signed-off-by: Keith Packard <keithp@keithp.com>
29598
29599 commit d7ddfd4e6d75e50ca64a342181f5c52e9f4919af
29600 Author: Keith Packard <keithp@keithp.com>
29601 Date:   Fri Mar 23 00:42:13 2012 -0700
29602
29603     Use 16-bits for STM32 LED mask. Export serial I/O functions
29604     
29605     Signed-off-by: Keith Packard <keithp@keithp.com>
29606
29607 commit 606d866153cb639a2400cbedbc45046372ad1b30
29608 Author: Keith Packard <keithp@keithp.com>
29609 Date:   Fri Mar 23 00:40:48 2012 -0700
29610
29611     Allow skytraq to be on non-default serial port
29612     
29613     Provide ao_gps_getchar, ao_gps_putchar and ao_gps_set_speed hooks to
29614     let product specify functions for serial access.
29615     
29616     Signed-off-by: Keith Packard <keithp@keithp.com>
29617
29618 commit 25184baa36c20e3d661f94e642a33e8aae179d60
29619 Author: Keith Packard <keithp@keithp.com>
29620 Date:   Fri Mar 23 00:40:09 2012 -0700
29621
29622     Allow for more than 8 LEDs
29623     
29624     Provide hook for architecture-specific LED mask (AO_LED_TYPE)
29625     
29626     Signed-off-by: Keith Packard <keithp@keithp.com>
29627
29628 commit 87ca5c9c5f9cea1b9e14468e4694ce6acc21955a
29629 Author: Keith Packard <keithp@keithp.com>
29630 Date:   Fri Mar 23 00:19:06 2012 -0700
29631
29632     Clean up STM build by moving common defs to Makefile.defs
29633     
29634     Shortens default Makefile a bit
29635     
29636     Signed-off-by: Keith Packard <keithp@keithp.com>
29637
29638 commit 41a3fded116a3101789df44647d0eb06be07a25b
29639 Author: Keith Packard <keithp@keithp.com>
29640 Date:   Fri Mar 23 00:04:47 2012 -0700
29641
29642     Make stm-demo display a scrolling message
29643     
29644     Instead of trying to frob the LEDs, which are now owned by the serial
29645     port.
29646     
29647     Signed-off-by: Keith Packard <keithp@keithp.com>
29648
29649 commit 9b5e98a3407b369803109bfc1409e4f8b6e848ba
29650 Author: Keith Packard <keithp@keithp.com>
29651 Date:   Fri Mar 23 00:04:21 2012 -0700
29652
29653     Flush LCD changes each time the text is updated
29654     
29655     Rather than requiring the caller to do it.
29656     
29657     Signed-off-by: Keith Packard <keithp@keithp.com>
29658
29659 commit 6337b5f522be11926a6490d7bb27a4f7795da569
29660 Author: Keith Packard <keithp@keithp.com>
29661 Date:   Fri Mar 23 00:03:29 2012 -0700
29662
29663     Automatically set ALTERNATE pin mode when setting alternate function
29664     
29665     When selecting an alternate function, set the pin to alternate mode as
29666     well; there's no sense requiring two separate calls everywhere.
29667     
29668     Signed-off-by: Keith Packard <keithp@keithp.com>
29669
29670 commit c9e61a4f1f0ce5e5177a2252e8b7a02a578e77f1
29671 Author: Keith Packard <keithp@keithp.com>
29672 Date:   Fri Mar 23 00:02:38 2012 -0700
29673
29674     Allow any STM usart to be used for stdio
29675     
29676     This also adds the alternate pin configurations for the other two
29677     usarts
29678     
29679     Signed-off-by: Keith Packard <keithp@keithp.com>
29680
29681 commit bf060b3e3ed655bbb8464f342d0a0b1745a06173
29682 Author: Keith Packard <keithp@keithp.com>
29683 Date:   Fri Mar 23 00:01:50 2012 -0700
29684
29685     Allow for more than one serial port in core AltOS
29686     
29687     Signed-off-by: Keith Packard <keithp@keithp.com>
29688
29689 commit d236a5c7cd6e9b1d7192e801d63b4bd348cc2f12
29690 Author: Keith Packard <keithp@keithp.com>
29691 Date:   Thu Mar 22 20:02:30 2012 -0700
29692
29693     Move LCD string output code to ao_lcd_font.c
29694     
29695     It's all very specific to the 14-segment display, so
29696     stick it there.
29697     
29698     Signed-off-by: Keith Packard <keithp@keithp.com>
29699
29700 commit 6da2f5846f2d28ea1f09f60ef2cc3f68113ac62a
29701 Author: Keith Packard <keithp@keithp.com>
29702 Date:   Thu Mar 22 19:43:29 2012 -0700
29703
29704     Add LCD device driver to STM32L port
29705     
29706     This enables the 6-digit 14-character display on the STM32L discovery
29707     board and provides an ascii output to it.
29708     
29709     Signed-off-by: Keith Packard <keithp@keithp.com>
29710
29711 commit a953ac32033ded18adf0cb3ca20134385fcd0a6d
29712 Author: Keith Packard <keithp@keithp.com>
29713 Date:   Thu Mar 22 19:42:18 2012 -0700
29714
29715     Add defines for LCD controller and RTC clocking
29716     
29717     Signed-off-by: Keith Packard <keithp@keithp.com>
29718
29719 commit f6e557bc2f0bd6d4272ed00dd09554d27a83be89
29720 Author: Keith Packard <keithp@keithp.com>
29721 Date:   Thu Mar 22 19:41:23 2012 -0700
29722
29723     Actually enable usarts with the new usart code
29724     
29725     And move USART1 to PB6/PB7 to avoid conflicting with
29726     the LCD pins.
29727     
29728     Signed-off-by: Keith Packard <keithp@keithp.com>
29729
29730 commit 03fbc18ea17a9e77a1d4d8e0ddb97abbe5da3658
29731 Author: Keith Packard <keithp@keithp.com>
29732 Date:   Wed Mar 21 16:24:06 2012 -0700
29733
29734     Clean up multiple serial port support for STM32L
29735     
29736     Signed-off-by: Keith Packard <keithp@keithp.com>
29737
29738 commit f560c961ae4fedec0c9f11d5b3635fcb0d67ed8e
29739 Author: Keith Packard <keithp@keithp.com>
29740 Date:   Wed Mar 21 16:18:26 2012 -0700
29741
29742     Add support for multiple serial ports on STM32L
29743     
29744     Signed-off-by: Keith Packard <keithp@keithp.com>
29745
29746 commit faf2bea4fdb3dca7fbed35423a4fe4459ee92ceb
29747 Author: Keith Packard <keithp@keithp.com>
29748 Date:   Mon Mar 19 11:25:40 2012 -0700
29749
29750     Save/restore PRIMASK register on Cortex-M3
29751     
29752     This preserves the interrupt-enabled bit across context switches
29753     
29754     Signed-off-by: Keith Packard <keithp@keithp.com>
29755
29756 commit 6a14bee42a8431c909bcd74b0acec57329bc0284
29757 Author: Keith Packard <keithp@keithp.com>
29758 Date:   Mon Mar 19 11:24:43 2012 -0700
29759
29760     Don't disable interrupts before saving interrupt flag on AVR
29761     
29762     This ignores the interrupt disabled state, so we'd always leave
29763     ao_yield with interrupts disabled.
29764     
29765     Signed-off-by: Keith Packard <keithp@keithp.com>
29766
29767 commit 7662a0096a860cddac413a310305fe842830c3b5
29768 Author: Keith Packard <keithp@keithp.com>
29769 Date:   Sun Mar 18 22:29:51 2012 -0700
29770
29771     Add .gitignore file to stm-bringup
29772     
29773     Ignore generated binaries
29774     
29775     Signed-off-by: Keith Packard <keithp@keithp.com>
29776
29777 commit 4be74ef0d13114707fd8217907a5ec457f886160
29778 Author: Keith Packard <keithp@keithp.com>
29779 Date:   Sun Mar 18 22:26:43 2012 -0700
29780
29781     Fix STM LED driver and blink LEDs on discovery board
29782     
29783     This adds a task to blink the LEDs, after first fixing up the LED
29784     output code to enable the GPIO and talk to the right pins for the
29785     discovery board.
29786     
29787     Signed-off-by: Keith Packard <keithp@keithp.com>
29788
29789 commit ab6ea9043b592c25948a70b6204d613756a9a250
29790 Author: Keith Packard <keithp@keithp.com>
29791 Date:   Sun Mar 18 22:10:02 2012 -0700
29792
29793     Basic OS running on STM32L
29794     
29795     This gets stm-demo working
29796     
29797     Signed-off-by: Keith Packard <keithp@keithp.com>
29798
29799 commit 0cc01d378ae96325e429ad608b953661582939b0
29800 Author: Keith Packard <keithp@keithp.com>
29801 Date:   Sun Mar 18 22:09:20 2012 -0700
29802
29803     Add AO_PANIC_STACK
29804     
29805     Provide a panic code for stack overflow.
29806     
29807     Signed-off-by: Keith Packard <keithp@keithp.com>
29808
29809 commit 1ca46760cf903860dccb4864578558a1abb6e0fa
29810 Author: Keith Packard <keithp@keithp.com>
29811 Date:   Sun Mar 18 22:08:48 2012 -0700
29812
29813     When debugging, send ao_panic message to ao_debug_out
29814     
29815     Use the low-level debug hooks to get the panic state sent to the
29816     serial port.
29817     
29818     Signed-off-by: Keith Packard <keithp@keithp.com>
29819
29820 commit 4bfce11873f34af9621c60f83a8355f85769f6d3
29821 Author: Keith Packard <keithp@keithp.com>
29822 Date:   Sun Mar 18 22:07:07 2012 -0700
29823
29824     When debugging, send pre-init output to ao_debug_out
29825     
29826     Before tasking is running, send output to ao_debug_out to help debug
29827     system initialization.
29828     
29829     Signed-off-by: Keith Packard <keithp@keithp.com>
29830
29831 commit 93481fd3d9305a107b88c8a64de4194a6d94dc0e
29832 Author: Keith Packard <keithp@keithp.com>
29833 Date:   Sun Mar 18 22:05:46 2012 -0700
29834
29835     Incorrect type in ao_task_info for wchan
29836     
29837     Would truncate 32-bit pointers on arm.
29838     
29839     Signed-off-by: Keith Packard <keithp@keithp.com>
29840
29841 commit 8ba5344514f8ed51f6fd69ca09f6c7035c4fd0da
29842 Author: Keith Packard <keithp@keithp.com>
29843 Date:   Sat Mar 17 00:06:59 2012 -0700
29844
29845     Add stm-demo program
29846     
29847     This runs AltOS and talks over the serial port.
29848     
29849     Signed-off-by: Keith Packard <keithp@keithp.com>
29850
29851 commit 1d1b24bb20dec09145fbaa6fe6897898d47dd16e
29852 Author: Keith Packard <keithp@keithp.com>
29853 Date:   Fri Mar 16 20:24:29 2012 -0700
29854
29855     These were moved to the src/stm directory
29856     
29857     Signed-off-by: Keith Packard <keithp@keithp.com>
29858
29859 commit b8100ea5042013bb4eed67907b4e9d4e5c196df2
29860 Author: Keith Packard <keithp@keithp.com>
29861 Date:   Fri Mar 16 20:23:31 2012 -0700
29862
29863     Add stm bringup timers and move most of the setup code to the stm dir
29864     
29865     Signed-off-by: Keith Packard <keithp@keithp.com>
29866
29867 commit 9279fd42793123784ce83ca151df6f4630487722
29868 Author: Keith Packard <keithp@keithp.com>
29869 Date:   Fri Mar 16 20:21:09 2012 -0700
29870
29871     Add STM platform and stm-bringup demo program
29872     
29873     The stm-bringup doesn't run altos, it just initializes the device and
29874     writes stuff over a serial port. Works on the STM32L Discovery board
29875     at least, should do stuff on other boards too.
29876     
29877     Signed-off-by: Keith Packard <keithp@keithp.com>
29878
29879 commit e2f13aa43ba79becbff6c9bfc18c665a58d96185
29880 Author: Keith Packard <keithp@keithp.com>
29881 Date:   Fri Mar 16 14:25:37 2012 -0700
29882
29883     Add example STM32L programs
29884     
29885     This loads to flash and sends data over the serial link.
29886     
29887     Signed-off-by: Keith Packard <keithp@keithp.com>
29888
29889 commit 3c7d1f6cfffb43299041f2850a48177f4e9b83a5
29890 Author: Keith Packard <keithp@keithp.com>
29891 Date:   Wed Feb 22 23:26:03 2012 +1300
29892
29893     'stdin' is a special name in some compiler environments, don't use it.
29894     
29895     Switch to 'in' in the prototype for altos_serial_set_stdin.
29896     
29897     Signed-off-by: Keith Packard <keithp@keithp.com>
29898
29899 commit bdfcc9112c41c494de23594963980a730b625cc4
29900 Author: Keith Packard <keithp@keithp.com>
29901 Date:   Wed Mar 28 00:49:29 2012 -0700
29902
29903     altosui: Disable launch controller button
29904     
29905     The launch controller should just be a separate program.
29906     
29907     Signed-off-by: Keith Packard <keithp@keithp.com>
29908
29909 commit cf1e95810559584705d0b8a787375938c68e07c6
29910 Author: Keith Packard <keithp@keithp.com>
29911 Date:   Wed Mar 28 00:37:52 2012 -0700
29912
29913     altosui: Add Configure Ground Station dialog (trac #29)
29914     
29915     Allows the user to configure the teledongle frequency without opening
29916     up the flight monitor window, and also shows the teledongle fixed
29917     values like radio calibration, serial number and software version.
29918     
29919     Signed-off-by: Keith Packard <keithp@keithp.com>
29920
29921 commit d60862fce6ac27a97ad6337eea32a4b48645d158
29922 Author: Keith Packard <keithp@keithp.com>
29923 Date:   Wed Mar 28 00:38:37 2012 -0700
29924
29925     altos: Make sure config values are loaded in 'c s' command
29926     
29927     ao_config_get may not have been called when ao_config_show is invoked
29928     by the user, so make sure the config values are loaded before showing
29929     uninitialized data.
29930     
29931     Signed-off-by: Keith Packard <keithp@keithp.com>
29932
29933 commit b98f75dbcccd40c8cbf32c3bfd21bd6f5648b861
29934 Author: Keith Packard <keithp@keithp.com>
29935 Date:   Tue Mar 27 22:54:17 2012 -0700
29936
29937     altosui: Sanity check values from device configuration
29938     
29939     If someone has down-graded and re up-graded the firmware, the config
29940     entries may be garbage. Sanity check them to avoid crashing the UI.
29941     
29942     Signed-off-by: Keith Packard <keithp@keithp.com>
29943
29944 commit b6c7ae2c1f8cba7351cd139c49322280d9d3af47
29945 Author: Keith Packard <keithp@keithp.com>
29946 Date:   Tue Mar 27 22:53:08 2012 -0700
29947
29948     altos: Reset config version if it's too large as well
29949     
29950     Any future config values will get trashed if we down grade the
29951     firmware, so we must reset the firmware version whenever it gets
29952     written.
29953     
29954     Signed-off-by: Keith Packard <keithp@keithp.com>
29955
29956 commit 3f0379db7067eaf104892a82b9c49142087adece
29957 Author: Keith Packard <keithp@keithp.com>
29958 Date:   Tue Mar 27 22:02:13 2012 -0700
29959
29960     altosui: Make 'monitor idle' work with older TeleMetrum firmware (trac #28)
29961     
29962     Older TM firmware did not have the 'done' line at the end of the GPS
29963     report, rather it would just stop after showing the Flags value. Check
29964     the TM version and stop looking for GPS data when the Flags line appears.
29965     
29966     Signed-off-by: Keith Packard <keithp@keithp.com>
29967
29968 commit 7a9baabaf33db5e30eb4ef8f923a4fd96fd28fb4
29969 Author: Keith Packard <keithp@keithp.com>
29970 Date:   Tue Mar 27 21:49:58 2012 -0700
29971
29972     altosui: Mark data 'Age' in monitor idle UI too
29973     
29974     Just like with the flight monitor UI, it's nice to know how old the
29975     data in the monitor idle UI is, in case the data link to the TM isn't reliable.
29976     
29977     Signed-off-by: Keith Packard <keithp@keithp.com>
29978
29979 commit 2f19f9a0eaba22789fdc07a52849e8aaf6fe4695
29980 Author: Keith Packard <keithp@keithp.com>
29981 Date:   Tue Mar 27 21:48:43 2012 -0700
29982
29983     altosui: Catch attempt to set radio frequency to 0.0 -- use default
29984     
29985     Monitor idle was setting the frequency to 0, which takes a while with
29986     the new native radio frequency setting code. Don't do that, instead
29987     pull out the preferred frequency for that, as is done in other places
29988     where a frequency of 0.0 is used.
29989     
29990     Signed-off-by: Keith Packard <keithp@keithp.com>
29991
29992 commit 170510bb183715e9ba580b180f20657d6602644e
29993 Author: Keith Packard <keithp@keithp.com>
29994 Date:   Tue Mar 27 21:13:31 2012 -0700
29995
29996     altosui: Find actual landing time when computing stats (trac #23)
29997     
29998     Look for the last time the height went from >10m to <2m from the
29999     nominal landing altitude and use that as the landing time when
30000     computing things like main descent speed, time under main etc.
30001     
30002     Signed-off-by: Keith Packard <keithp@keithp.com>
30003
30004 commit 0952224c36eba25db34bd147d2d579c66b15bbf8
30005 Author: Keith Packard <keithp@keithp.com>
30006 Date:   Tue Mar 27 18:24:51 2012 -0700
30007
30008     altosui: Change flight data saving UI to separate download/delete selections
30009     
30010     First pop up a dialog to select flights for download. Download
30011     them. Then, after that, pop up a *new* dialog to select flights for
30012     delete. Offer to delete all of the downloaded flights by default. Then
30013     delete the flights.
30014     
30015     Signed-off-by: Keith Packard <keithp@keithp.com>
30016
30017 commit 7dd1d62676c1e605fe69a4c0acfe7638c6b79aa5
30018 Author: Keith Packard <keithp@keithp.com>
30019 Date:   Tue Mar 27 18:19:05 2012 -0700
30020
30021     altos: Optimize ao_freq_to_set a bit
30022     
30023     Reduces size from 327 bytes to 287 bytes
30024     
30025     Signed-off-by: Keith Packard <keithp@keithp.com>
30026
30027 commit d77a4ea206d627635159f35c76c744687d4e633b
30028 Author: Keith Packard <keithp@keithp.com>
30029 Date:   Tue Mar 27 11:58:39 2012 -0700
30030
30031     altosui: Show only supported telemetry version
30032     
30033     Make it clear in the UI which telemetry versions are supported,
30034     providing the combobox only for new firmware which supports all versions.
30035     
30036     Signed-off-by: Keith Packard <keithp@keithp.com>
30037
30038 commit d8ebb83e64d66fa159e75aa560d39d80bb6d9d04
30039 Author: Keith Packard <keithp@keithp.com>
30040 Date:   Tue Mar 27 10:38:32 2012 -0700
30041
30042     altosui: Configure radio with new direct frequency setting
30043     
30044     Instead of computing the radio setting in altosui, let the radio do it directly.
30045     
30046     Signed-off-by: Keith Packard <keithp@keithp.com>
30047
30048 commit c1d12a117b36de7fe8dd992959b890bfd1163e81
30049 Author: Keith Packard <keithp@keithp.com>
30050 Date:   Mon Mar 26 23:35:35 2012 -0700
30051
30052     Do radio settings solely by frequency
30053     
30054     Compute the radio setting needed based on the calibration value
30055     provided and the requested frequency.
30056     
30057     Signed-off-by: Keith Packard <keithp@keithp.com>
30058
30059 commit c2550d72aee371676d2f09316051567681e53a7c
30060 Author: Keith Packard <keithp@keithp.com>
30061 Date:   Mon Mar 26 22:05:04 2012 -0700
30062
30063     altosui: Use ConcurrentHashMap for maps
30064     
30065     This data structure is accessed by multiple threads, so it needs to be
30066     re-entrant.
30067     
30068     Signed-off-by: Keith Packard <keithp@keithp.com>
30069
30070 commit 8610fdae8f47e1e8b6e8525227cc912664ecfafd
30071 Author: Keith Packard <keithp@keithp.com>
30072 Date:   Mon Mar 26 22:04:13 2012 -0700
30073
30074     altosui: Show time since last packet in flight status window
30075     
30076     Makes it easy to see when the UI is wedged, and when telemetry data
30077     are being successfully received.
30078     
30079     Signed-off-by: Keith Packard <keithp@keithp.com>
30080
30081 commit 392a3107b9e9cc8c1ea51df6ff5ec54817adbc65
30082 Author: Keith Packard <keithp@keithp.com>
30083 Date:   Mon Mar 26 20:11:34 2012 -0700
30084
30085     altosui: Restructure telemetry classes to be more sane
30086     
30087      * Make AltosTelemetryRecord be a class, rather than an interface.
30088     
30089      * Inherit from this for AltosTelemetryRecordLegacy and
30090        AltosTelemetryRecordRaw.
30091     
30092      * Remove bogus AltosTelemetryRecordGeneral class.
30093     
30094     Signed-off-by: Keith Packard <keithp@keithp.com>
30095
30096 commit 77639dae0fb9975219c2e211ea6dd6c7965eeea2
30097 Author: Keith Packard <keithp@keithp.com>
30098 Date:   Tue Sep 27 23:50:43 2011 -0700
30099
30100     altos: Require callsign match in packet code
30101     
30102     Ignore packets with mismatching callsigns to avoid accidental
30103     connections between devices controlled by different stations.
30104     
30105     As a special case, if the device is configured with the default
30106     callsign (N0CALL), then let anyone connect. This allows configuration
30107     of new devices without needing to change the ground station callsign.
30108     
30109     Signed-off-by: Keith Packard <keithp@keithp.com>
30110
30111 commit 1b4a4c7b6a0c3f93267f33482f490e7aa25c2158
30112 Author: Keith Packard <keithp@keithp.com>
30113 Date:   Fri Jan 13 10:40:30 2012 -0800
30114
30115     doc: Add companion SPI message protocol doc
30116     
30117     Signed-off-by: Keith Packard <keithp@keithp.com>
30118
30119 commit 5d42ded7ebdb0c134c8dac61f41525c37d81ae61
30120 Author: Bdale Garbee <bdale@gag.com>
30121 Date:   Fri Jan 13 10:44:23 2012 -0700
30122
30123     update turnon_telemetrum to v1.2, add more turnon scripts
30124
30125 commit f450f8bc70f857053b26c4379f54a318062e89a1
30126 Author: Keith Packard <keithp@keithp.com>
30127 Date:   Tue Jan 3 22:27:59 2012 -0800
30128
30129     altos: Set correct registers for serial0 baud
30130     
30131     oops. not going to work very well setting serial 1.
30132     
30133     Signed-off-by: Keith Packard <keithp@keithp.com>
30134
30135 commit c6821ae734a7efaf2e069f6c5edf9605a9dbe125
30136 Author: Keith Packard <keithp@keithp.com>
30137 Date:   Tue Jan 3 20:46:25 2012 -0800
30138
30139     altos: flush stdout when fifo from arduino serial port is empty
30140     
30141     This avoids leaving bytes pending inside altos
30142     
30143     Signed-off-by: Keith Packard <keithp@keithp.com>
30144
30145 commit 65b9b5d0d91fef2c7452dc77017f31f176672304
30146 Author: Keith Packard <keithp@keithp.com>
30147 Date:   Tue Jan 3 20:42:41 2012 -0800
30148
30149     Build teleshield by default
30150
30151 commit 7a42f2e0f145d2d520aed8e241fa39f7cb62b19f
30152 Author: Keith Packard <keithp@keithp.com>
30153 Date:   Tue Jan 3 20:41:15 2012 -0800
30154
30155     altos: Add support for UART0 in async mode
30156     
30157     And copy bytes from it to stdout.
30158     
30159     Signed-off-by: Keith Packard <keithp@keithp.com>
30160
30161 commit 085625ff3992454b59583d95a3c415597c51f754
30162 Author: Keith Packard <keithp@keithp.com>
30163 Date:   Fri Dec 30 15:42:28 2011 -0800
30164
30165     altos: More _asm -> __asm changes
30166     
30167     Missed a few last time
30168     
30169     Signed-off-by: Keith Packard <keithp@keithp.com>
30170
30171 commit 614ab6a991258a5caad0ca12ae35d0288a5b7503
30172 Author: Keith Packard <keithp@keithp.com>
30173 Date:   Fri Dec 30 15:38:32 2011 -0800
30174
30175     altos: Clean up for SDCC 3.1 - more keywords
30176     
30177     _asm -> __asm
30178     sbit -> __sbit
30179     remove variables named 'data'
30180     
30181     Signed-off-by: Keith Packard <keithp@keithp.com>
30182
30183 commit bbb94a6a25a106316414a9a281e924f6c56e9f38
30184 Author: Keith Packard <keithp@keithp.com>
30185 Date:   Fri Dec 30 12:27:35 2011 -0800
30186
30187     altos: SDCC 3.1 wants __at instead of at
30188     
30189     Older SDCC would accept __at, so just replace all occurances unconditionally.
30190     
30191     Signed-off-by: Keith Packard <keithp@keithp.com>
30192
30193 commit 4783ac9653fd4f816f839452795e0d2e52129d5b
30194 Author: Keith Packard <keithp@keithp.com>
30195 Date:   Tue Dec 27 15:47:54 2011 -0800
30196
30197     altos: Switch teleshield to use radio slave mode
30198     
30199     And bring it up at startup time by default
30200     
30201     Signed-off-by: Keith Packard <keithp@keithp.com>
30202
30203 commit 791c137728dd3398bd7275be13cc9e6be96d7af4
30204 Author: Keith Packard <keithp@keithp.com>
30205 Date:   Tue Dec 27 15:37:28 2011 -0800
30206
30207     altos: Add teleshield directory and bring-up code
30208     
30209     This is cobbled together from various existing bits, but should at
30210     least provide some ability to test a teleshield board.
30211     
30212     Signed-off-by: Keith Packard <keithp@keithp.com>
30213
30214 commit eff8611e3eb19853b06acfcd7e978c9046cd5f78
30215 Author: Keith Packard <keithp@keithp.com>
30216 Date:   Sat Dec 17 17:05:06 2011 -0800
30217
30218     altos: Create TeleMetrum v1.2 directory
30219     
30220     The hardware is software-compatible with v1.1, but it's nice to have
30221     the right version number in all of the files.
30222     
30223     Signed-off-by: Keith Packard <keithp@keithp.com>
30224
30225 commit 6baf6f41040f7b074d8cc84ef75e254c5d2b466b
30226 Author: Keith Packard <keithp@keithp.com>
30227 Date:   Sat Dec 17 16:58:04 2011 -0800
30228
30229     altosui: googleearth doesn't accept spaces between coordinates anymore
30230     
30231     it got pickier for some reason; let's not put spaces in now.
30232     
30233     Signed-off-by: Keith Packard <keithp@keithp.com>
30234
30235 commit dbf7c0c59854e040b65f068069d80716f02fc1bc
30236 Author: Keith Packard <keithp@keithp.com>
30237 Date:   Sun Nov 13 23:03:22 2011 -0800
30238
30239     altos: Fix pad orientation for pre-1.1 boards
30240     
30241     They use a different code path for accel as they don't have the
30242     VCC compensation code in place.
30243     
30244     Signed-off-by: Keith Packard <keithp@keithp.com>
30245
30246 commit c1e293ff4953b51c19af8b52f2999419ea84e7e5
30247 Author: Keith Packard <keithp@keithp.com>
30248 Date:   Sat Nov 12 19:19:40 2011 -0800
30249
30250     altos: Add startup and config (view only) pages to TT
30251     
30252     The config page needs a pile of work before it's useful.
30253     
30254     Signed-off-by: Keith Packard <keithp@keithp.com>
30255
30256 commit 02b4e52a5349217df43105eaa1fff6bfc7dac4cc
30257 Author: Keith Packard <keithp@keithp.com>
30258 Date:   Sat Nov 12 19:18:53 2011 -0800
30259
30260     altos: Enable packet master and debug in TT
30261     
30262     The code was already getting linked in, so we might as well use it.
30263     
30264     Signed-off-by: Keith Packard <keithp@keithp.com>
30265
30266 commit e7044fd95472449e2fb860cef902fa458b91ccac
30267 Author: Keith Packard <keithp@keithp.com>
30268 Date:   Sat Nov 12 19:18:23 2011 -0800
30269
30270     altos: Fix sdcdb settings for telemetrum v1.0
30271     
30272     Signed-off-by: Keith Packard <keithp@keithp.com>
30273
30274 commit 7f9e76e0d3492dcc8bf4b5b1f07c3c727cfdc0ef
30275 Author: Keith Packard <keithp@keithp.com>
30276 Date:   Sat Nov 12 18:54:14 2011 -0800
30277
30278     altos: Trim skytraq NMEA messages. Shrink NMEA header matching code
30279     
30280     Tell the skytraq to not bother sending a bunch of the NMEA messages
30281     that we don't parse.
30282     
30283     Explicitly look for 'G' follows by 'P' instead of having some general
30284     header matching code.
30285     
30286     Signed-off-by: Keith Packard <keithp@keithp.com>
30287
30288 commit d3dcb9451f40506abced72783966104645a73bc7
30289 Author: Keith Packard <keithp@keithp.com>
30290 Date:   Sat Nov 12 18:52:02 2011 -0800
30291
30292     altos: Allow TT/TBT reports to escape landed state
30293     
30294     The TM altitude reporting code kept beeping out state and altitude
30295     forever, which isn't very useful on TBT or TT.
30296     
30297     Signed-off-by: Keith Packard <keithp@keithp.com>
30298
30299 commit 0f7d7a4fbede63b51208bf051e08aa73dfbf35a0
30300 Author: Keith Packard <keithp@keithp.com>
30301 Date:   Sat Nov 12 18:51:31 2011 -0800
30302
30303     altos: Remove LCD debugging code
30304     
30305     This isn't needed anymore.
30306     
30307     Signed-off-by: Keith Packard <keithp@keithp.com>
30308
30309 commit 430b439b9a5cc98b32273a233505de2c2f975c59
30310 Author: Keith Packard <keithp@keithp.com>
30311 Date:   Sat Nov 12 18:51:03 2011 -0800
30312
30313     altosui: Add ao_lcd_cursor_on/off
30314     
30315     This shows or hides a blinking cursor on the LCD.
30316     
30317     Signed-off-by: Keith Packard <keithp@keithp.com>
30318
30319 commit 75a8490a7bee2a2c7afd559b13f1d9c40c2aa08f
30320 Author: Keith Packard <keithp@keithp.com>
30321 Date:   Sat Nov 12 18:49:17 2011 -0800
30322
30323     altos: Add configurable set of channels for TT
30324     
30325     This adds the channel list for TT, which will be configured by
30326     AltosUI.
30327     
30328     Signed-off-by: Keith Packard <keithp@keithp.com>
30329
30330 commit 2ba946fea29ff134ffaeaea9d7932f4bd4e953aa
30331 Author: Keith Packard <keithp@keithp.com>
30332 Date:   Sat Nov 12 18:48:07 2011 -0800
30333
30334     altos: Export 'ao_cmd_is_white' for use by other code
30335     
30336     This function tests the current input character.
30337     
30338     Signed-off-by: Keith Packard <keithp@keithp.com>
30339
30340 commit 20282ef00afe70e3f3193f6f0200254cb2c33e93
30341 Author: Keith Packard <keithp@keithp.com>
30342 Date:   Sat Nov 12 18:47:08 2011 -0800
30343
30344     altos: Set default flight log max to 127k on TM v0.1
30345     
30346     The flash part on v0.1 boards is only 128kB.
30347     
30348     Signed-off-by: Keith Packard <keithp@keithp.com>
30349
30350 commit 5972c642f0de0789e90268bfa19ef8b51c06eebc
30351 Author: Keith Packard <keithp@keithp.com>
30352 Date:   Sat Nov 12 18:44:36 2011 -0800
30353
30354     altos: Handle internal and external telem monitoring requests
30355     
30356     Record separate internal vs external monitoring state, allowing
30357     both to happen at the same time, and when either is turned off, the
30358     other keeps working.
30359     
30360     This also adds disable/enable so that other radio users can
30361     temporarily take over the radio; monitoring will resume when the other
30362     radio user is finished.
30363     
30364     Signed-off-by: Keith Packard <keithp@keithp.com>
30365
30366 commit ef7f86453d686a49882e8c1b88a59228c4c631a9
30367 Author: Keith Packard <keithp@keithp.com>
30368 Date:   Sat Nov 12 18:37:53 2011 -0800
30369
30370     altos: Check pdata+xdata memory usage during build
30371     
30372     The sdcc linker doesn't check the sum of pdata+xdata memory usage, it
30373     only ensures that xdata itself is small enough. This doesn't keep
30374     xdata below the end of usable ram on the cc1111 though (0xfe000).
30375     
30376     Fix up the check-stack program to also make sure all of xdata fits in
30377     available memory.
30378     
30379     Signed-off-by: Keith Packard <keithp@keithp.com>
30380
30381 commit 2bce71eba9f44b6fcf64e307c8174824c3a0fb57
30382 Author: Keith Packard <keithp@keithp.com>
30383 Date:   Sat Nov 12 18:32:49 2011 -0800
30384
30385     altos: Set SPI fill value each time it is used.
30386     
30387     This ensures that the final MOSI pin value will be high after a
30388     receive is finished.
30389     
30390     Signed-off-by: Keith Packard <keithp@keithp.com>
30391
30392 commit 0a705b62829d492e3a48c81077907cee61afb860
30393 Author: Keith Packard <keithp@keithp.com>
30394 Date:   Sat Nov 12 18:31:46 2011 -0800
30395
30396     altos: Initialize DMA config address at boot time
30397     
30398     Instead of resetting these each time a transfer is started, just set
30399     them once at boot time.
30400     
30401     Signed-off-by: Keith Packard <keithp@keithp.com>
30402
30403 commit 4de8bf6da4d725bb0514d032b0708c5cf420e8fa
30404 Author: Keith Packard <keithp@keithp.com>
30405 Date:   Sat Nov 12 18:30:56 2011 -0800
30406
30407     altos: debounce buttons
30408     
30409     Provide API to clear out any button events that happen during startup,
30410     and then discard button events 'too close' together.
30411     
30412     Signed-off-by: Keith Packard <keithp@keithp.com>
30413
30414 commit ad41b5820c2e252627959e4627473f07784be23e
30415 Author: Keith Packard <keithp@keithp.com>
30416 Date:   Sat Nov 12 18:29:38 2011 -0800
30417
30418     altos: Build TeleTerra v0.2 by default
30419     
30420     Signed-off-by: Keith Packard <keithp@keithp.com>
30421
30422 commit f6db11c3c87725c809c518f5f19b07325faf9c84
30423 Author: Keith Packard <keithp@keithp.com>
30424 Date:   Sat Nov 12 18:10:18 2011 -0800
30425
30426     altosui: Deal with serial port exceptions a bit better
30427     
30428     This catches a few exceptions and tries to make sure the serial port
30429     is closed afterwards.
30430     
30431     Signed-off-by: Keith Packard <keithp@keithp.com>
30432
30433 commit b132eefc5f63412bb4a98a4bb72b9055e40d5d42
30434 Author: Keith Packard <keithp@keithp.com>
30435 Date:   Fri Nov 11 22:30:17 2011 -0800
30436
30437     altos: Make ao_xmem funcs require __xdata void * instead of casting
30438     
30439     Having an explicit cast in the ao_xmem wrapper macros caused the
30440     compiler to generate garbage values for pdata addresses, making the
30441     upper byte 0x00 instead of the required 0xf0. Removing the
30442     casts from the ao_xmem macros exposed this problem, so a new
30443     PDATA_TO_XDATA macros was added, along with a CODE_TO_XDATA macro
30444     which serve to cast pointers, with suitable address modifications, so
30445     that things work again.
30446     
30447     Signed-off-by: Keith Packard <keithp@keithp.com>
30448
30449 commit 7ecde50fbebe68a2e2200a2f8d081fd37074f840
30450 Author: Keith Packard <keithp@keithp.com>
30451 Date:   Fri Nov 11 22:24:22 2011 -0800
30452
30453     altosui: Make UI Look&Feel configurable
30454     
30455     Saves the preferred style and uses that for all current and new windows.
30456     
30457     Signed-off-by: Keith Packard <keithp@keithp.com>
30458
30459 commit 713bd503902526c17a7657c18be947ef8fa6a47a
30460 Author: Keith Packard <keithp@keithp.com>
30461 Date:   Fri Nov 11 17:18:08 2011 -0800
30462
30463     altos: Shrink Skytraq NMEA parsing - common nmea_finish code
30464     
30465     This shares the checksum testing across all three lines, saving
30466     another 103 bytes.
30467     
30468     Signed-off-by: Keith Packard <keithp@keithp.com>
30469
30470 commit d3e8275572550b700563b3bde73cd7a43b608f17
30471 Author: Keith Packard <keithp@keithp.com>
30472 Date:   Fri Nov 11 17:11:39 2011 -0800
30473
30474     altos: shrink Skytraq NMEA parsing more
30475     
30476     This cuts another 78 bytes
30477     
30478     Signed-off-by: Keith Packard <keithp@keithp.com>
30479
30480 commit 8266d8d39c0103e68ef3e476b9639574d9a48771
30481 Author: Keith Packard <keithp@keithp.com>
30482 Date:   Fri Nov 11 16:54:18 2011 -0800
30483
30484     altos: Shrink code size of Skytraq NMEA parser
30485     
30486     Just mess around with the code to make it smaller. These patches save
30487     173 bytes.
30488     
30489     Signed-off-by: Keith Packard <keithp@keithp.com>
30490
30491 commit df08b2f6de464f4546c1809b931eb4910d88b558
30492 Author: Keith Packard <keithp@keithp.com>
30493 Date:   Thu Oct 27 01:01:11 2011 -0700
30494
30495     altos: A bunch of missing .gitignore files (mostly)
30496     
30497     Signed-off-by: Keith Packard <keithp@keithp.com>
30498
30499 commit a7b285ec0945830b8b31877115157ddd12d6a9fb
30500 Author: Keith Packard <keithp@keithp.com>
30501 Date:   Thu Oct 27 00:57:45 2011 -0700
30502
30503     altos: Add i2c driver for avr chip
30504     
30505     Signed-off-by: Keith Packard <keithp@keithp.com>
30506
30507 commit 0669f0d74fc24c4f1925a45a9975b7a49a65b692
30508 Author: Keith Packard <keithp@keithp.com>
30509 Date:   Thu Oct 27 00:49:23 2011 -0700
30510
30511     altosui: Only update GPS data when new GPS information arrives
30512     
30513     Track which telemetry packets are actually producing new GPS
30514     information and only update the GPS average position and count of
30515     stable GPS reports with new GPS info, instead of on every telemetry packet.
30516     
30517     Signed-off-by: Keith Packard <keithp@keithp.com>
30518
30519 commit c7e14a2750d437e8b77d68a944a0711e7a0c882b
30520 Author: Keith Packard <keithp@keithp.com>
30521 Date:   Thu Oct 27 00:35:35 2011 -0700
30522
30523     altos: Fix distance/bearing computations. Deal with large values
30524     
30525     Lots of little math errors dealing with large distances; easily tested
30526     as the GPS currently reports lat 24 lon 121, which is a long ways from
30527     Portland.
30528     
30529     Now reports distances in km when large, otherwise in m.
30530     
30531     Signed-off-by: Keith Packard <keithp@keithp.com>
30532
30533 commit da330c5975b9f565d059ef8084dfdacc20f34246
30534 Author: Keith Packard <keithp@keithp.com>
30535 Date:   Wed Oct 26 22:49:11 2011 -0700
30536
30537     altos: Bring up basic TeleTerra v0.2 UI
30538     
30539     Lots of fun stuff here -- multiple panes of information.
30540     
30541     Signed-off-by: Keith Packard <keithp@keithp.com>
30542
30543 commit 8e4cceedb5b758faae684978299e667c4bb06f4d
30544 Author: Keith Packard <keithp@keithp.com>
30545 Date:   Sun Oct 23 15:24:02 2011 -0700
30546
30547     altos: Flip button IRQ initialization around
30548     
30549     This matches what the docs suggest
30550     
30551     Signed-off-by: Keith Packard <keithp@keithp.com>
30552
30553 commit 90e738a3379d258a48a7c92f6708040fc39c373a
30554 Author: Keith Packard <keithp@keithp.com>
30555 Date:   Sun Oct 23 15:20:50 2011 -0700
30556
30557     altos: Fix battery voltage computation.
30558     
30559     Full scale is 4.95V, not 3.333V.
30560     
30561     Signed-off-by: Keith Packard <keithp@keithp.com>
30562
30563 commit f70553106707e3496d07eecb83f0c0a1acad7f77
30564 Author: Keith Packard <keithp@keithp.com>
30565 Date:   Sun Oct 23 14:51:32 2011 -0700
30566
30567     altos: Add battery voltage sampling driver
30568     
30569     For devices without a full ADC compliment, this just samples the
30570     battery pin and converts to mV.
30571     
30572     Signed-off-by: Keith Packard <keithp@keithp.com>
30573
30574 commit 7e7a10c06a0486e9f869e361e46f2c98db9897b0
30575 Author: Keith Packard <keithp@keithp.com>
30576 Date:   Sun Oct 23 14:08:59 2011 -0700
30577
30578     altos: Add button driver and sample user
30579     
30580     Hook up the teleterra buttons and have them beep
30581     
30582     Signed-off-by: Keith Packard <keithp@keithp.com>
30583
30584 commit 8e2736226fcd7c1ab1ba93a5ebac9b285ebf4733
30585 Author: Keith Packard <keithp@keithp.com>
30586 Date:   Sun Oct 23 12:55:35 2011 -0700
30587
30588     src/teleterra-v0.2: Initialize more hardware
30589     
30590     Initialize the flash storage and flight state reporting beeper.
30591     
30592     Signed-off-by: Keith Packard <keithp@keithp.com>
30593
30594 commit 07d4477b2e8477e96a2f155a25f95e14a9a47efa
30595 Author: Keith Packard <keithp@keithp.com>
30596 Date:   Sun Oct 23 12:51:05 2011 -0700
30597
30598     altos/teleterra_0_2: Initialize LCD driver
30599     
30600     Initialize the LCD for testing.
30601     
30602     Signed-off-by: Keith Packard <keithp@keithp.com>
30603
30604 commit 85b259c5bba7edbd2a79471bb1104bcf3904d536
30605 Author: Keith Packard <keithp@keithp.com>
30606 Date:   Fri Oct 21 14:58:26 2011 -0700
30607
30608     src/teleballoon-v1.1: Use Tm style initial state stuff
30609     
30610     Come up in pad mode unless someone talks to us while in idle mode.
30611     
30612     Signed-off-by: Keith Packard <keithp@keithp.com>
30613
30614 commit eb61f7aa2c8b692bd892b85e782f249187c80e5c
30615 Author: Keith Packard <keithp@keithp.com>
30616 Date:   Fri Oct 21 11:30:43 2011 -0700
30617
30618     altos: Add teleballoon-v1.1 directory
30619     
30620     This is an alternate firmware load for telemetrum v1.1.
30621     
30622     Signed-off-by: Keith Packard <keithp@keithp.com>
30623
30624 commit a10aa835a06b71e2cefeb6b10daaf8cc394603b6
30625 Author: Keith Packard <keithp@keithp.com>
30626 Date:   Sat Oct 15 22:54:40 2011 -0700
30627
30628     altos: Add LEGACY_MONITOR defines to more programs
30629     
30630     Make all monitoring programs define whether they want all of the old
30631     telemetry formats too.
30632     
30633     Signed-off-by: Keith Packard <keithp@keithp.com>
30634
30635 commit aef732fc9cdf527a18f2959d6fb7903e832209da
30636 Author: Keith Packard <keithp@keithp.com>
30637 Date:   Sat Oct 15 22:54:02 2011 -0700
30638
30639     ao-bringup: Make it build with source restructuring
30640     
30641     Source code all moved around, need to find the header files in new directories.x
30642     
30643     Signed-off-by: Keith Packard <keithp@keithp.com>
30644
30645 commit 0debe7ffc2aab2b4d08f42e488cb783ae91c36ab
30646 Author: Keith Packard <keithp@keithp.com>
30647 Date:   Tue Oct 11 23:30:53 2011 -0600
30648
30649     altos: Add TeleTerra v0.2 product
30650     
30651     This includes most of the necessary drivers.
30652     
30653     Signed-off-by: Keith Packard <keithp@keithp.com>
30654
30655 commit 65873a3ad1d8e8b5ec002be2576c6f496543306a
30656 Author: Keith Packard <keithp@keithp.com>
30657 Date:   Tue Oct 11 23:29:24 2011 -0600
30658
30659     altos: oops -- forgot to add the cc1111 string code
30660     
30661     This is required for all cc1111 builds now; it provides xdata string
30662     functions.
30663     
30664     Signed-off-by: Keith Packard <keithp@keithp.com>
30665
30666 commit badda0d910c56135401dce9adc9e6abebdba2ad7
30667 Author: Keith Packard <keithp@keithp.com>
30668 Date:   Tue Oct 11 23:28:02 2011 -0600
30669
30670     altos: Split out arch-specific bits of LCD driver
30671     
30672     The arch-specific section just puts a single nibble to the device.
30673     
30674     Signed-off-by: Keith Packard <keithp@keithp.com>
30675
30676 commit 47c2c0b79dc516d2566ae149605b7d70ef2dca98
30677 Author: Keith Packard <keithp@keithp.com>
30678 Date:   Tue Oct 11 20:58:04 2011 -0600
30679
30680     Bump to 1.0.9.3
30681     
30682     TeleScience and TelePyro now work.
30683     
30684     Signed-off-by: Keith Packard <keithp@keithp.com>
30685
30686 commit 652c024ed37bfed5de17f45c772796d5cbe4599f
30687 Author: Keith Packard <keithp@keithp.com>
30688 Date:   Tue Oct 11 18:48:55 2011 -0600
30689
30690     altos/telescience: Add more header dependencies
30691     
30692     Signed-off-by: Keith Packard <keithp@keithp.com>
30693
30694 commit 75960500d1f290fa9f82183431443ac122f12c19
30695 Author: Keith Packard <keithp@keithp.com>
30696 Date:   Tue Oct 11 18:48:11 2011 -0600
30697
30698     altos/avr: telescience doesn't have room for the flash write code
30699     
30700     This is useful for debugging the SPI and flash drivers, but not
30701     necessary in production code.
30702     
30703     Signed-off-by: Keith Packard <keithp@keithp.com>
30704
30705 commit b80f8ffb61566cbd134c399ea6ccf9290075490b
30706 Author: Keith Packard <keithp@keithp.com>
30707 Date:   Tue Oct 11 18:45:51 2011 -0600
30708
30709     altos/avr: Must leave space for init stack in ram
30710     
30711     The stack used during system initialization lives at the top of RAM,
30712     so leave some space for that.
30713     
30714     Signed-off-by: Keith Packard <keithp@keithp.com>
30715
30716 commit f1573a752425121d4c6a14285f1eb0fef3a8bea5
30717 Author: Keith Packard <keithp@keithp.com>
30718 Date:   Tue Oct 11 18:44:48 2011 -0600
30719
30720     altos/avr: Shrink default stack size to use less ram
30721     
30722     Not that we have any way of knowing how much stack we're using, but at
30723     least this seems to work.
30724     
30725     Signed-off-by: Keith Packard <keithp@keithp.com>
30726
30727 commit cb837d9bb9e6736fcdfca7692b1f9490ea090838
30728 Author: Keith Packard <keithp@keithp.com>
30729 Date:   Tue Oct 11 18:13:00 2011 -0600
30730
30731     altos: Allow ao_science_slave to not log data
30732     
30733     This is mostly for debugging with flash writes disabled.
30734     
30735     Signed-off-by: Keith Packard <keithp@keithp.com>
30736
30737 commit ac0bebc44bc657b303db4c41fa0c9624f3df9f4f
30738 Author: Keith Packard <keithp@keithp.com>
30739 Date:   Tue Oct 11 18:11:56 2011 -0600
30740
30741     altos: Make HAS_STORAGE_DEBUG define consistent
30742     
30743     This allows products to include the 'w' command for testing flash
30744     writing as needed.
30745     
30746     Signed-off-by: Keith Packard <keithp@keithp.com>
30747
30748 commit 3a28846d3ff8f82b0e97c211b9debf6d67ee5af5
30749 Author: Keith Packard <keithp@keithp.com>
30750 Date:   Tue Oct 11 18:10:45 2011 -0600
30751
30752     altos/avr: Clear SPI receive buffer before clocking new data in
30753     
30754     I don't know why this is necessary, but the receive buffer gets
30755     'extra' data added somehow.
30756     
30757     Signed-off-by: Keith Packard <keithp@keithp.com>
30758
30759 commit e60c470b426b7be08a33133e7d8c94201d7e96d4
30760 Author: Keith Packard <keithp@keithp.com>
30761 Date:   Tue Oct 11 17:44:40 2011 -0600
30762
30763     altos/avr: Pull-up on the SPI slave select pin
30764     
30765     This makes the board work even when disconnected from TeleMetrum.
30766     
30767     Signed-off-by: Keith Packard <keithp@keithp.com>
30768
30769 commit af4470f8025116179ef83726a8287e47c465907b
30770 Author: Keith Packard <keithp@keithp.com>
30771 Date:   Tue Oct 11 17:44:02 2011 -0600
30772
30773     altos/avr: Register stdio handler when using serial for stdin
30774     
30775     This code was left in a bit of a mess; just clean it up.
30776     
30777     Signed-off-by: Keith Packard <keithp@keithp.com>
30778
30779 commit 3bda859caf1501f8408703dca81412d70ba00e04
30780 Author: Keith Packard <keithp@keithp.com>
30781 Date:   Tue Oct 11 17:42:24 2011 -0600
30782
30783     altos/avr: telescience does not have a serial port
30784     
30785     The USART is used for SPI to talk to the flash part.
30786     
30787     Signed-off-by: Keith Packard <keithp@keithp.com>
30788
30789 commit 0a186e92c5773c5d908e9cee889d645a8172dcdc
30790 Author: Keith Packard <keithp@keithp.com>
30791 Date:   Tue Oct 11 17:39:35 2011 -0600
30792
30793     altos/avr: Make ao_arch_critical argument be a statement
30794     
30795     Wrap the argument to ao_arch_critical in do { } while (0); to make
30796     sure it gets correctly checked as a statement.
30797     
30798     Signed-off-by: Keith Packard <keithp@keithp.com>
30799
30800 commit f3453068b0feb640b9d11dbeb021c535ce8b4a31
30801 Author: Keith Packard <keithp@keithp.com>
30802 Date:   Tue Oct 11 17:39:06 2011 -0600
30803
30804     altos/avr: Print newline after dumping ADC values
30805     
30806     Cleans up the formating a bit.
30807     
30808     Signed-off-by: Keith Packard <keithp@keithp.com>
30809
30810 commit 06b044629951b06c7ec9b0105b89f51b2880ebd0
30811 Author: Keith Packard <keithp@keithp.com>
30812 Date:   Tue Oct 11 16:03:04 2011 -0600
30813
30814     altos/avr: SPI mutex is now held by the caller, not the SPI driver
30815     
30816     SPI transactions generally require a read followed by a write, with
30817     the chip select held the whole time. As a result, the SPI bus must be
30818     held across multiple transactions. To make this reliable, the caller
30819     must hold the SPI mutex, instead of the underlying SPI driver.
30820     
30821     Signed-off-by: Keith Packard <keithp@keithp.com>
30822
30823 commit 5d1361c95f94125cda244b4cc5e55c2fb77b680b
30824 Author: Keith Packard <keithp@keithp.com>
30825 Date:   Sun Oct 9 11:09:25 2011 -0600
30826
30827     altosui: Deal with missing state transitions in FlightStats window
30828     
30829     Any missing start/end times are pinned to the end of the flight.
30830     
30831     Signed-off-by: Keith Packard <keithp@keithp.com>
30832
30833 commit 5c82b07471f017171c58a6968adf79901f46a987
30834 Author: Keith Packard <keithp@keithp.com>
30835 Date:   Sun Oct 9 10:55:04 2011 -0600
30836
30837     altosui: Deal with telem data that goes backwards in time
30838     
30839     The new telemetry stuff can send packets with older timestamps, so
30840     sort telem packets read from disk to create an in-order record of the flight.
30841     
30842     Signed-off-by: Keith Packard <keithp@keithp.com>
30843
30844 commit 636b7b368e67346b0796cd84fbfd71e10966d61f
30845 Author: Keith Packard <keithp@keithp.com>
30846 Date:   Sun Oct 9 10:21:56 2011 -0600
30847
30848     altos: Respond to telemetry rate changes immediately
30849     
30850     Instead of waiting for the previous telemetry interval to expire,
30851     immediately switch to the new telemetry rate. This will provide
30852     more telemetry data early in the boost.
30853     
30854     Signed-off-by: Keith Packard <keithp@keithp.com>
30855
30856 commit ca036c5616c3e745c0b878ed90618d4ff710c0e5
30857 Author: Keith Packard <keithp@keithp.com>
30858 Date:   Sat Oct 8 22:19:52 2011 -0600
30859
30860     altos: Improve TM v1.0 apogee estimate
30861     
30862     v1.0 boards have noisy accelerometer data caused by interactions
30863     between RF transmission and the accelerometer measurements; this noise
30864     generates a negative bias in the accelerometer readings. The net
30865     effect is that the estimated speed is lower than the actual speed,
30866     causing early an apogee estimate.
30867     
30868     By increasing the sigma value for accelerometer data, the kalman
30869     filter 'trusts' the acceleration data less, putting more weight on the
30870     barometer data. This causes the estimated time of apogee to be closer
30871     to the correct value.
30872     
30873     This reduces the response to changes in acceleration.
30874     
30875     This new value is applied solely to TeleMetrum v1.0 boards. v1.1
30876     boards correct for this error, and hence can use the correct sigma
30877     value for the accelerometer.
30878     
30879     Signed-off-by: Keith Packard <keithp@keithp.com>
30880
30881 commit 26d7eb7149da8c797d7e704d75f73af2d2aa52c2
30882 Author: Keith Packard <keithp@keithp.com>
30883 Date:   Sat Oct 8 21:31:34 2011 -0600
30884
30885     Bump to 1.0.9.2
30886     
30887     (1.1 RC 2). Flown at Oktoberfest 2011 on 10/09/2011 (we hope)
30888     
30889     Signed-off-by: Keith Packard <keithp@keithp.com>
30890
30891 commit aad03e3cab4c328e53d3df47b6dac1d3f7a49229
30892 Author: Keith Packard <keithp@keithp.com>
30893 Date:   Sat Oct 8 16:07:57 2011 -0600
30894
30895     altosui: Remove igniter voltages from chart.
30896     
30897     These are just annoying; when we add the ability to turn stuff on/off
30898     on the fly, we can add them to the list of available items.
30899     
30900     Signed-off-by: Keith Packard <keithp@keithp.com>
30901
30902 commit 6a7363b3ba99310bd44c9b66f6f5159e46762be4
30903 Author: Keith Packard <keithp@keithp.com>
30904 Date:   Sat Oct 8 11:51:05 2011 -0600
30905
30906     altos: Ignore ejection bumps when doing boost re-detect
30907     
30908     An ejection charge looks an awful lot like an extra (really small)
30909     motor burn. Ignore them by averaging the acceleration during
30910     fast/coast using a /64 exponential decay filter.
30911     
30912     Signed-off-by: Keith Packard <keithp@keithp.com>
30913
30914 commit 82604193ed0c522c1fba0072b504fe88b027f1ee
30915 Author: Keith Packard <keithp@keithp.com>
30916 Date:   Sat Oct 8 11:50:24 2011 -0600
30917
30918     ao-telem: Add new program to convert telem data to ascii
30919     
30920     This reads telem files and displays them in ascii form. It's not done,
30921     and it's not documented, but it's a start.
30922     
30923     Signed-off-by: Keith Packard <keithp@keithp.com>
30924
30925 commit cbf5a649c8b7101bef9d57e48e42ac775e758c79
30926 Author: Keith Packard <keithp@keithp.com>
30927 Date:   Sat Oct 8 11:46:38 2011 -0600
30928
30929     altosui: Allow for multiple instances of each state in the graph
30930     
30931     With the new boost re-detect code, we can get multiple instances of
30932     boost/fast/coast, so make sure each are displayed in the graph.
30933     
30934     Signed-off-by: Keith Packard <keithp@keithp.com>
30935
30936 commit f9b0b7423c0640f729d61a91de6ff96ffe4b486e
30937 Author: Keith Packard <keithp@keithp.com>
30938 Date:   Sat Oct 8 11:43:37 2011 -0600
30939
30940     altosui: Max acceleration across boost instead of all ascent
30941     
30942     This ignores ejection bumps, making the max acceleration far more useful.
30943     
30944     Signed-off-by: Keith Packard <keithp@keithp.com>
30945
30946 commit 258b75498916183ed250d3abb3282fe3d843e7a1
30947 Author: Keith Packard <keithp@keithp.com>
30948 Date:   Fri Oct 7 09:53:09 2011 -0600
30949
30950     altos: Write xdata versions of memory functions
30951     
30952     These are significantly smaller than the general pointer versions from
30953     libc on the cc1111.
30954     
30955     Signed-off-by: Keith Packard <keithp@keithp.com>
30956     
30957     Conflicts:
30958     
30959         src/Makefile.proto
30960         src/cc1111/ao_adc.c
30961         src/cc1111/ao_packet_master.c
30962         src/core/ao.h
30963     
30964     Fix up the new makefiles
30965
30966 commit 128bbfa150f88c09f7adde2434b7bf0b5a9ed556
30967 Merge: f6f54d7 246864b
30968 Author: Keith Packard <keithp@keithp.com>
30969 Date:   Fri Oct 7 08:41:56 2011 -0600
30970
30971     Merge remote-tracking branch 'origin/simple-quiet' into multiarch
30972     
30973     Conflicts:
30974         configure.ac
30975     
30976     fix version number
30977
30978 commit f6f54d70b768dca1715ddddea64a4df00d82b09e
30979 Merge: 1c344b7 0d10e25
30980 Author: Keith Packard <keithp@keithp.com>
30981 Date:   Fri Oct 7 08:40:14 2011 -0600
30982
30983     Merge remote-tracking branch 'uniarch/master' into multiarch
30984     
30985     Conflicts:
30986         src/core/ao_cmd.c
30987     
30988     Use ao_arch_reboot after waiting for a second
30989
30990 commit 0d10e25766b96f5660e213115cf27b71ff164405
30991 Author: Keith Packard <keithp@keithp.com>
30992 Date:   Tue Sep 27 21:06:54 2011 -0700
30993
30994     altos: TM: Don't turn on packet slave mode until idle/invalid state
30995     
30996     Leave the packet link disabled until we've checked the
30997     accelerometer. That way, we cannot accidentally get to idle mode when
30998     the rocket is on the rail.
30999     
31000     Signed-off-by: Keith Packard <keithp@keithp.com>
31001
31002 commit fba1d605a627d03f9587ec060c45fb5d3e96aaeb
31003 Author: Keith Packard <keithp@keithp.com>
31004 Date:   Mon Sep 26 11:50:28 2011 -0700
31005
31006     altos: Delay reboot by a second to avoid re-entering idle mode
31007     
31008     TM and Tm go into idle mode if they receive a packet after boot
31009     time. When tebooting the device over the packet link, the packet
31010     master would be (rapidly) polling the device for additional data and
31011     so the device would invariably receive a packet during bootup and go
31012     into idle mode again.
31013     
31014     Delay the reboot by a second to give the controller time to disable
31015     the master end of the packet link.
31016     
31017     Signed-off-by: Keith Packard <keithp@keithp.com>
31018
31019 commit 1c344b760776cd5d8c0297d8db9bf02687381b4e
31020 Merge: 4ed53ef fc4173f
31021 Author: Keith Packard <keithp@keithp.com>
31022 Date:   Fri Oct 7 08:34:59 2011 -0600
31023
31024     Merge remote-tracking branch 'origin/master' into multiarch
31025     
31026     Conflicts:
31027         configure.ac
31028     
31029     Fix version number and location of ao.h header
31030
31031 commit fc4173ff882dd9718f34ed043276ef612783dfe0
31032 Author: Bdale Garbee <bdale@gag.com>
31033 Date:   Tue Sep 27 00:59:08 2011 -0600
31034
31035     add run-time dependency on libjfreechart-java
31036
31037 commit 989aae5b18856e3420ea5b7a26ddd8dccae9d6d3
31038 Merge: 0552fbe e44f1ff
31039 Author: Bdale Garbee <bdale@gag.com>
31040 Date:   Sat Sep 24 15:34:59 2011 -0600
31041
31042     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31043
31044 commit 0552fbed34c9698dac30c239df2a823a8502b3f3
31045 Author: Bdale Garbee <bdale@gag.com>
31046 Date:   Tue Aug 30 16:59:53 2011 -0600
31047
31048     include 1.0.1 release notes in docs, closes: #642705
31049
31050 commit 4ed53ef838afd4e922deb1c721a311974527525a
31051 Author: Keith Packard <keithp@keithp.com>
31052 Date:   Fri Sep 23 10:24:33 2011 -0700
31053
31054     altos: Debug code for telepyro doesn't fit in telescience
31055     
31056     Just too many strings.
31057     
31058     Signed-off-by: Keith Packard <keithp@keithp.com>
31059
31060 commit f1328d22aab4378c4fb6f0c24dbee95948ca836c
31061 Author: Keith Packard <keithp@keithp.com>
31062 Date:   Wed Sep 21 23:21:04 2011 -0700
31063
31064     Dump test conversion of ADC0
31065
31066 commit 9b498a6b1327f543c73145e02ff16e76d09f2fe4
31067 Author: Keith Packard <keithp@keithp.com>
31068 Date:   Wed Sep 21 22:54:56 2011 -0700
31069
31070     Dump ADC registers
31071
31072 commit 7bc007ed45af8fe9ef5daeb7844f183cd9a49035
31073 Author: Keith Packard <keithp@keithp.com>
31074 Date:   Wed Sep 21 18:13:55 2011 -0700
31075
31076     altos: Fix make-kalman to run under dash
31077     
31078     Dash can't deal with >&, so use the old-school > file 2>&1
31079     
31080     Signed-off-by: Keith Packard <keithp@keithp.com>
31081
31082 commit 74d5dea5d5ef91db823018b631613d15c6da085d
31083 Author: Bdale Garbee <bdale@gag.com>
31084 Date:   Wed Sep 21 16:42:52 2011 -0600
31085
31086     fix bashism that prevents building with /bin/sh->/bin/dash
31087
31088 commit f68f22f527104cdffa1f5e398a51a466a13ff1fb
31089 Author: Bdale Garbee <bdale@gag.com>
31090 Date:   Wed Sep 21 16:42:22 2011 -0600
31091
31092     add missing sense_h entry in TelePyro table
31093
31094 commit 16aa67fc77b82a9d051f205037b27a5384e3e3b7
31095 Author: Keith Packard <keithp@keithp.com>
31096 Date:   Wed Sep 21 14:24:30 2011 -0700
31097
31098     altos: missing ao_log_single.c
31099     
31100     Neglected to add this file.
31101     
31102     Signed-off-by: Keith Packard <keithp@keithp.com>
31103
31104 commit 7a02d4bace05cc829522933b9df6b82a9e17336f
31105 Author: Keith Packard <keithp@keithp.com>
31106 Date:   Wed Sep 21 11:30:43 2011 -0700
31107
31108     altos: Add TelePyro v0.1 support
31109     
31110     Signed-off-by: Keith Packard <keithp@keithp.com>
31111
31112 commit 0820f5c6dfe067590f36e8201a4049719dcf3d7c
31113 Author: Keith Packard <keithp@keithp.com>
31114 Date:   Wed Sep 21 11:40:56 2011 -0700
31115
31116     altos: Support staging by going back to boost as needed
31117     
31118     Detect additional motor burns by looking for high positive
31119     acceleration in coast or fast modes.
31120     
31121     Signed-off-by: Keith Packard <keithp@keithp.com>
31122
31123 commit c8a00bb9ccdf0d4257f037c2bf996ce5e6b0b0c0
31124 Author: Keith Packard <keithp@keithp.com>
31125 Date:   Wed Sep 21 11:39:24 2011 -0700
31126
31127     altos: Pre-compute RDF packet len at compile time
31128     
31129     Instead of computing the RDF packet len at run time, which takes a
31130     pile of code space.
31131     
31132     Signed-off-by: Keith Packard <keithp@keithp.com>
31133
31134 commit abf17522c206b465375b73a004a6d67bfa714ba3
31135 Author: Keith Packard <keithp@keithp.com>
31136 Date:   Wed Sep 21 11:36:11 2011 -0700
31137
31138     altos: SPI slave code is now per-product
31139     
31140     We can't write general purpose SPI slave code as we must eliminate
31141     any latency because the SPI ports have no buffering.
31142     
31143     Signed-off-by: Keith Packard <keithp@keithp.com>
31144
31145 commit 246864b0597ddd397aba39be1fe39df0df189433
31146 Author: Keith Packard <keithp@keithp.com>
31147 Date:   Fri Sep 16 18:27:56 2011 -0700
31148
31149     Update to version 1.0.2
31150     
31151     Bdale is planning to fly this version on 9/17.
31152     
31153     Signed-off-by: Keith Packard <keithp@keithp.com>
31154
31155 commit eaa7d7c7dd445ade7d8e3228306785f9a545b89a
31156 Author: Keith Packard <keithp@keithp.com>
31157 Date:   Sun Sep 4 08:49:16 2011 -0700
31158
31159     altos: Silence radio while firing igniters
31160     
31161     Hold the radio mutex while firing igniters to reduce potential
31162     interactions between the two.
31163     
31164     Signed-off-by: Keith Packard <keithp@keithp.com>
31165
31166 commit d1e81db87ce0f89fd0b7651ca00979498cd00b78
31167 Author: Keith Packard <keithp@keithp.com>
31168 Date:   Sun Sep 4 08:48:05 2011 -0700
31169
31170     altos: Delay restart of RDF at apogee
31171     
31172     Instead of immediately trying to send RDF at apogee, start it after
31173     the usual RDF interval to avoid doing RDF while firing the apogee igniter.
31174     
31175     Signed-off-by: Keith Packard <keithp@keithp.com>
31176
31177 commit e44f1ffb7104d70f5c9b9a90529ddbe1b75da074
31178 Author: Bdale Garbee <bdale@gag.com>
31179 Date:   Tue Aug 30 16:59:53 2011 -0600
31180
31181     include 1.0.1 release notes in docs
31182
31183 commit b2d4e49bfe88aa61ca36fb1af8f3088c5754304c
31184 Author: Keith Packard <keithp@keithp.com>
31185 Date:   Mon Aug 29 14:22:19 2011 -0700
31186
31187     altos: Split avr clock initialization to ao_clock.c
31188     
31189     This will be shared with the attiny code for TeleTerra v0.1
31190     
31191     Signed-off-by: Keith Packard <keithp@keithp.com>
31192
31193 commit e66fd72664aae7c000dce9c528803e28e7918fdf
31194 Author: Keith Packard <keithp@keithp.com>
31195 Date:   Sun Aug 28 17:03:26 2011 -0700
31196
31197     altos: don't beep igniter continuity for telenano
31198     
31199     Without any igniters, it's not nice to annoy people.
31200     
31201     Signed-off-by: Keith Packard <keithp@keithp.com>
31202
31203 commit 122c4101164d598e655fa9ad8473053d30ff4212
31204 Author: Keith Packard <keithp@keithp.com>
31205 Date:   Sun Aug 28 16:55:55 2011 -0700
31206
31207     altos: Report continuity in telebt
31208     
31209     Report continuity values from remote altimeter
31210     
31211     Signed-off-by: Keith Packard <keithp@keithp.com>
31212
31213 commit 9b9568a637ffdbc67225271005f2b996ee08a0df
31214 Author: Keith Packard <keithp@keithp.com>
31215 Date:   Sun Aug 28 16:39:41 2011 -0700
31216
31217     altos: add 'report' to telebt
31218     
31219     This beeps out flight state changes and max altitude at landing, just
31220     like the altimeter.
31221     
31222     Signed-off-by: Keith Packard <keithp@keithp.com>
31223
31224 commit 31e3255b6cbfaf95c0e97e2d1ec8de72f845994c
31225 Author: Keith Packard <keithp@keithp.com>
31226 Date:   Sun Aug 28 15:50:30 2011 -0700
31227
31228     altosui: Report error message back from libaltos
31229     
31230     This includes changing all of the error dialogs to show the error
31231     message rather than just the file name.
31232     
31233     Signed-off-by: Keith Packard <keithp@keithp.com>
31234
31235 commit cf72c2f5a69a736c28a9b63e124d510ef41a9f5d
31236 Author: Keith Packard <keithp@keithp.com>
31237 Date:   Sun Aug 28 15:50:01 2011 -0700
31238
31239     altosui: Add bluetooth bits back in
31240     
31241     Stub out functions on mac/windows for now.
31242     
31243     Signed-off-by: Keith Packard <keithp@keithp.com>
31244
31245 commit 3d478a39f2ede7b805bbe568cc1c8ecc176d7a04
31246 Author: Keith Packard <keithp@keithp.com>
31247 Date:   Sun Aug 28 15:45:05 2011 -0700
31248
31249     altos: Add the BT serial debug code back in, disabled
31250     
31251     This code is useful whenever the BT stuff is acting up, so just leave
31252     the source in place, turned off by default.
31253     
31254     Signed-off-by: Keith Packard <keithp@keithp.com>
31255
31256 commit 8eaa1c4697a3cfc2406e1adadc3094f7f712341a
31257 Author: Keith Packard <keithp@keithp.com>
31258 Date:   Sun Aug 28 15:43:32 2011 -0700
31259
31260     altos: Add pragma to eliminate unreachable code warning on SDCC
31261     
31262     This pragma was removed as GCC doesn't support it; make it conditional
31263     on SDCC so that we eliminate a warning message.
31264     
31265     Signed-off-by: Keith Packard <keithp@keithp.com>
31266
31267 commit 7c6a3195dec6ac68f5d7b3f883ccc2c316384e76
31268 Author: Keith Packard <keithp@keithp.com>
31269 Date:   Sun Aug 28 15:42:25 2011 -0700
31270
31271     altos: Blink on telem packet receive instead of toggle
31272     
31273     Toggling the LED was too confusing; just blink for 100ms each time a
31274     packet comes in.
31275     
31276     Signed-off-by: Keith Packard <keithp@keithp.com>
31277
31278 commit cff737c290347b61ba16584880c2f4c436b95042
31279 Author: Keith Packard <keithp@keithp.com>
31280 Date:   Sun Aug 28 15:40:40 2011 -0700
31281
31282     altos: Remove RSSI reporting from telebt
31283     
31284     Telebt uses one LED for bluetooth connection and the other for telem
31285     packet reception leaving none for RSSI.
31286     
31287     Signed-off-by: Keith Packard <keithp@keithp.com>
31288
31289 commit 27835686648e14b030f6f7ec1fc0c0fd1c387ea4
31290 Author: Keith Packard <keithp@keithp.com>
31291 Date:   Sun Aug 28 15:38:12 2011 -0700
31292
31293     altos: Add RSSI blinking to new-style telemetry code
31294     
31295     Pull the RSSI data out locally and set the RSSI led blinking when
31296     using the variable-length TELEM output mechanism.
31297     
31298     Signed-off-by: Keith Packard <keithp@keithp.com>
31299
31300 commit 6f231a3e512ff7fdd87a399a72c7c36f283394f3
31301 Author: Keith Packard <keithp@keithp.com>
31302 Date:   Sun Aug 28 15:20:41 2011 -0700
31303
31304     Bump version to 1.0.9.0
31305     
31306     Make it distinct from any production version
31307     
31308     Signed-off-by: Keith Packard <keithp@keithp.com>
31309
31310 commit e53557373e539d591a03d02db146b27d08c7eba3
31311 Author: Keith Packard <keithp@keithp.com>
31312 Date:   Sun Aug 28 15:18:29 2011 -0700
31313
31314     altos: Start logging telemetry data right at boot time
31315     
31316     Anything logging telemetry data should just start logging packets as
31317     soon as they boot.
31318     
31319     Signed-off-by: Keith Packard <keithp@keithp.com>
31320
31321 commit 5c3a0263d292cb0675f608d0ef085d13e51ce6ba
31322 Author: Bdale Garbee <bdale@gag.com>
31323 Date:   Sun Aug 28 13:39:37 2011 -0600
31324
31325     update changelogs for Debian build
31326
31327 commit b33a92e372327158ab21c1bb2d091c58761efe10
31328 Author: Keith Packard <keithp@keithp.com>
31329 Date:   Sat Aug 27 15:19:43 2011 -0700
31330
31331     altos: Share log code between telescience and telebt. Add telebt log
31332     
31333     Telescience and telebt both log data in 32-byte chunks, so share some
31334     code which manages that between the two products. Add simple telemetry
31335     logging to telebt.
31336     
31337     Signed-off-by: Keith Packard <keithp@keithp.com>
31338
31339 commit 7e2b5e2957ddcb808723081ca7e046a28b7e70e5
31340 Author: Keith Packard <keithp@keithp.com>
31341 Date:   Sat Aug 27 13:30:34 2011 -0700
31342
31343     altosui: launch controller button needs to move over
31344     
31345     monitor idle was inserted into position 2,2
31346     
31347     Signed-off-by: Keith Packard <keithp@keithp.com>
31348
31349 commit bc827699be4ed9ac60a7e862e6532791968bf685
31350 Author: Keith Packard <keithp@keithp.com>
31351 Date:   Sat Aug 27 13:28:01 2011 -0700
31352
31353     altos: Fix up telelaunch Makefile
31354     
31355     Adding all of the mising sources
31356     
31357     Signed-off-by: Keith Packard <keithp@keithp.com>
31358
31359 commit 8a1cbef0e316e38c80b71d3bac15641fe56e0a99
31360 Author: Keith Packard <keithp@keithp.com>
31361 Date:   Sat Aug 27 13:27:28 2011 -0700
31362
31363     altos: Add HAS_LOG for products that log to eeprom
31364     
31365     Some products have eeprom for config, but none for logging (like telelaunch)
31366     
31367     Signed-off-by: Keith Packard <keithp@keithp.com>
31368
31369 commit 6afbc1876cd63f64e8975e300692f95a43866f5f
31370 Author: Keith Packard <keithp@keithp.com>
31371 Date:   Sat Aug 27 13:27:00 2011 -0700
31372
31373     altos: ao_launch belongs in cc1111
31374     
31375     Signed-off-by: Keith Packard <keithp@keithp.com>
31376
31377 commit 9adf2c9c40ea1da2637ed809dc0d004e47844440
31378 Author: Keith Packard <keithp@keithp.com>
31379 Date:   Sat Aug 27 13:25:23 2011 -0700
31380
31381     altos: add ao_aes/radio_cmac to tidongle, teledongle and telebt
31382     
31383     All of these can do the telelco stuff at this point.
31384     
31385     Signed-off-by: Keith Packard <keithp@keithp.com>
31386
31387 commit b3c95582774355c991d0a9f27d0a86881e643e62
31388 Author: Keith Packard <keithp@keithp.com>
31389 Date:   Sat Aug 27 13:24:41 2011 -0700
31390
31391     altos: move igniter defines back to ao_pins.h
31392     
31393     so that ao_launch gets them too
31394     
31395     Signed-off-by: Keith Packard <keithp@keithp.com>
31396
31397 commit 6b2db651a1dbc7ea97fce802b5f10b88be1ab42b
31398 Author: Keith Packard <keithp@keithp.com>
31399 Date:   Sat Aug 27 12:42:10 2011 -0700
31400
31401     altos: Add makefile for telelaunch
31402     
31403     Signed-off-by: Keith Packard <keithp@keithp.com>
31404
31405 commit 02df2141e5a67afc16acd01a6c60f3cc61052b93
31406 Author: Keith Packard <keithp@keithp.com>
31407 Date:   Mon Aug 1 22:45:43 2011 -0700
31408
31409     altosui: Hook up the launch controller UI from the main button box
31410     
31411     Provide a button to start the launch controller UI.
31412     
31413     Signed-off-by: Keith Packard <keithp@keithp.com>
31414
31415 commit 4568bc796a6c362ebf7f72ee9a5fa4a9a3c4ba6a
31416 Author: Keith Packard <keithp@keithp.com>
31417 Date:   Mon Aug 1 17:08:24 2011 -0700
31418
31419     altosui: Add primitive UI for TeleLaunch
31420     
31421     Display status along with arm and fire buttons.
31422     
31423     Signed-off-by: Keith Packard <keithp@keithp.com>
31424
31425 commit be117376179126824439d98379079025ca0b245a
31426 Author: Keith Packard <keithp@keithp.com>
31427 Date:   Mon Aug 1 17:06:49 2011 -0700
31428
31429     altos: Keep relay closed while firing launcher
31430     
31431     Instead of opening the relay while checking the desired state, keep it
31432     closed until the state goes off.
31433     
31434     Signed-off-by: Keith Packard <keithp@keithp.com>
31435
31436 commit bc1b94df4d6b92e794ec93d9c1682ae5f61efa61
31437 Author: Keith Packard <keithp@keithp.com>
31438 Date:   Thu Jul 21 22:25:45 2011 -0700
31439
31440     altos: Finish up primitive telelaunch protocol
31441     
31442     This adds two commands to teledongle, one to query and one to actually
31443     fire the igniter. These will (eventually) want to be replaced with
31444     something nicer.
31445     
31446     Signed-off-by: Keith Packard <keithp@keithp.com>
31447
31448 commit 4299b5a36a2f6f9f7bbbc3a1b935dd2357c1fb0f
31449 Author: Keith Packard <keithp@keithp.com>
31450 Date:   Thu Jul 21 20:04:05 2011 -0700
31451
31452     altos: Implement remote launch protocol
31453     
31454     Uses the radio_cmac module to provide secure communication.
31455     Keeps igniter closed for 500ms.
31456     Provides remote status for arming and ignition.
31457     
31458     Signed-off-by: Keith Packard <keithp@keithp.com>
31459
31460 commit 776df9ce2e7b4fa5cedda326988e66c614299af4
31461 Author: Keith Packard <keithp@keithp.com>
31462 Date:   Wed Jul 20 23:46:04 2011 -0700
31463
31464     altos: Get AES CBC-MAC packet transfers running
31465     
31466     This just has simple command-line based packet transfers for testing.
31467     
31468     This also adds special ao_telelaunch bits where the launch control
31469     code will live.
31470     
31471     Signed-off-by: Keith Packard <keithp@keithp.com>
31472
31473 commit bd0bf00081bb24af5cd67a9351b0b0c1a041d0d3
31474 Author: Keith Packard <keithp@keithp.com>
31475 Date:   Sat Jul 16 14:25:01 2011 -0700
31476
31477     altos: More work on AES bits
31478     
31479     Signed-off-by: Keith Packard <keithp@keithp.com>
31480
31481 commit a731d240f802d37524ce84c3c6acf22bcda4d522
31482 Author: Keith Packard <keithp@keithp.com>
31483 Date:   Fri Jul 15 18:51:33 2011 -0700
31484
31485     altos: Start work on AES and raw radio interfaces.
31486     
31487     We probably don't want this raw radio interface, but it's a start.
31488     
31489     Signed-off-by: Keith Packard <keithp@keithp.com>
31490
31491 commit f145be3fc4ee94fdb5c1e2406b6c11d38bdbbd9b
31492 Author: Keith Packard <keithp@keithp.com>
31493 Date:   Wed Jul 13 20:01:47 2011 -0700
31494
31495     altos: Start telelaunch product
31496     
31497     Looks a lot like TM, but without the flight code.
31498     
31499     Signed-off-by: Keith Packard <keithp@keithp.com>
31500
31501 commit 859ee0268b9f2e1f5933019f1231d857a1cac4da
31502 Author: Keith Packard <keithp@keithp.com>
31503 Date:   Wed Jul 13 19:59:58 2011 -0700
31504
31505     altosui: Add USB IDs for telelaunch and telelco to java bits
31506     
31507     telelaunch is 0x000f
31508     telelco is 0x0010
31509     
31510     Signed-off-by: Keith Packard <keithp@keithp.com>
31511
31512 commit b10fbbf0830053a39e4640a53598b1c027615c63
31513 Author: Keith Packard <keithp@keithp.com>
31514 Date:   Mon Aug 1 22:44:13 2011 -0700
31515
31516     altos: Add 'send all baro' compile-time option
31517     
31518     This option creates a new packet type that delivers full sensor-rate
31519     barometer telemetry data to allow for off-line analysis of flight
31520     algorithms using all of the data, rather than the slower rate provided
31521     either over telemetry or stored in the eeprom file.
31522     
31523     Define AO_SEND_ALL_BARO and this will get built in. Perhaps this could
31524     be a run-time option...
31525     
31526     Signed-off-by: Keith Packard <keithp@keithp.com>
31527
31528 commit 1c46c419704f661064d200432eb7efeeb11b3859
31529 Author: Keith Packard <keithp@keithp.com>
31530 Date:   Fri Aug 26 20:46:47 2011 -0700
31531
31532     altos: re-order ao_task to match single-arch code
31533     
31534     This is just for testing to make the new build match the old build
31535     exactly.
31536     
31537     Signed-off-by: Keith Packard <keithp@keithp.com>
31538
31539 commit c32893ce79835a8f861d6ef414644c2ff9769ff6
31540 Author: Keith Packard <keithp@keithp.com>
31541 Date:   Fri Aug 26 15:02:43 2011 -0700
31542
31543     altos: Integrate telescience support
31544     
31545     Adds a few drivers including an LCD driver
31546     
31547     Signed-off-by: Keith Packard <keithp@keithp.com>
31548
31549 commit 93b8f40bb451c9ec152490d1f431ab18f8ecb7d1
31550 Author: Bdale Garbee <bdale@gag.com>
31551 Date:   Fri Aug 26 10:52:55 2011 -0600
31552
31553     more release process doc updates
31554
31555 commit 9451ae5e4ea6ecfa512ba93197351682d4d043dc
31556 Author: Bdale Garbee <bdale@gag.com>
31557 Date:   Fri Aug 26 10:51:18 2011 -0600
31558
31559     update release process docs
31560
31561 commit 01aee9ebe517ed657692e0a39a31ae0ddfb5b8b0
31562 Author: Bdale Garbee <bdale@gag.com>
31563 Date:   Fri Aug 26 10:39:45 2011 -0600
31564
31565     update changelogs for Debian build
31566
31567 commit bc399d97a8424a5262f66a03e3bc403f793bb337
31568 Author: Bdale Garbee <bdale@gag.com>
31569 Date:   Fri Aug 26 10:38:44 2011 -0600
31570
31571     roll back packaging changelog for rebuild
31572
31573 commit 13e6e799070a1469cbc2ff990379ee520b8f0e6a
31574 Author: Bdale Garbee <bdale@gag.com>
31575 Date:   Fri Aug 26 10:29:58 2011 -0600
31576
31577     roll release notes version from 1.0 to 1.0.1
31578
31579 commit 1d15c841ad276127edae0345bd316c30731fffbf
31580 Author: Bdale Garbee <bdale@gag.com>
31581 Date:   Fri Aug 26 10:24:35 2011 -0600
31582
31583     ignore generated log file
31584
31585 commit 58a74c3c3dcd01509224326cffeb67a3e809e4e6
31586 Author: Bdale Garbee <bdale@gag.com>
31587 Date:   Fri Aug 26 10:07:15 2011 -0600
31588
31589     fix telemini firmware path name
31590
31591 commit 0a92eb2fa6b213533691288d8f99d72b80312983
31592 Author: Bdale Garbee <bdale@gag.com>
31593 Date:   Fri Aug 26 09:43:06 2011 -0600
31594
31595     update changelogs for Debian build
31596
31597 commit 3cea033ec928c21b9f7b810898ed3c3cc536d2ce
31598 Author: Bdale Garbee <bdale@gag.com>
31599 Date:   Fri Aug 26 09:41:46 2011 -0600
31600
31601     get ready for a 1.0.1 release
31602
31603 commit 674231773256bacd7acb4b5718c47412e47b813f
31604 Merge: 08e3d54 3bfe8df
31605 Author: Bdale Garbee <bdale@gag.com>
31606 Date:   Fri Aug 26 09:37:01 2011 -0600
31607
31608     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31609
31610 commit 08e3d54bacf8b38a7c33e420a0bc19bcc7acedd4
31611 Author: Bdale Garbee <bdale@gag.com>
31612 Date:   Fri Aug 26 09:35:54 2011 -0600
31613
31614     moving git-buildpackage config into .git/ since it is fairly specific to
31615     Bdale's build environment, and doesn't need to be in the source package
31616
31617 commit 8125acc030574afed6f23aa8aa302d9c768bb04e
31618 Author: Keith Packard <keithp@keithp.com>
31619 Date:   Thu Aug 25 22:55:33 2011 -0700
31620
31621     altos: get avr-demo to build. Pull in AVR drivers and LCD driver
31622     
31623     This completes the basic task of making an AVR version of altos by
31624     getting the Teensy 'avr-demo' program to build.
31625     
31626     Signed-off-by: Keith Packard <keithp@keithp.com>
31627
31628 commit e9fab7dc99a0e7c22b511c5919adf7df85213252
31629 Author: Keith Packard <keithp@keithp.com>
31630 Date:   Thu Aug 25 22:04:36 2011 -0700
31631
31632     altos: add GCC/SDCC compat macros, init_stack, save_context and GCC stdio hooks
31633     
31634     More arch-indepdency bits.
31635     
31636     GCC stdio is different from SDCC, so create suitable code in
31637     avr/ao_avr_stdio.c
31638     
31639     Create macros to initialize the task stack frame and save the task
31640     context.
31641     
31642     Add GCC/SDCC type definition compatibility macros
31643     
31644     Signed-off-by: Keith Packard <keithp@keithp.com>
31645
31646 commit a588092a7d76dab92e4ab11e0fdb457d2ddc9025
31647 Author: Keith Packard <keithp@keithp.com>
31648 Date:   Thu Aug 25 21:10:56 2011 -0700
31649
31650     altos: AVR changes - create ao_arch.h files, define ao_arch_reboot
31651     
31652     Start pulling changes needed for avr port; architecture-specific code
31653     will live in <architcture>/ao_arch.h. This first change defines
31654     the ao_arch_reboot macro to reboot the microcontroller.
31655     
31656     Signed-off-by: Keith Packard <keithp@keithp.com>
31657
31658 commit 9513be7f9d3d0b0ec29f6487fa9dc8f1ac24d0de
31659 Author: Keith Packard <keithp@keithp.com>
31660 Date:   Thu Aug 25 20:43:44 2011 -0700
31661
31662     altos: Restructure altos build to prepare for multi-arch support
31663     
31664     Split out sources into separate directories:
31665     
31666         core:           architecture and product independent bits
31667         cc1111:         cc1111-specific code
31668         drivers:        architecture independent drivers
31669         product:        product-specific sources and Makefile fragments
31670         util:           scripts for building stuff
31671     
31672     This should have no effect on the built products, but testing is encouraged
31673     
31674     Signed-off-by: Keith Packard <keithp@keithp.com>
31675
31676 commit 3bfe8df44b575ca430ffaa051e20faa955a06c03
31677 Author: Keith Packard <keithp@keithp.com>
31678 Date:   Thu Aug 25 18:02:45 2011 -0700
31679
31680     altos: Clear callsign on initial config load
31681     
31682     Before being written the first time, ao_config will get set to 0xff
31683     when the config storage is read. This leaves the tail of the callsign
31684     filled with invalid bytes. Zero the whole thing before loading the
31685     default callsign to make sure any extra bytes are set correctly.
31686     
31687     Signed-off-by: Keith Packard <keithp@keithp.com>
31688
31689 commit 93ecaf7f18f8f4c15953c2e80dc9e1b20d04fdfa
31690 Author: Bdale Garbee <bdale@gag.com>
31691 Date:   Thu Aug 25 15:46:30 2011 -0600
31692
31693     update TeleMini turnon script now that we've made a stable firmware release
31694
31695 commit c3314dae2d3df82e188daf6ba8520cce833592c6
31696 Author: Bdale Garbee <bdale@gag.com>
31697 Date:   Thu Aug 25 03:36:25 2011 -0600
31698
31699     use multimaint-merge to make Debian changelogs less ugly
31700
31701 commit f9d87de0e2681c2ec5753f4fffef0e61a3a9e144
31702 Author: Bdale Garbee <bdale@gag.com>
31703 Date:   Thu Aug 25 02:22:53 2011 -0600
31704
31705     update changelogs for Debian build
31706
31707 commit 41998645c04a2ee856dec272b40c2dc5913291d3
31708 Author: Bdale Garbee <bdale@gag.com>
31709 Date:   Thu Aug 25 02:16:17 2011 -0600
31710
31711     add a postinst to remove sources.list.d fragment delivered by old private
31712     versions of this package, no longer needed once we have official packages
31713
31714 commit d65e4f6b0a8ba8f67c8a916f2e8be0ec5c75f47d
31715 Author: Bdale Garbee <bdale@gag.com>
31716 Date:   Thu Aug 25 02:05:49 2011 -0600
31717
31718     really, I mean it, no longer deliver the sources.list fragment
31719
31720 commit 0579bd5de9e7686d227a16951dd520439ca5472b
31721 Author: Bdale Garbee <bdale@gag.com>
31722 Date:   Thu Aug 25 01:55:32 2011 -0600
31723
31724     we need a main category in the desktop file
31725
31726 commit 3ec03792adebbeadc9c0d4985c6f51877e8ab969
31727 Author: Bdale Garbee <bdale@gag.com>
31728 Date:   Thu Aug 25 01:48:11 2011 -0600
31729
31730     update desktop file for consistency with package section
31731
31732 commit 0b1d5b678f0e36fbe09d4d3babffb77f857f098d
31733 Author: Bdale Garbee <bdale@gag.com>
31734 Date:   Thu Aug 25 01:37:31 2011 -0600
31735
31736     rewind packaging changelog to last tagged version
31737
31738 commit f0891fc2e4fa4fd6dd5c2bfc74e4514de986a295
31739 Author: Bdale Garbee <bdale@gag.com>
31740 Date:   Thu Aug 25 01:35:18 2011 -0600
31741
31742     ao-view is no longer included in the altos package, so have the old-style
31743     Debian menu entry point to altosui instead
31744
31745 commit a7ee1049519bf46b3864666999249876009fc3bf
31746 Author: Bdale Garbee <bdale@gag.com>
31747 Date:   Thu Aug 25 01:35:06 2011 -0600
31748
31749     changes in preparation for upload to Debian
31750
31751 commit 2992184f7a032c95e22023080fbc26443ed786f5
31752 Author: Bdale Garbee <bdale@gag.com>
31753 Date:   Thu Aug 25 01:30:36 2011 -0600
31754
31755     don't deliver sources.list fragment in official Debian packages
31756
31757 commit 3fc92a529dae410a41038cce38c6a44f5e58bd1f
31758 Author: Bdale Garbee <bdale@gag.com>
31759 Date:   Thu Aug 25 01:11:47 2011 -0600
31760
31761     prepare to release
31762
31763 commit 73abe19acf709c00f5352ec12e8cd6edae1d1963
31764 Merge: 1bd781d 5158493
31765 Author: Bdale Garbee <bdale@gag.com>
31766 Date:   Thu Aug 25 00:34:49 2011 -0600
31767
31768     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31769     
31770     Conflicts:
31771         doc/altusmetrum.xsl
31772
31773 commit 1bd781da934c738e0c9294197c7eb622b0710a9a
31774 Author: Bdale Garbee <bdale@gag.com>
31775 Date:   Thu Aug 25 00:32:47 2011 -0600
31776
31777     more tweaks
31778
31779 commit 5158493c8df527e7527057c719c75248609eb3dc
31780 Author: Keith Packard <keithp@keithp.com>
31781 Date:   Wed Aug 24 23:21:02 2011 -0700
31782
31783     doc: Remove duplicate documentation about max flight log
31784     
31785     This was described in detail in both the System Operation and AltosUI
31786     chapters. Remove the duplicate from the AltosUI chapter.
31787     
31788     Signed-off-by: Keith Packard <keithp@keithp.com>
31789
31790 commit e268798dc260311f5f0167909481b41c9d27fc1c
31791 Merge: 458f816 242344d
31792 Author: Keith Packard <keithp@keithp.com>
31793 Date:   Wed Aug 24 23:06:44 2011 -0700
31794
31795     Merge remote-tracking branch 'origin/master'
31796
31797 commit 458f816ad23fd6784757b13b244057d4be64260e
31798 Author: Keith Packard <keithp@keithp.com>
31799 Date:   Wed Aug 24 23:06:01 2011 -0700
31800
31801     doc: Describe max flight log, ignite mode and pad orientation
31802     
31803     These describe what these configuration parmaeters do, not how to set them.
31804     
31805     Signed-off-by: Keith Packard <keithp@keithp.com>
31806
31807 commit 242344d3e32e7c7cd9270d708555923fa888e4d8
31808 Merge: 5c1cf74 94a1b22
31809 Author: Bdale Garbee <bdale@gag.com>
31810 Date:   Wed Aug 24 23:51:38 2011 -0600
31811
31812     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31813     
31814     Conflicts:
31815         doc/altusmetrum.xsl
31816
31817 commit 5c1cf7492b82e63a9db9d0238ecbcd2b59486893
31818 Author: Bdale Garbee <bdale@gag.com>
31819 Date:   Wed Aug 24 23:50:31 2011 -0600
31820
31821     tweak tweak tweak
31822
31823 commit 94a1b220bbfbb64b9772f3ee64a8e9d353d65e94
31824 Author: Keith Packard <keithp@keithp.com>
31825 Date:   Wed Aug 24 22:29:56 2011 -0700
31826
31827     doc: Move the remaining command-mode descriptions to the appendix
31828     
31829     Signed-off-by: Keith Packard <keithp@keithp.com>
31830
31831 commit edfb553bb4fa5b0c7c6c658505b2a99d05fb13bf
31832 Merge: c74ab82 ec96f11
31833 Author: Bdale Garbee <bdale@gag.com>
31834 Date:   Wed Aug 24 23:23:56 2011 -0600
31835
31836     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31837
31838 commit c74ab82a7b7a6ad6f79129a9ef5954270e7e8f11
31839 Author: Bdale Garbee <bdale@gag.com>
31840 Date:   Wed Aug 24 23:23:45 2011 -0600
31841
31842     more changes
31843
31844 commit ec96f11666f9cbd98e16caeccd5d399978bde81b
31845 Author: Keith Packard <keithp@keithp.com>
31846 Date:   Wed Aug 24 22:20:29 2011 -0700
31847
31848     doc: Updating Firmware is now a separate chapter
31849     
31850     The Flash Image paragraph references it, change the reference wording.
31851     
31852     Signed-off-by: Keith Packard <keithp@keithp.com>
31853
31854 commit 11099fab63d32f53d0f2e04a7ab04392e39b5963
31855 Author: Keith Packard <keithp@keithp.com>
31856 Date:   Wed Aug 24 22:18:29 2011 -0700
31857
31858     doc: Move updating device firmware section to separate chapter
31859     
31860     This isn't central to operation of the devices, so move it out to a
31861     separate chapter
31862     
31863     Signed-off-by: Keith Packard <keithp@keithp.com>
31864
31865 commit 50769fbbeaaf61111d363411e0ef0b2868681cf4
31866 Merge: 425fa99 d92c173
31867 Author: Bdale Garbee <bdale@gag.com>
31868 Date:   Wed Aug 24 23:15:20 2011 -0600
31869
31870     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31871
31872 commit 425fa995aeaccc1ec9ecf011f185b4406df61541
31873 Author: Bdale Garbee <bdale@gag.com>
31874 Date:   Wed Aug 24 23:15:15 2011 -0600
31875
31876     more tweaking
31877
31878 commit d92c173615a5fb0278ff6878595bed3f8d813e03
31879 Author: Keith Packard <keithp@keithp.com>
31880 Date:   Wed Aug 24 22:12:39 2011 -0700
31881
31882     doc: use 'radio link' to refer to packet command mode
31883     
31884     Make sure 'radio link' doesn't refer to telemetry and eliminate use of
31885     'RF link' and other similar but not identical phrases.
31886     
31887     Signed-off-by: Keith Packard <keithp@keithp.com>
31888
31889 commit 65ca6f0d7c96432413868274b2cfdea4b76683e4
31890 Author: Bdale Garbee <bdale@gag.com>
31891 Date:   Wed Aug 24 23:03:23 2011 -0600
31892
31893     more tweaks
31894
31895 commit 09981cd024297fd4ef093c7468de2b9d5f3c2691
31896 Merge: a476e76 03c8b27
31897 Author: Bdale Garbee <bdale@gag.com>
31898 Date:   Wed Aug 24 22:42:39 2011 -0600
31899
31900     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31901
31902 commit a476e76622b6fa70bf7c8883d2a2a64a382fbd78
31903 Author: Bdale Garbee <bdale@gag.com>
31904 Date:   Wed Aug 24 22:42:33 2011 -0600
31905
31906     more doc tweaks
31907
31908 commit 03c8b2702a45a12c4748cd1ec801d720c816d9e9
31909 Author: Keith Packard <keithp@keithp.com>
31910 Date:   Wed Aug 24 21:39:48 2011 -0700
31911
31912     doc: Move Packet Command Mode section to System Operations chapter
31913     
31914     It makes far more sense here.
31915     
31916     Signed-off-by: Keith Packard <keithp@keithp.com>
31917
31918 commit 221157af586c6fd7368ee858a390f38bc5ed50f5
31919 Author: Keith Packard <keithp@keithp.com>
31920 Date:   Wed Aug 24 21:31:05 2011 -0700
31921
31922     doc: Describe packet command mode a bit better.
31923     
31924     Include comments about TeleMini in the introduction, and then explain
31925     a bit better what the best method of reliably initiating packet
31926     command mode are (start operation, then boot telemini).
31927     
31928     Signed-off-by: Keith Packard <keithp@keithp.com>
31929
31930 commit d4e1aa92b6ce2f3e4c51029595d1d44a7f2f14a0
31931 Author: Bdale Garbee <bdale@gag.com>
31932 Date:   Wed Aug 24 22:27:35 2011 -0600
31933
31934     more doc tweaking
31935
31936 commit 6eff8d5831dde8e690586cd2a97ddf1595cd2674
31937 Author: Keith Packard <keithp@keithp.com>
31938 Date:   Wed Aug 24 20:59:28 2011 -0700
31939
31940     doc: Document pad-mode 'on-board data logging' indicator
31941     
31942     There wasn't any documentation for this field in the 'Launch Pad' tab.
31943     
31944     Signed-off-by: Keith Packard <keithp@keithp.com>
31945
31946 commit ca0879ba6e5295b4fa790705f742eb647a462ea0
31947 Author: Keith Packard <keithp@keithp.com>
31948 Date:   Wed Aug 24 20:42:09 2011 -0700
31949
31950     doc: Spelling corrections in altusmetrum.xsl
31951     
31952     Lots of minor spelling errors.
31953     
31954     Signed-off-by: Keith Packard <keithp@keithp.com>
31955
31956 commit 963649aa064acfe75d2ff4babd9a0d35dc254e86
31957 Author: Bdale Garbee <bdale@gag.com>
31958 Date:   Wed Aug 24 21:39:21 2011 -0600
31959
31960     doc tweaks through chap 3
31961
31962 commit 3d88e0493ab446d7c7011786390d30618a72d045
31963 Merge: 02d6545 5a9972d
31964 Author: Bdale Garbee <bdale@gag.com>
31965 Date:   Wed Aug 24 21:26:26 2011 -0600
31966
31967     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
31968
31969 commit 5a9972d41a87d4204c6c93cacf14e2962cc1c59c
31970 Author: Keith Packard <keithp@keithp.com>
31971 Date:   Wed Aug 24 20:22:29 2011 -0700
31972
31973     altos/windows: Get latest JRE 1.6 version (Version 6 update 27)
31974     
31975     No reason to download stale java bits.
31976     
31977     Signed-off-by: Keith Packard <keithp@keithp.com>
31978
31979 commit cbfbaabb39f9f7709d00cf3dc63cc1bc7563062e
31980 Author: Keith Packard <keithp@keithp.com>
31981 Date:   Wed Aug 24 19:13:03 2011 -0700
31982
31983     altosui: Make flight monitor font size configurable
31984     
31985     Tiny netbooks aren't tall enough for the 'usual' font size, so provide
31986     a smaller option. Then provide a bigger option, just because.
31987     
31988     Signed-off-by: Keith Packard <keithp@keithp.com>
31989
31990 commit 9849883a754a73b861dd7be530753ff5c2abb499
31991 Author: Keith Packard <keithp@keithp.com>
31992 Date:   Wed Aug 24 01:48:28 2011 -0700
31993
31994     altosui: Don't trust companion telemetry record 'channels' count
31995     
31996     It can be bogus, allowing the code to walk off the end of the
31997     allocated data array.
31998     
31999     Signed-off-by: Keith Packard <keithp@keithp.com>
32000
32001 commit 02d65453225a3807e61b2ac6e2a26da31a05bd45
32002 Author: Bdale Garbee <bdale@gag.com>
32003 Date:   Wed Aug 24 01:53:02 2011 -0600
32004
32005     update changelogs for Debian build
32006
32007 commit 1d286dab223e6c44a25180f944ccb5ba8ed9d5f5
32008 Author: Bdale Garbee <bdale@gag.com>
32009 Date:   Wed Aug 24 01:51:54 2011 -0600
32010
32011     prepare for another rebuild
32012
32013 commit 82634eae16f9691a6c70a48d0858a399814631f2
32014 Author: Bdale Garbee <bdale@gag.com>
32015 Date:   Wed Aug 24 01:50:56 2011 -0600
32016
32017     add pkg-config to the build deps
32018
32019 commit cf2823cab40aa450375c108bae8ed6b051fbefe5
32020 Author: Bdale Garbee <bdale@gag.com>
32021 Date:   Wed Aug 24 01:45:28 2011 -0600
32022
32023     update changelogs for Debian build
32024
32025 commit bf6f00693c394f885d3378415dc7c8a1815a31ed
32026 Author: Bdale Garbee <bdale@gag.com>
32027 Date:   Wed Aug 24 01:43:59 2011 -0600
32028
32029     roll changelog back in prep for another test build
32030
32031 commit 06aee245eb74e839e50226fa2ddb967c3977fe7c
32032 Author: Bdale Garbee <bdale@gag.com>
32033 Date:   Wed Aug 24 01:41:53 2011 -0600
32034
32035     another test round
32036
32037 commit 4d94e8f9f807a0bbeab0cdead011e74eeca1d1b6
32038 Merge: 4b5369d 3b0a9a1
32039 Author: Bdale Garbee <bdale@gag.com>
32040 Date:   Wed Aug 24 01:38:58 2011 -0600
32041
32042     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
32043
32044 commit 3b0a9a1c87390747492bfef435ac8e0829ec748f
32045 Author: Keith Packard <keithp@keithp.com>
32046 Date:   Wed Aug 24 00:29:36 2011 -0700
32047
32048     altosui: Try to get dialogs to look a little better
32049     
32050     grid bag constraints are not my friend.
32051     
32052     Signed-off-by: Keith Packard <keithp@keithp.com>
32053
32054 commit 2165e82327faaada23f0503b8e49b80f938b746c
32055 Author: Keith Packard <keithp@keithp.com>
32056 Date:   Wed Aug 24 00:09:51 2011 -0700
32057
32058     altosui: Add tool-tips to config dialogs
32059     
32060     Provides more information about the various settings, and, when
32061     they're disabled, tells the user why.
32062     
32063     Signed-off-by: Keith Packard <keithp@keithp.com>
32064
32065 commit 63808e0392f43633f92fee137d968e969dd364c9
32066 Author: Keith Packard <keithp@keithp.com>
32067 Date:   Tue Aug 23 23:20:00 2011 -0700
32068
32069     Remove stale tools (ao-dumplog, ao-postflight, ao-view)
32070     
32071     These tools have all been supplanted by altosui at this point, and
32072     keeping them around increases the build dependencies by quite a lot.
32073     
32074     Signed-off-by: Keith Packard <keithp@keithp.com>
32075
32076 commit 186dfc7c72aa7eba281f29f917088e49e44c2ddc
32077 Author: Keith Packard <keithp@keithp.com>
32078 Date:   Tue Aug 23 22:51:57 2011 -0700
32079
32080     altosui: Use system look&feel
32081     
32082     Turn on the 'be less ugly bit'
32083     
32084     Signed-off-by: Keith Packard <keithp@keithp.com>
32085
32086 commit 4b5369dc3da2fc8441eeacbf094537b0cf52240d
32087 Author: Bdale Garbee <bdale@gag.com>
32088 Date:   Tue Aug 23 21:37:17 2011 -0600
32089
32090     update changelogs for Debian build
32091
32092 commit 99316a17a9642a207c45610e7cc1c33c2600ece0
32093 Author: Bdale Garbee <bdale@gag.com>
32094 Date:   Tue Aug 23 21:33:53 2011 -0600
32095
32096     rewind changelog to 0.9.6.0 for rebuild
32097
32098 commit 192881b7cae49af375cc2b8b7305c937079ee724
32099 Author: Bdale Garbee <bdale@gag.com>
32100 Date:   Tue Aug 23 20:11:01 2011 -0600
32101
32102     update changelogs for Debian build
32103
32104 commit fc7e46b1215ea2b4cc138ed77d8eaa122369b15f
32105 Author: Bdale Garbee <bdale@gag.com>
32106 Date:   Tue Aug 23 20:10:14 2011 -0600
32107
32108     turn off auto-tagging during Debian build
32109
32110 commit 998adccc1c4f8f6c44833bbf4a52d9441748b996
32111 Author: Keith Packard <keithp@keithp.com>
32112 Date:   Tue Aug 23 18:56:07 2011 -0700
32113
32114     altosui: add tool-tips to the button box.
32115     
32116     Signed-off-by: Keith Packard <keithp@keithp.com>
32117
32118 commit 754b9591574c12ddd6e4ab590c6a5f3806b80213
32119 Author: Keith Packard <keithp@keithp.com>
32120 Date:   Tue Aug 23 13:29:23 2011 -0700
32121
32122     libaltos: fix Mac OS X function signatures
32123     
32124     altos_list_start was declared to take a (int time) parameter for some reason.
32125     
32126     Signed-off-by: Keith Packard <keithp@keithp.com>
32127
32128 commit fa6df3fa21e8f09e70371e6c6cc7827a533b4fe6
32129 Author: Keith Packard <keithp@keithp.com>
32130 Date:   Mon Aug 22 23:35:28 2011 -0700
32131
32132     altosui: Update mac os X library
32133     
32134     This has been tested on 32-bit OS X and it works; dunno about
32135     64-bit.
32136     
32137     Signed-off-by: Keith Packard <keithp@keithp.com>
32138
32139 commit 955989147f90a4fd22c1375d1b41425dae4e7dd1
32140 Author: Keith Packard <keithp@keithp.com>
32141 Date:   Mon Aug 22 23:34:55 2011 -0700
32142
32143     altosui: Reset all config data on 'reset' command
32144     
32145     This lets you switch altimeters without getting any stale data.
32146     
32147     Signed-off-by: Keith Packard <keithp@keithp.com>
32148
32149 commit d249da3fb064754753bd20cd2ca1e5ffcce294ca
32150 Author: Keith Packard <keithp@keithp.com>
32151 Date:   Mon Aug 22 23:33:52 2011 -0700
32152
32153     altosui: Only 'show' config dialog once
32154     
32155     Otherwise, the dialog jumps back to the initial position each time the
32156     data is updated.
32157     
32158     Signed-off-by: Keith Packard <keithp@keithp.com>
32159
32160 commit e9254c3472e42d93181674b2c3cd80fe6eea696e
32161 Author: Keith Packard <keithp@keithp.com>
32162 Date:   Mon Aug 22 23:32:36 2011 -0700
32163
32164     altosui: fix 'magic' string to signal end of config data
32165     
32166     Was using "done", which happens to be displayed by the 'l'
32167     command. Switch to 'all finished' which doesn't appear in the config
32168     data output. Yes, this method is a kludge.
32169     
32170     Signed-off-by: Keith Packard <keithp@keithp.com>
32171
32172 commit 4aebe65b089e4b825a5ae238b81e2181bd88175a
32173 Author: Keith Packard <keithp@keithp.com>
32174 Date:   Mon Aug 22 23:31:54 2011 -0700
32175
32176     altosui: Can't configure flight log max on TeleMini
32177     
32178     It's only got space for one flight.
32179     
32180     Signed-off-by: Keith Packard <keithp@keithp.com>
32181
32182 commit 3a84e8e0cc86481c301f4335843a0e1a94bad5c0
32183 Author: Keith Packard <keithp@keithp.com>
32184 Date:   Mon Aug 22 23:12:30 2011 -0700
32185
32186     altosui: Make monitor-idle display correct 'On-board data logging' status
32187     
32188     Count number of stored flights and see if there's space for another
32189     one.
32190     
32191     Signed-off-by: Keith Packard <keithp@keithp.com>
32192
32193 commit afe6aba9cb91e93234ffee2a22eee40f848ddedd
32194 Author: Keith Packard <keithp@keithp.com>
32195 Date:   Mon Aug 22 18:25:34 2011 -0700
32196
32197     altosui: Add --summary option to dump flight stats to stdout
32198     
32199     useful for quickly capturing sense of a flight.
32200     
32201     Signed-off-by: Keith Packard <keithp@keithp.com>
32202
32203 commit 4e2fd7ae76c23aa8da1390ebcbd8f45276cd7a32
32204 Author: Keith Packard <keithp@keithp.com>
32205 Date:   Mon Aug 22 18:24:54 2011 -0700
32206
32207     altosui: Show filename in AltosGraph window
32208     
32209     Makes it easier to tell multiple windows apart
32210     
32211     Signed-off-by: Keith Packard <keithp@keithp.com>
32212
32213 commit f4ea46dc205454411c224ada7805f813989efd4a
32214 Author: Keith Packard <keithp@keithp.com>
32215 Date:   Mon Aug 22 18:23:41 2011 -0700
32216
32217     altosui: Add date/time/serial/flight to flight stats tab
32218     
32219     And switch to using the AltosConvert units conversions functions.
32220     
32221     Signed-off-by: Keith Packard <keithp@keithp.com>
32222
32223 commit b4c71ba56c471720c72853057d0a527825a78fa0
32224 Author: Keith Packard <keithp@keithp.com>
32225 Date:   Mon Aug 22 18:22:21 2011 -0700
32226
32227     altosui: Capture date/time/serial/flight in AltosFlightStats
32228     
32229     Time is the time when boost was detected.
32230     
32231     Signed-off-by: Keith Packard <keithp@keithp.com>
32232
32233 commit 5ef731bd87c6d2a71a4edcc69a218eaf1aa7c465
32234 Author: Keith Packard <keithp@keithp.com>
32235 Date:   Mon Aug 22 18:21:35 2011 -0700
32236
32237     altosui: Add a few simple unit conversions
32238     
32239     Signed-off-by: Keith Packard <keithp@keithp.com>
32240
32241 commit b83d8eca433ed5796835f6a09271f50c7f27cc81
32242 Author: Keith Packard <keithp@keithp.com>
32243 Date:   Mon Aug 22 17:18:02 2011 -0700
32244
32245     doc: Add Installation Recommendations chapter
32246     
32247     Document installation suggestions, including mounting, RFI, antenna
32248     issues and ground testing.
32249     
32250     Signed-off-by: Keith Packard <keithp@keithp.com>
32251
32252 commit a0f62b8569c5535a2598cfb6ab52db79f0a52f92
32253 Author: Keith Packard <keithp@keithp.com>
32254 Date:   Mon Aug 22 17:17:43 2011 -0700
32255
32256     doc: Add note about telemetry disable mode to 1.0 release notes
32257     
32258     Signed-off-by: Keith Packard <keithp@keithp.com>
32259
32260 commit 393d231b9689cd1c358600ee76e0e808f89670c8
32261 Author: Keith Packard <keithp@keithp.com>
32262 Date:   Sun Aug 21 22:52:45 2011 -0700
32263
32264     altosui: Attempt to make both 32- and 64-bit windows DLLs
32265     
32266     We'll see if they work...
32267     
32268     Signed-off-by: Keith Packard <keithp@keithp.com>
32269
32270 commit d5bd40847b17c32405dfba864a2a5a3b19aa7e85
32271 Author: Keith Packard <keithp@keithp.com>
32272 Date:   Sun Aug 21 22:12:53 2011 -0700
32273
32274     altosui/windows: Fix a bunch of windows compiler warnings.
32275     
32276     Some of these may have actually been serious -- a write length was
32277     getting stored in a signed char...
32278     
32279     Signed-off-by: Keith Packard <keithp@keithp.com>
32280
32281 commit 2353d83be15b398754c2564f95374c6ea0f8de92
32282 Author: Keith Packard <keithp@keithp.com>
32283 Date:   Sun Aug 21 22:12:04 2011 -0700
32284
32285     altos-fat/windows: Check and install Java 1.6 as needed
32286     
32287     Signed-off-by: Keith Packard <keithp@keithp.com>
32288
32289 commit a08826292ebd802a1ff2effccac3b96fd061c47d
32290 Merge: 3366cfe 55be3db
32291 Author: Bdale Garbee <bdale@gag.com>
32292 Date:   Mon Aug 22 16:08:55 2011 -0600
32293
32294     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
32295
32296 commit 55be3db2e31fe97e7f351e3c490b8bc4cf7192b2
32297 Author: Keith Packard <keithp@keithp.com>
32298 Date:   Sun Aug 21 19:18:54 2011 -0700
32299
32300     altosui: Clean up command line processing. Add --graph
32301     
32302     Make the command line processing a bit less ad-hoc, track 'mode' of
32303     processing and deal with all files on the command line.
32304     
32305     Signed-off-by: Keith Packard <keithp@keithp.com>
32306
32307 commit 6823ad5e48fc0a19791d96f886b5689f88c4311b
32308 Author: Keith Packard <keithp@keithp.com>
32309 Date:   Thu Aug 18 18:02:02 2011 -0700
32310
32311     altos/altosui: Add ability to disable telemetry/rdf completely
32312     
32313     This turns off the telemetry system so that it never transmits telemetry
32314     or RDF tones. In idle mode, it will still accept packet mode connections.
32315     
32316     Signed-off-by: Keith Packard <keithp@keithp.com>
32317
32318 commit a08e7ac8bd3840b699c9a1ffc6b1e115b2b84bad
32319 Author: Keith Packard <keithp@keithp.com>
32320 Date:   Sat Aug 20 11:35:55 2011 -0700
32321
32322     Bump version to 0.9.7
32323     
32324     Bdale is flying 0.9.6 at chili blaster, make sure later firmware gets
32325     a later version number.
32326     
32327     Signed-off-by: Keith Packard <keithp@keithp.com>
32328
32329 commit f2b0900f8b83fcb3085f3d042ffd961ffd758d5d
32330 Author: Keith Packard <keithp@keithp.com>
32331 Date:   Sat Aug 20 11:28:53 2011 -0700
32332
32333     altos: Merge common config code in ao_config.c
32334     
32335     This shuffles code around in ao_config.c to share some common code
32336     segments for starting and committing config changes.
32337     
32338     This also stops printing out changes as they are made which aren't
32339     needed by the UI code.
32340     
32341     Signed-off-by: Keith Packard <keithp@keithp.com>
32342
32343 commit 67f28c58db0deca8f8050d33e97ad96017f4baaa
32344 Author: Keith Packard <keithp@keithp.com>
32345 Date:   Sat Aug 20 11:19:57 2011 -0700
32346
32347     altosui: Disable 'max flight log' config when there are stored flights
32348     
32349     When flights are stored in flash, the maximum flight log value cannot
32350     be changed as the flight data might need to be moved around in
32351     memory. Check for this case by looking for stored flights and
32352     disabling the combo box when storage is not empty.
32353     
32354     Signed-off-by: Keith Packard <keithp@keithp.com>
32355
32356 commit fcff63baf8fde1174571a2c7c860099e19dbf629
32357 Author: Keith Packard <keithp@keithp.com>
32358 Date:   Sat Aug 20 10:43:28 2011 -0700
32359
32360     altosui: remove debug printf in pad pane
32361     
32362     Signed-off-by: Keith Packard <keithp@keithp.com>
32363
32364 commit 3366cfe6145f64cdb04654854d5390c671a288e3
32365 Author: Bdale Garbee <bdale@gag.com>
32366 Date:   Sat Aug 20 09:28:04 2011 -0600
32367
32368     update changelogs for Debian build
32369
32370 commit 787e4305a05e344c018abb872f788749203690d7
32371 Author: Bdale Garbee <bdale@gag.com>
32372 Date:   Sat Aug 20 09:24:29 2011 -0600
32373
32374     update changelogs for Debian build
32375
32376 commit 605627d03eeb9f34026a84134992ad061b5b3946
32377 Author: Bdale Garbee <bdale@gag.com>
32378 Date:   Fri Aug 19 22:47:50 2011 -0600
32379
32380     update changelogs for Debian build
32381
32382 commit 048b3eb45169e572f33c68ff152b89db9ef97d31
32383 Author: Keith Packard <keithp@keithp.com>
32384 Date:   Sun Aug 14 21:11:41 2011 -0700
32385
32386     altosui: Add 'On-board Data Logging' indicator to pad tab
32387     
32388     This shows whether the on-board data memory is full, or is ready to
32389     record the flight. This is indicated in the telemetry stream by a
32390     flight number of '0'.
32391     
32392     Signed-off-by: Keith Packard <keithp@keithp.com>
32393
32394 commit adb7d345963ab9981c49c7cc68c6b4d7156dce46
32395 Author: Keith Packard <keithp@keithp.com>
32396 Date:   Sun Aug 14 21:09:42 2011 -0700
32397
32398     altosui: Ancient log files used 'apogee' for 'coast' state
32399     
32400     2009-07-18-serial-004-flight-000 says 'apogee' for the apogee-detect
32401     phase of the flight; map this to coast so that this flight replays
32402     correctly (although the log terminates at apogee...)
32403     
32404     Signed-off-by: Keith Packard <keithp@keithp.com>
32405
32406 commit 4f64d66295a8f76680af8cfda4650aa4c4f8576d
32407 Author: Keith Packard <keithp@keithp.com>
32408 Date:   Sun Aug 14 19:19:50 2011 -0700
32409
32410     altos: Lost change that reported flight 0 when log memory was full
32411     
32412     commit 52ac83fedbfd380d14d4df2e79992bbdfba3552a added coded to check
32413     for a full flight log and complain with a special tone.
32414     
32415     It also reported flight 0 over telemetry, and that part of the patch
32416     got lost when moving to the new telemetry format. This patch
32417     resurrects that piece.
32418     
32419     Signed-off-by: Keith Packard <keithp@keithp.com>
32420
32421 commit ef7f60df841f1eb22b9cec0d7f68cf2c003d6b30
32422 Author: Keith Packard <keithp@keithp.com>
32423 Date:   Sun Aug 14 00:00:54 2011 -0700
32424
32425     altosui: Respect storage limits in flight log max config
32426     
32427     Compute the maximum flight log using the data returned from the 'f'
32428     command (total storage and erase block size). Limit menu to choices
32429     which fall within this limit, complain if the user asks for too big a value.
32430     
32431     Signed-off-by: Keith Packard <keithp@keithp.com>
32432
32433 commit 746d6a472a20243a8c0eacc8edf8e81e0641bc17
32434 Author: Keith Packard <keithp@keithp.com>
32435 Date:   Sun Aug 14 00:00:07 2011 -0700
32436
32437     altosui: don't set channel when using radio setting
32438     
32439     altos now sets the radio back to channel 0 when the radio setting is
32440     changed.
32441     
32442     Signed-off-by: Keith Packard <keithp@keithp.com>
32443
32444 commit 709485f20fb039f8dd087c8491c5f5a76718ae53
32445 Author: Keith Packard <keithp@keithp.com>
32446 Date:   Sat Aug 13 23:58:03 2011 -0700
32447
32448     altos: use raw height while waiting for landing
32449     
32450     This avoids any noise introduced by the kalman filter, making landing
32451     detection much more reliable. This patch also changes the interval to
32452     10s so that the height bounds can be increased to 4m.
32453     
32454     Signed-off-by: Keith Packard <keithp@keithp.com>
32455
32456 commit aa71c2cdcb417eba2a2d30792ece9a47b8b3fc82
32457 Author: Keith Packard <keithp@keithp.com>
32458 Date:   Sat Aug 13 23:56:55 2011 -0700
32459
32460     altos: Reset radio channel to zero when using radio setting
32461     
32462     Otherwise, it's hard to set the frequency over the radio link.
32463     
32464     Signed-off-by: Keith Packard <keithp@keithp.com>
32465
32466 commit 7f74761051f2a5ab45b82c4dd79a8569376bbe2e
32467 Author: Keith Packard <keithp@keithp.com>
32468 Date:   Sat Aug 13 23:56:06 2011 -0700
32469
32470     altos: Correct AO_CONFIG_MINOR from 6 to 7
32471     
32472     Forgot to bump this when adding radio setting.
32473     
32474     Signed-off-by: Keith Packard <keithp@keithp.com>
32475
32476 commit 924d56a4d2d8b16530cd378b18cfc5d6e08420ed
32477 Author: Keith Packard <keithp@keithp.com>
32478 Date:   Sat Aug 13 21:10:15 2011 -0700
32479
32480     altos: AltosSerial.flush_input shouldn't discard Interrupted exceptions
32481     
32482     The eeprom download code wants to interrupt serial communication so
32483     that it can stop downloading stuff in the middle of a run. Make
32484     flush_input pass the exception along instead of discarding it.
32485     
32486     Signed-off-by: Keith Packard <keithp@keithp.com>
32487
32488 commit dcd15032eec45f3fdd003050710ebd5b85052662
32489 Author: Keith Packard <keithp@keithp.com>
32490 Date:   Sat Aug 13 21:09:19 2011 -0700
32491
32492     altosui: Eliminate inter-chunk flush_input calls
32493     
32494     Once the serial line is nicely synchronized, we don't need to flush
32495     input between chunks. This speeds up eeprom downloading quite a bit.
32496     
32497     Signed-off-by: Keith Packard <keithp@keithp.com>
32498
32499 commit 3ba7b6196f68078f4ed4538c4e7fe30699dfe908
32500 Author: Keith Packard <keithp@keithp.com>
32501 Date:   Sat Aug 13 21:05:46 2011 -0700
32502
32503     altosui: Devices with log-format can also delete flights
32504     
32505     Any device with either flight-log-max or log-format can delete flights.
32506     
32507     Signed-off-by: Keith Packard <keithp@keithp.com>
32508
32509 commit 03e201e1acc8742399054e4ad36b533120ea1612
32510 Author: Keith Packard <keithp@keithp.com>
32511 Date:   Sat Aug 13 18:39:35 2011 -0700
32512
32513     altosui: Add support for TeleScience eeprom download
32514     
32515     Using the existing eeprom methods, fetch and save TeleScience eeprom
32516     data, storing to a filename generated from the serial/flight from the
32517     TM connected to the TS board.
32518     
32519     Signed-off-by: Keith Packard <keithp@keithp.com>
32520
32521 commit 5a3e96bef31959a287b8696778d7d8cf911a7dc4
32522 Author: Keith Packard <keithp@keithp.com>
32523 Date:   Sat Aug 13 18:36:18 2011 -0700
32524
32525     altosui: Clean up eeprom parsing a bit
32526     
32527     Export basic parsing and checksum functions for shared use.
32528     Create 'erased' function to check a chunk of eeprom data for data.
32529     
32530     Signed-off-by: Keith Packard <keithp@keithp.com>
32531
32532 commit b0ec30de37aa822ba66d25ceaa8cf8dc967b4371
32533 Author: Keith Packard <keithp@keithp.com>
32534 Date:   Sat Aug 13 18:31:08 2011 -0700
32535
32536     altos: wait 10s for companion to boot
32537     
32538     In case the companion is delayed while booting, retry the setup 10
32539     times with a 1s delay between tries.
32540     
32541     Signed-off-by: Keith Packard <keithp@keithp.com>
32542
32543 commit 41e5be32819d305c8268e6f992be91411ea13435
32544 Author: Keith Packard <keithp@keithp.com>
32545 Date:   Sat Aug 13 18:30:00 2011 -0700
32546
32547     altos: Send serial/flight to companion board
32548     
32549     Lets the companion log them for later matching with TeleMetrum log
32550     
32551     Signed-off-by: Keith Packard <keithp@keithp.com>
32552
32553 commit fa7dd04741bf3fd9cedc59ed3b45b69ef9312609
32554 Author: Keith Packard <keithp@keithp.com>
32555 Date:   Fri Aug 12 21:41:25 2011 -0700
32556
32557     altos: Send SPI message at flight state changes
32558     
32559     Get the companion board starting its data logging as soon as possible
32560     after boost starts.
32561     
32562     Signed-off-by: Keith Packard <keithp@keithp.com>
32563
32564 commit c7f540330c040c521f9d7626009a406e704a5e41
32565 Author: Keith Packard <keithp@keithp.com>
32566 Date:   Fri Aug 12 14:58:34 2011 -0700
32567
32568     altosui: Add companion support to the flight UI and CSV conversion
32569     
32570     Shows the companion data in a new tab. Also put companion data into
32571     CSV file.
32572     
32573     Signed-off-by: Keith Packard <keithp@keithp.com>
32574
32575 commit 18369c58e62bc64b969a7cf8be3103aa33c6d4aa
32576 Author: Keith Packard <keithp@keithp.com>
32577 Date:   Fri Aug 12 06:29:13 2011 -0700
32578
32579     altos: Check for companion init packet validity was busted
32580     
32581     Was using board_id == ~board_id instead of board_id ==
32582     ~board_id_inverse.
32583     
32584     Signed-off-by: Keith Packard <keithp@keithp.com>
32585
32586 commit aa642cf55c43188e9a21198d828d7ea90ff54280
32587 Author: Keith Packard <keithp@keithp.com>
32588 Date:   Fri Aug 12 05:42:05 2011 -0700
32589
32590     altos: add the 'L' command to show the status of a linked companion board
32591     
32592     This prints out whether there is a board connected, along with the
32593     various values fetched from it.
32594     
32595     Signed-off-by: Keith Packard <keithp@keithp.com>
32596
32597 commit f87f0787fa5aa528674f3f4919eb22646c87c25a
32598 Author: Keith Packard <keithp@keithp.com>
32599 Date:   Fri Aug 12 05:41:15 2011 -0700
32600
32601     altos: Make sure companion task exits cleanly when done
32602     
32603     Signed-off-by: Keith Packard <keithp@keithp.com>
32604
32605 commit ebe2ffb29944abc4d6a35889c7b5f3d9f2871077
32606 Author: Keith Packard <keithp@keithp.com>
32607 Date:   Fri Aug 12 05:38:16 2011 -0700
32608
32609     altos: Put SPI in slower mode when talking to companion board
32610     
32611     The AVR CPU on the other side just can't go very fast. This reduces
32612     the SPI clock by a factor of 16, just under 200kHz. As the companion
32613     commands are reasonably short, this shouldn't have a huge effect on
32614     overall SPI utilization.
32615     
32616     Signed-off-by: Keith Packard <keithp@keithp.com>
32617
32618 commit 30abbdc7ffcfc809b4a3fc31486fe968161ea225
32619 Author: Keith Packard <keithp@keithp.com>
32620 Date:   Sat Jul 9 16:59:16 2011 -0700
32621
32622     altos: Add SPI-based companion board support
32623     
32624     This sends current flight state information and retrieves companion
32625     data to include in telemetry.
32626     
32627     Signed-off-by: Keith Packard <keithp@keithp.com>
32628
32629 commit 578c4b17b8f62f2727654ebda78ee139f9fe13fa
32630 Author: Keith Packard <keithp@keithp.com>
32631 Date:   Sat Aug 13 18:38:38 2011 -0700
32632
32633     altos: Don't try to use non-basestations for remote eeprom download
32634     
32635     Companion boards may also have eeprom data to fetch; don't try to use
32636     them as a radio.
32637     
32638     Signed-off-by: Keith Packard <keithp@keithp.com>
32639
32640 commit bf06af154e232d4caa1585a1d6d5279a075292e4
32641 Author: Keith Packard <keithp@keithp.com>
32642 Date:   Fri Aug 12 21:43:56 2011 -0700
32643
32644     altos/altosui: Report log format in the version command
32645     
32646     This will make it easier to figure out what the contents of the flash
32647     should look like from altosui; the current 'guessing' mechanism will
32648     not scale to many more formats.
32649     
32650     Signed-off-by: Keith Packard <keithp@keithp.com>
32651
32652 commit c2f2f519dbc8ce233ab36222088c1be6b1362f01
32653 Author: Keith Packard <keithp@keithp.com>
32654 Date:   Sat Aug 13 18:28:38 2011 -0700
32655
32656     altos: re-write a bit of GPS parsing code to reduce size
32657     
32658     Use a local variable while computing hdop.
32659     Place the next incoming character in data instead of pdata.
32660     
32661     Saved a surprising amount of memory.
32662     
32663     Signed-off-by: Keith Packard <keithp@keithp.com>
32664
32665 commit 7bcf25606cd5892d58295649f3d475d284494ee8
32666 Author: Keith Packard <keithp@keithp.com>
32667 Date:   Fri Aug 12 05:26:09 2011 -0700
32668
32669     altos: shrink text space from ao_config.c
32670     
32671     Eliminate redundant config initializers by setting minor to zero and
32672     letting upgrade code handle all of the new values.
32673     
32674     Stop computing (fake) frequency when showing radio channel
32675     Stop computing feet when showing main deploy height
32676     
32677     Signed-off-by: Keith Packard <keithp@keithp.com>
32678
32679 commit 313d740b5284b24f1cc7a1ba5779136b55d49ebe
32680 Author: Keith Packard <keithp@keithp.com>
32681 Date:   Sat Aug 13 18:33:07 2011 -0700
32682
32683     libaltos: Mis-allocated device list in libaltos
32684     
32685     Would overrun mis-allocated array, causing chaos.
32686     
32687     Signed-off-by: Keith Packard <keithp@keithp.com>
32688
32689 commit 3b87dd6f46922cf5f98deb2dffa2148c4244e48e
32690 Author: Keith Packard <keithp@keithp.com>
32691 Date:   Sat Aug 13 15:00:14 2011 -0700
32692
32693     ao-tools: ao-list was crashing with more than 3 devices connected
32694     
32695     the list of devices was getting realloced for each new device, but
32696     that realloc was too small.
32697     
32698     Signed-off-by: Keith Packard <keithp@keithp.com>
32699
32700 commit 640422c028a2be898aa3a9048a0f6fad2e43dd8d
32701 Author: Keith Packard <keithp@keithp.com>
32702 Date:   Thu Aug 11 16:11:34 2011 -0700
32703
32704     altos: remove monitor disable stubs from altimeter code
32705     
32706     Monitor mode in the ground-station boards must be disabled when the
32707     radio is going to be used for another purpose, or the radio parameters
32708     changed. That places monitor-mode disable calls in other parts of the
32709     system which are shared with the altimeter code.
32710     
32711     Elide the ao_set_monitor calls for builds which do not include any
32712     monitoring code.
32713     
32714     Signed-off-by: Keith Packard <keithp@keithp.com>
32715
32716 commit 1d13460412046c53f36466193329caaa657bb278
32717 Author: Keith Packard <keithp@keithp.com>
32718 Date:   Thu Aug 11 15:59:47 2011 -0700
32719
32720     altos: Apply igniter boot pulse-width reduction to telemini
32721     
32722     TeleMini needs the same fix as TeleMetrum to reduce startup igniter
32723     pulses.
32724     
32725     Signed-off-by: Keith Packard <keithp@keithp.com>
32726
32727 commit b520c32bcddabd42c07ceafa827694a3ae23a76f
32728 Author: Keith Packard <keithp@keithp.com>
32729 Date:   Thu Aug 11 15:57:58 2011 -0700
32730
32731     altos: Pull igniter pins low as soon as possible at boot time
32732     
32733     This reduces the pulse width on the igniter circuit caused by the
32734     default cc1111 pin configuration at powerup time.
32735     
32736     Signed-off-by: Keith Packard <keithp@keithp.com>
32737
32738 commit 566b16e67be38c6425e616a5c38d641c4e1a9b12
32739 Author: Keith Packard <keithp@keithp.com>
32740 Date:   Wed Aug 10 22:43:26 2011 -0700
32741
32742     doc: Add 1.0 release notes.
32743     
32744     Signed-off-by: Keith Packard <keithp@keithp.com>
32745
32746 commit a07b07d48f71b9a11e73a82db075cc57bad0c09f
32747 Author: Keith Packard <keithp@keithp.com>
32748 Date:   Wed Aug 10 22:14:32 2011 -0700
32749
32750     doc: Add release notes, include them in altusmetrum doc. Shuffle altusmetrum
32751     
32752     This adds release notes and includes them in the main altusmetrum doc
32753     as well as making stand-alone html available for inclusion in the website.
32754     
32755     Signed-off-by: Keith Packard <keithp@keithp.com>
32756
32757 commit 5aa3e49f794ba5ed2680016f3dca47d67ae99836
32758 Author: Keith Packard <keithp@keithp.com>
32759 Date:   Wed Aug 10 18:32:05 2011 -0700
32760
32761     doc: Add telemetry docs to debian/linux/mac/windows packages
32762     
32763     Signed-off-by: Keith Packard <keithp@keithp.com>
32764
32765 commit 7283deaa91e752acc45018ef2ea2f560b09af354
32766 Author: Keith Packard <keithp@keithp.com>
32767 Date:   Wed Aug 10 18:22:16 2011 -0700
32768
32769     doc: Describe 'stats' tab in Graph UI, 'Graph Flight' button.
32770     
32771     Signed-off-by: Keith Packard <keithp@keithp.com>
32772
32773 commit 21837e0026c87635abf4baf2c6c574a7b274f449
32774 Author: Keith Packard <keithp@keithp.com>
32775 Date:   Wed Aug 10 18:14:10 2011 -0700
32776
32777     doc: Document Ignite Mode and Pad Orientation configuration options
32778     
32779     Signed-off-by: Keith Packard <keithp@keithp.com>
32780
32781 commit 967c9d5ee691f87bf0d1e49ba055eb366e513e6a
32782 Author: Keith Packard <keithp@keithp.com>
32783 Date:   Wed Aug 10 17:43:58 2011 -0700
32784
32785     doc: Update altusmetrum.xsl for v1.0 software and TeleMini
32786     
32787     Add TeleMini references and sections as appropriate, update AltosUI
32788     docs to describe new bits.
32789     
32790     Signed-off-by: Keith Packard <keithp@keithp.com>
32791
32792 commit be65308182363ca87db69db530297933324f3806
32793 Author: Keith Packard <keithp@keithp.com>
32794 Date:   Wed Aug 10 16:01:25 2011 -0700
32795
32796     Bump version to 0.9.6.0
32797     
32798     Signed-off-by: Keith Packard <keithp@keithp.com>
32799
32800 commit 9f5623c8c32a38eaeb63fa74ab370025ac015d52
32801 Author: Keith Packard <keithp@keithp.com>
32802 Date:   Wed Aug 10 15:00:44 2011 -0700
32803
32804     altosui: Move launch-sites.txt file to altusmetrum.org
32805     
32806     The official URL is now:
32807     
32808         http://www.altusmetrum.org/AltOS/launch-sites.txt
32809     
32810     Signed-off-by: Keith Packard <keithp@keithp.com>
32811
32812 commit 4962bcf1ce15c21a946ea718bd676b901f0f2bd0
32813 Author: Keith Packard <keithp@keithp.com>
32814 Date:   Wed Aug 10 14:35:21 2011 -0700
32815
32816     altosui: Plot reasonable data from Tm files
32817     
32818     Don't plot acceleration based on baro data.
32819     Display baro speed if accel speed isn't available.
32820     
32821     Signed-off-by: Keith Packard <keithp@keithp.com>
32822
32823 commit 01b9352eb8ca0e4e2d023ce973c4e863cdcc0c51
32824 Author: Keith Packard <keithp@keithp.com>
32825 Date:   Wed Aug 10 14:34:39 2011 -0700
32826
32827     altosui: Prune telemetry file graphs to just the flight
32828     
32829     Remove data earlier than 1 second before boost and data after landing.
32830     
32831     Signed-off-by: Keith Packard <keithp@keithp.com>
32832
32833 commit 9e1487b1a5db0afd1d23c86d82c60b1c1a62aab0
32834 Author: Keith Packard <keithp@keithp.com>
32835 Date:   Wed Aug 10 14:08:21 2011 -0700
32836
32837     altosui: Add a 'Graph Flight' button to the 'landed'  tab
32838     
32839     This lets you see the results of a flight as soon as the rocket lands
32840     using the telemetry data.
32841     
32842     Signed-off-by: Keith Packard <keithp@keithp.com>
32843
32844 commit 6ac604d11de44cd824f09e4b467264a2b74be7bd
32845 Author: Keith Packard <keithp@keithp.com>
32846 Date:   Wed Aug 10 13:35:26 2011 -0700
32847
32848     Altosui: Add flight statistics tab to graph window
32849     
32850     Provide basic flight stats alongside the flight graph.
32851     
32852     Signed-off-by: Keith Packard <keithp@keithp.com>
32853
32854 commit 94d9a2c36fabdf24d6a0b985851e95e4eb181fd9
32855 Author: Keith Packard <keithp@keithp.com>
32856 Date:   Tue Aug 9 18:28:19 2011 -0700
32857
32858     altosui: Ship TeleMini v1.0 firmware with fat blobs
32859     
32860     Signed-off-by: Keith Packard <keithp@keithp.com>
32861
32862 commit a680ce61bdcffeacb7f0e4dcef71a03cb7cfe07d
32863 Author: Keith Packard <keithp@keithp.com>
32864 Date:   Tue Aug 9 18:27:19 2011 -0700
32865
32866     altosui: Ensure serial code tracks reply nesting correctly
32867     
32868     Trap any exceptional return conditions from 'get_reply' to make sure
32869     in_reply gets decremented.
32870     
32871     Signed-off-by: Keith Packard <keithp@keithp.com>
32872
32873 commit 12bfa6cc42e3689f09abae2bd2584cbacf2aa2e0
32874 Author: Keith Packard <keithp@keithp.com>
32875 Date:   Tue Aug 9 18:26:07 2011 -0700
32876
32877     altosui: Don't export product defs from libaltos
32878     
32879     As we add new products, that would change the ABI generated for java,
32880     invaliding old library versions sitting around for windows and mac.
32881     
32882     Signed-off-by: Keith Packard <keithp@keithp.com>
32883
32884 commit 81ad44d4b6d9ad2f6b91d0906e8543da82da424f
32885 Author: Keith Packard <keithp@keithp.com>
32886 Date:   Tue Aug 9 14:26:43 2011 -0700
32887
32888     altos: Switch telemini from v0.1 to v1.0
32889     
32890     TeleMini production boards are firmware compatible with the v0.1
32891     design, so instead of creating another product, just rename the
32892     existing one.
32893     
32894     Signed-off-by: Keith Packard <keithp@keithp.com>
32895
32896 commit f3985ef8bc69bcec13ce155567a8ed7c5c6051cb
32897 Author: Keith Packard <keithp@keithp.com>
32898 Date:   Mon Aug 8 20:41:34 2011 -0700
32899
32900     altosui: Add close button to 'fire' dialog
32901     
32902     Easier to hit than the tiny close box in the frame.
32903     
32904     Signed-off-by: Keith Packard <keithp@keithp.com>
32905
32906 commit cbf54a826d12c49b1b1996be247869d5ff4e2236
32907 Author: Keith Packard <keithp@keithp.com>
32908 Date:   Mon Aug 8 20:38:44 2011 -0700
32909
32910     altosui: Make set of telemetries to use while scanning configurable
32911     
32912     with a preference to remember across application runs.
32913     
32914     Signed-off-by: Keith Packard <keithp@keithp.com>
32915
32916 commit 7146311d9df541e075b4450cf9656a9aa7ffdd93
32917 Author: Keith Packard <keithp@keithp.com>
32918 Date:   Mon Aug 8 20:38:14 2011 -0700
32919
32920     altosui: Reading serial from swing thread only bad if remote
32921     
32922     Make the warning on this condition based on whether the link is remote.
32923     
32924     Signed-off-by: Keith Packard <keithp@keithp.com>
32925
32926 commit 2662c577a895c96fce7b2bf815b9e752d2dfbde6
32927 Author: Keith Packard <keithp@keithp.com>
32928 Date:   Mon Aug 8 18:53:59 2011 -0700
32929
32930     altosui: Remove unused AltosConfigData from AltosTelemetryReader
32931     
32932     Now that AltosSerial manages this data, it's not needed here.
32933     
32934     Signed-off-by: Keith Packard <keithp@keithp.com>
32935
32936 commit 13eacb49de4312509c3a729a31dcda4d601f8a8b
32937 Author: Keith Packard <keithp@keithp.com>
32938 Date:   Mon Aug 8 18:53:27 2011 -0700
32939
32940     altosui: Flush radio setting to serial device
32941     
32942     When changing frequencies, make sure the device hears about it.
32943     
32944     Signed-off-by: Keith Packard <keithp@keithp.com>
32945
32946 commit 97cf285d041062ae473c2823438b81c8fffe7f67
32947 Author: Keith Packard <keithp@keithp.com>
32948 Date:   Mon Aug 8 18:53:03 2011 -0700
32949
32950     altosui: Remove debugging printfs from AltosSerial
32951     
32952     Signed-off-by: Keith Packard <keithp@keithp.com>
32953
32954 commit 364102d29ff4de0c252774f26417587fa88b7467
32955 Author: Keith Packard <keithp@keithp.com>
32956 Date:   Mon Aug 8 18:52:11 2011 -0700
32957
32958     altosui: Show AltosFrequency in scan results
32959     
32960     Include frequency and description instead of just frequency.
32961     
32962     Signed-off-by: Keith Packard <keithp@keithp.com>
32963
32964 commit d4cc16e111229b02d1081e2693ace0b33f662498
32965 Author: Keith Packard <keithp@keithp.com>
32966 Date:   Mon Aug 8 18:51:16 2011 -0700
32967
32968     altosui: Save frequency after setting it in AltosFlightUI
32969     
32970     Otherwise we'll just save the old frequency.
32971     
32972     Signed-off-by: Keith Packard <keithp@keithp.com>
32973
32974 commit 81bb6f42d8b859195ea5a35806c42d98ba82e8e1
32975 Author: Keith Packard <keithp@keithp.com>
32976 Date:   Mon Aug 8 18:49:45 2011 -0700
32977
32978     altosui: Have single radio_to_frequency function
32979     
32980     This takes all three radio params (setting, cal, channel) and computes
32981     the current frequency.
32982     
32983     Signed-off-by: Keith Packard <keithp@keithp.com>
32984
32985 commit c8c01684fa011acf3bbe5c3ebbc84aa8e8457a5e
32986 Author: Keith Packard <keithp@keithp.com>
32987 Date:   Mon Aug 8 18:47:36 2011 -0700
32988
32989     altosui: A few misc cleanups.
32990     
32991     Initialize radio_setting as it won't be set for older devices ever.
32992     Remove unused set_radio_frequency function from AltosConfigUI.
32993     
32994     Signed-off-by: Keith Packard <keithp@keithp.com>
32995
32996 commit dd383b86b9a13d7af2d6b07f4fb85ccc666ed898
32997 Author: Keith Packard <keithp@keithp.com>
32998 Date:   Mon Aug 8 18:45:36 2011 -0700
32999
33000     altosui: Must set radio calibration before radio setting
33001     
33002     Setting the radio calibration erases any previous radio setting as
33003     the radio calibration change invalidates any previously computed radio
33004     setting for a specific frequency.
33005     
33006     Hence, the radio setting must be configured *after* the radio
33007     calibration value lest it be ignored.
33008     
33009     Signed-off-by: Keith Packard <keithp@keithp.com>
33010
33011 commit 40544dbfe09c64f7764a5f0686415805611fab25
33012 Author: Keith Packard <keithp@keithp.com>
33013 Date:   Mon Aug 8 17:46:04 2011 -0700
33014
33015     altos: minor type in comment about accel correction
33016     
33017     Kurt Roeckx found a typo in the equations describing how the
33018     accelerometer is corrected by the 5V reference measurement.
33019     
33020     Signed-off-by: Keith Packard <keithp@keithp.com>
33021
33022 commit a315b200cd0da1a964f5395cd59660be1b49672b
33023 Author: Keith Packard <keithp@keithp.com>
33024 Date:   Mon Aug 8 12:31:48 2011 -0700
33025
33026     altosui: Pull out BlueTooth support
33027     
33028     This leaves the code in place, but commented out so that it isn't used
33029     until we've got a bluetooth device ready for use.
33030     
33031     Signed-off-by: Keith Packard <keithp@keithp.com>
33032
33033 commit a65daf94e8fe3e22f770ef76d9104c3dd11d0330
33034 Author: Keith Packard <keithp@keithp.com>
33035 Date:   Mon Aug 8 12:25:30 2011 -0700
33036
33037     altosui: altimeter is not spelled altimter
33038     
33039     Signed-off-by: Keith Packard <keithp@keithp.com>
33040
33041 commit 84ba927f503f81543dec286c4881be30bb5e60c5
33042 Author: Keith Packard <keithp@keithp.com>
33043 Date:   Mon Aug 8 02:05:28 2011 -0700
33044
33045     Set version to 0.9.5.0
33046     
33047     Make the frequency-based systems distinct
33048     
33049     Signed-off-by: Keith Packard <keithp@keithp.com>
33050
33051 commit 0e3e4f9c1e6a6bf972514f12c9d622258aa2aec2
33052 Author: Keith Packard <keithp@keithp.com>
33053 Date:   Mon Aug 8 01:47:29 2011 -0700
33054
33055     altosui: Convert from channels to frequencies
33056     
33057     Major areas:
33058     
33059      * Preferences are stored as frequencies instead
33060        of channels
33061     
33062      * Serial configuration is done using frequencies
33063     
33064      * UI is presented with frequency lists
33065     
33066     Signed-off-by: Keith Packard <keithp@keithp.com>
33067
33068 commit f03ca0ab8799bfa5100eaa2577cfd7b9c37d05bf
33069 Author: Keith Packard <keithp@keithp.com>
33070 Date:   Sun Aug 7 14:52:29 2011 -0700
33071
33072     altosui: Add dialogs to configure 'common' frequencies
33073     
33074     These are stored in preferences, but not yet hooked up to the TM/TD
33075     configure dialogs
33076     
33077     Signed-off-by: Keith Packard <keithp@keithp.com>
33078
33079 commit ba5dc35388d28c5769eaabc970c4d4b8c2c2ff9c
33080 Author: Keith Packard <keithp@keithp.com>
33081 Date:   Wed Aug 3 23:07:53 2011 -0700
33082
33083     altos: Add ability to set arbitrary radio frequency
33084     
33085     This adds a separate config parameter to control the raw radio
33086     frequency setting, allowing the user to select an arbitrary frequency
33087     instead of being forced to choose one of the 10 pre-defined 'channels'.
33088     
33089     Signed-off-by: Keith Packard <keithp@keithp.com>
33090
33091 commit e1e5c9b3e24670e9f58c6f7389eafb3338efdb40
33092 Author: Keith Packard <keithp@keithp.com>
33093 Date:   Mon Aug 8 12:08:45 2011 -0700
33094
33095     altos: Remove pad_orientation functions from non-accel devices
33096     
33097     Anything without an accelerometer can't detect pad orientation.
33098     
33099     Signed-off-by: Keith Packard <keithp@keithp.com>
33100
33101 commit 7207a95823dc2a27906759528dd88256cb20679f
33102 Author: Keith Packard <keithp@keithp.com>
33103 Date:   Mon Aug 8 12:04:00 2011 -0700
33104
33105     altosui: Change button to 'Configure Altimeter'
33106     
33107     Now that we've got more than one model.
33108     
33109     Signed-off-by: Keith Packard <keithp@keithp.com>
33110
33111 commit 30670732ca3f5a34025ab4bc4c69afa45637b4d6
33112 Author: Keith Packard <keithp@keithp.com>
33113 Date:   Mon Aug 8 11:58:23 2011 -0700
33114
33115     altos: Correct flight log max on Tm to 5k
33116     
33117     Was using the wrong #define name to check for Tm/Tn devices that use
33118     internal flash for data storage.
33119     
33120     Signed-off-by: Keith Packard <keithp@keithp.com>
33121
33122 commit a67c16958df8e60b131b01e00fd5bca590af0e7d
33123 Author: Bdale Garbee <bdale@gag.com>
33124 Date:   Mon Aug 8 09:38:53 2011 -0600
33125
33126     update changelogs for Debian build
33127
33128 commit 4a507898d6de631bb2e8ed4aa3e0933d97222323
33129 Author: Bdale Garbee <bdale@gag.com>
33130 Date:   Mon Aug 8 09:34:59 2011 -0600
33131
33132     rewind changelog for re-build of 0.9.4.5
33133
33134 commit 5082b4998b8a9787e0e2f4d96d912e434aa9b81a
33135 Author: Bdale Garbee <bdale@gag.com>
33136 Date:   Mon Aug 8 09:31:18 2011 -0600
33137
33138     clean up all existing lintian warnings
33139
33140 commit f26c7172a1b2b5344fae6ede562f2da7a56b80e3
33141 Author: Bdale Garbee <bdale@gag.com>
33142 Date:   Mon Aug 8 07:54:14 2011 -0600
33143
33144     build depend on bluetooth dev package
33145
33146 commit 3cad81b0ebb52352c66643a2587e94a2b693a2d2
33147 Author: Bdale Garbee <bdale@gag.com>
33148 Date:   Mon Aug 8 07:38:48 2011 -0600
33149
33150     stop doing automatic tag push during builds
33151
33152 commit ebaad64525119c0fdacf382adc2c99e5df5be23f
33153 Author: Bdale Garbee <bdale@gag.com>
33154 Date:   Mon Aug 8 07:37:23 2011 -0600
33155
33156     update changelogs for Debian build
33157
33158 commit 6f9f75cbfccf975204ab847ca0e9cf86188716c6
33159 Author: Bdale Garbee <bdale@gag.com>
33160 Date:   Mon Aug 8 07:35:47 2011 -0600
33161
33162     update changelogs for Debian build
33163
33164 commit 7c94945690a6ff5cbf872026fd6411a30089c7b1
33165 Author: Bdale Garbee <bdale@gag.com>
33166 Date:   Mon Aug 8 07:33:09 2011 -0600
33167
33168     simplify version in last changelog entry so git-dch is less confused
33169
33170 commit 6d5e5b0be237d5448aa9d15decd6127cf41ca7b2
33171 Author: Bdale Garbee <bdale@gag.com>
33172 Date:   Mon Aug 8 07:30:42 2011 -0600
33173
33174     update version for a Bdale build for use turning on TeleMini v1.0
33175
33176 commit 6492218fc316f8cf6214a577807a8dd0a80a9b6a
33177 Author: Keith Packard <keithp@keithp.com>
33178 Date:   Tue Aug 2 19:07:56 2011 -0700
33179
33180     altos/altosui: Add pad orientation configure option
33181     
33182     Allow TeleMetrum to be operated with the antenna pointing downwards on
33183     the pad. This provides some additional flexibility when designing an
33184     ebay.
33185     
33186     The accelerometer calibration levels are flipped around to match, so
33187     no re-calibration should be required.
33188     
33189     Signed-off-by: Keith Packard <keithp@keithp.com>
33190
33191 commit 11a2bb8e28df7ed87542f2ee726f877971f5d52a
33192 Author: Keith Packard <keithp@keithp.com>
33193 Date:   Tue Aug 2 17:41:53 2011 -0700
33194
33195     altosui: Add idle monitor dialog
33196     
33197     This monitors a telemetrum device in idle mode, either directly or through a
33198     teledongle, allowing the GPS status and batteries to be monitored
33199     without resorting to placing the device in pad mode.
33200     
33201     Signed-off-by: Keith Packard <keithp@keithp.com>
33202
33203 commit 3cc2eed6cdafe788a8617ab45c6664077e76411e
33204 Author: Keith Packard <keithp@keithp.com>
33205 Date:   Tue Aug 2 18:01:52 2011 -0700
33206
33207     altosui: Simple timeouts don't work with query data
33208     
33209     To get the query to come back, it's best to abort and retry the
33210     command, other wise the command may have been lost to the previous
33211     connection.
33212     
33213     Signed-off-by: Keith Packard <keithp@keithp.com>
33214
33215 commit 37c41c962ea4631e62307a57d2ce6572b87fd743
33216 Author: Keith Packard <keithp@keithp.com>
33217 Date:   Tue Aug 2 17:41:02 2011 -0700
33218
33219     altosui: Parse accel cal from 'c s' command
33220     
33221     These fields weren't used before, so the code to parse them hadn't
33222     been written.
33223     
33224     Signed-off-by: Keith Packard <keithp@keithp.com>
33225
33226 commit 95201e7fe4a6a7ec42321e8dbad3aea3bbf4c840
33227 Author: Keith Packard <keithp@keithp.com>
33228 Date:   Tue Aug 2 17:40:02 2011 -0700
33229
33230     altosui: Standard text field in flight UI needs more width (now 20)
33231     
33232     Latitude and longitude take more than 16 characters.
33233     
33234     Signed-off-by: Keith Packard <keithp@keithp.com>
33235
33236 commit 82e04a0e3a3296288a524ec582785a36fd644331
33237 Author: Keith Packard <keithp@keithp.com>
33238 Date:   Tue Aug 2 02:09:23 2011 -0700
33239
33240     altos: Require sequencing through 'main' state before landing
33241     
33242     The old version of the code would permit the flight to go straight
33243     from 'drogue' to 'landed' without passing through 'main' at all. This
33244     meant that a false landing detection would leave the main charge
33245     unfired, potentially causing the airframe to land on drogue alone.
33246     
33247     Requiring that the flight sequence pass through main ensures that the
33248     main charge will get fired at the right time, although if the airframe
33249     lands higher than that altitude, it will not go to 'landed' mode ever.
33250     
33251     Signed-off-by: Keith Packard <keithp@keithp.com>
33252
33253 commit 6c55bf35b11ae3ddae152795072d69e98184bac1
33254 Author: Keith Packard <keithp@keithp.com>
33255 Date:   Tue Aug 2 01:49:35 2011 -0700
33256
33257     altos: Reduce height averaging filter time constant
33258     
33259     Using the longer time constant could lead to false landing detection
33260     just after apogee, which is definitely not a good idea.
33261     
33262     Signed-off-by: Keith Packard <keithp@keithp.com>
33263
33264 commit e19a117b99e8374ca0e8e35948e23bc672ad1a32
33265 Author: Keith Packard <keithp@keithp.com>
33266 Date:   Mon Aug 1 22:33:38 2011 -0700
33267
33268     altos: Average height values for landing detection
33269     
33270     Instead of using the direct output of the kalman filter and hoping
33271     that is quiet enough to detect landing, filter that with a long
33272     exponential decay filter and then check to make sure that doesn't
33273     change more than 2m in 5 seconds as a trigger for landing detection.
33274     
33275     Tested with existing telemetrum flight logs and it correctly detects
33276     landing in all cases.
33277     
33278     Signed-off-by: Keith Packard <keithp@keithp.com>
33279
33280 commit 146a0ab223e8d9b376125d1e59f597f6d7851a9b
33281 Author: Keith Packard <keithp@keithp.com>
33282 Date:   Sun Jul 17 18:49:55 2011 -0700
33283
33284     altos: Add ability to read new TELEM files to ao_flight_test
33285     
33286     Not that telem files are currently very useful as the kalman filter
33287     gets completly confused by the variable steps caused by missing data, but...
33288     
33289     Signed-off-by: Keith Packard <keithp@keithp.com>
33290
33291 commit 6795d353be91df96a571cebc237e6a54a065a380
33292 Author: Keith Packard <keithp@keithp.com>
33293 Date:   Sun Jul 17 16:44:10 2011 -0700
33294
33295     altosui: Change continutity colors to yellow/magenta
33296     
33297     Makes them stand apart from the accel/speed lines
33298     
33299     Signed-off-by: Keith Packard <keithp@keithp.com>
33300
33301 commit 7f6cce5749724dbb836aaa27bbeedf977106f6f3
33302 Author: Keith Packard <keithp@keithp.com>
33303 Date:   Sun Jul 17 16:43:41 2011 -0700
33304
33305     Add HARA Bragg Farms site
33306     
33307     Signed-off-by: Keith Packard <keithp@keithp.com>
33308
33309 commit 6796d9e253a808824ba32cdb008da8bf302780fc
33310 Author: Keith Packard <keithp@keithp.com>
33311 Date:   Sun Jul 17 15:53:13 2011 -0700
33312
33313     Fix NCR Pawnee location
33314     
33315     Signed-off-by: Keith Packard <keithp@keithp.com>
33316
33317 commit ddef3e4ec1b3ff86b164f83807c34c2a78f73eb8
33318 Author: Keith Packard <keithp@keithp.com>
33319 Date:   Sun Jul 17 15:45:07 2011 -0700
33320
33321     altosui: Mark preload site location with red circles (like launch)
33322     
33323     Just to show where on the map the official launch location is.
33324     
33325     Signed-off-by: Keith Packard <keithp@keithp.com>
33326
33327 commit 1f3f3d575572eff33a2bc7a53d4691e59a428450
33328 Author: Keith Packard <keithp@keithp.com>
33329 Date:   Sun Jul 17 15:09:55 2011 -0700
33330
33331     altosui: Add a bunch more site locations
33332     
33333     BALLS, Rio Rancho, METRA, QRS Cedar Grove and Hudson Ranch
33334     
33335     Signed-off-by: Keith Packard <keithp@keithp.com>
33336
33337 commit fef42e0d9e0a20bdbd32e052749fc63575515e1c
33338 Author: Keith Packard <keithp@keithp.com>
33339 Date:   Sun Jul 17 11:29:13 2011 -0700
33340
33341     altosui: Add launch-sites.txt
33342     
33343     Contains a few of our favorites.
33344     
33345     Signed-off-by: Keith Packard <keithp@keithp.com>
33346
33347 commit 81cac174c80ee42d9e94c6500da7c4c760c3ce67
33348 Author: Keith Packard <keithp@keithp.com>
33349 Date:   Sun Jul 17 11:25:47 2011 -0700
33350
33351     altosui: Download list of site locations for map preloading
33352     
33353     The current URL for this is:
33354     http://gag.com/~keithp/launch-sites.txt
33355     
33356     The format is:
33357     <site-name>:<lat>:<lon>
33358     
33359     lat and lon are both in signed decimal degrees.
33360     
33361     Signed-off-by: Keith Packard <keithp@keithp.com>
33362
33363 commit f7cd8317bf78ece334e1ceb0263b875ca43bbbd2
33364 Merge: 51796e2 a482d90
33365 Author: Keith Packard <keithp@keithp.com>
33366 Date:   Sun Jul 17 08:17:44 2011 -0700
33367
33368     Merge branch 'preload-maps'
33369
33370 commit 51796e2f1ebce3ee8dc1ac90648381410c1379ee
33371 Author: Keith Packard <keithp@keithp.com>
33372 Date:   Mon May 23 11:32:29 2011 -0700
33373
33374     altos, altosui: Add igniter mode (dual, apogee, main)
33375     
33376     This provides for redundant charges for either apogee or main.
33377     
33378     Signed-off-by: Keith Packard <keithp@keithp.com>
33379
33380 commit 1332ed55192f22525f31574f60fae4c6579e6f7f
33381 Author: Keith Packard <keithp@keithp.com>
33382 Date:   Sun Jul 17 08:13:15 2011 -0700
33383
33384     Set version to 0.9.4.4
33385     
33386     Signed-off-by: Keith Packard <keithp@keithp.com>
33387
33388 commit a482d904a3f391c3a24df3660acb3f3696aa6766
33389 Author: Anthony Towns <aj@erisian.com.au>
33390 Date:   Sat Jul 16 23:08:49 2011 -0700
33391
33392     altosui: Make sure degree and minute values are visible (map preload)
33393     
33394     Set min size to preferred size so that the value remains visible
33395     instead of snapping to 0 pixels wide.
33396     
33397     Signed-off-by: Keith Packard <keithp@keithp.com>
33398
33399 commit 1681c57cbbfc5214dbc2a519e54ce9f29ffe3921
33400 Author: Keith Packard <keithp@keithp.com>
33401 Date:   Sat Jul 16 22:43:34 2011 -0700
33402
33403     altosui: Remove a bunch of sitemap debugging printfs
33404     
33405     Seems to work, let's get less chatty
33406     
33407     Signed-off-by: Keith Packard <keithp@keithp.com>
33408
33409 commit 0a4d934f6e2914bfe2d965630543f029a1576c11
33410 Author: Keith Packard <keithp@keithp.com>
33411 Date:   Sat Jul 16 22:34:44 2011 -0700
33412
33413     altosui: Display full map preload area in view.
33414     
33415     This involved fixing the map view to support arbitrary sizes, and then
33416     exposing a synchronous tile loading API so that the progress bar could
33417     be used to show tile loading progress.
33418     
33419     Signed-off-by: Keith Packard <keithp@keithp.com>
33420
33421 commit abb8510b97ce9cbbff0275cc31f74780fe1ce138
33422 Merge: 0929ee3 00e6981
33423 Author: Keith Packard <keithp@keithp.com>
33424 Date:   Sat Jul 16 21:06:37 2011 -0700
33425
33426     Merge branch 'scan-telemetry' into preload-maps
33427
33428 commit 00e6981c2e0a668864fcf391932855cd8942140c
33429 Author: Keith Packard <keithp@keithp.com>
33430 Date:   Sat Jul 16 21:05:06 2011 -0700
33431
33432     altosui: Flush telemetry lines before starting to watch for scan results
33433     
33434     This prevents pending telemetry lines from being incorrectly
33435     attributed to the wrong channel/telemetry.
33436     
33437     Signed-off-by: Keith Packard <keithp@keithp.com>
33438
33439 commit 0929ee32f753255cbe1474988cb41a5a86d29a0e
33440 Author: Keith Packard <keithp@keithp.com>
33441 Date:   Sat Jul 16 17:37:20 2011 -0700
33442
33443     altosui: Try to avoid resize weirdness with map preloading
33444     
33445     grid bag + box does some strange stuff, this appears to avoid the
33446     worst of the interactions.
33447     
33448     Signed-off-by: Keith Packard <keithp@keithp.com>
33449
33450 commit 225073fd822f9861a83d65386c29fda9b37bf273
33451 Author: Keith Packard <keithp@keithp.com>
33452 Date:   Sat Jul 16 16:37:40 2011 -0700
33453
33454     altosui: Add map preloading GUI
33455     
33456     Provide a way to manually enter latitude and longitude, preview the
33457     map area while downloading a 9x9 grid of map tiles to be used when
33458     monitoring flights without network access.
33459     
33460     Signed-off-by: Keith Packard <keithp@keithp.com>
33461
33462 commit cbd14ba103ee5e3c5eec18e3a4ff13c320b98634
33463 Author: Keith Packard <keithp@keithp.com>
33464 Date:   Sat Jul 16 20:44:51 2011 -0700
33465
33466     altosui: Set 'seen' bits in legacy telemetry packet reader
33467     
33468     Otherwise, the 'scan' code won't show detected flight computers.
33469     
33470     Signed-off-by: Keith Packard <keithp@keithp.com>
33471
33472 commit e905042879147dd86241bf2dcc7437e5a6eb7578
33473 Author: Keith Packard <keithp@keithp.com>
33474 Date:   Sat Jul 16 20:43:57 2011 -0700
33475
33476     altosui: Initialize channel and telemetry before use in ScanUI
33477     
33478     Otherwise we try to use telemetry format 0, which means 'no telemetry'.
33479     
33480     Signed-off-by: Keith Packard <keithp@keithp.com>
33481
33482 commit 941b90a4905e34936d24a25ca90ac04eb6f5a792
33483 Author: Keith Packard <keithp@keithp.com>
33484 Date:   Sat Jul 16 17:38:00 2011 -0700
33485
33486     altosui: Generalize and centralize telemetry constants, parse v0.8 telemetry
33487     
33488     Move telemetry constants to Altos class, adding functions to compute
33489     names and lengths. Generalize users of these values to use all of the
33490     known values.
33491     
33492     Add support for v0.8 TeleMetrum telemetry
33493     
33494     Signed-off-by: Keith Packard <keithp@keithp.com>
33495
33496 commit 7ef786276b5d5c7d17c3fe4f36aa41db61a9742f
33497 Author: Keith Packard <keithp@keithp.com>
33498 Date:   Sat Jul 16 14:23:08 2011 -0700
33499
33500     altosui: Finish radio scanning UI
33501     
33502     Scans all channels and telemetry formats, presenting visible devices
33503     in a list. Entries from the list may be selected, in which case a
33504     monitor window pops up with the appropriate configuration.
33505     
33506     Signed-off-by: Keith Packard <keithp@keithp.com>
33507
33508 commit ebcba28b3c09925869b617880d2919e5d0e059f0
33509 Author: Keith Packard <keithp@keithp.com>
33510 Date:   Sat Jul 16 14:19:41 2011 -0700
33511
33512     altosui: Configuration telemetry record includes flight number
33513     
33514     Mark the reported altos record as including flight information.
33515     
33516     Signed-off-by: Keith Packard <keithp@keithp.com>
33517
33518 commit d4375bc737655546c2d40f49acdfc2e60ebfea5a
33519 Author: Keith Packard <keithp@keithp.com>
33520 Date:   Sat Jul 16 14:19:14 2011 -0700
33521
33522     altosui: Remove debugging printf from AltosLog
33523     
33524     Signed-off-by: Keith Packard <keithp@keithp.com>
33525
33526 commit f32a55ac9a3ebbde2b41782f22491e72258fe05a
33527 Author: Keith Packard <keithp@keithp.com>
33528 Date:   Sat Jul 9 19:00:12 2011 -0700
33529
33530     altosui: Pop up monitor window from scan dialog
33531     
33532     Signed-off-by: Keith Packard <keithp@keithp.com>
33533
33534 commit 8c20030ea4eb8e068e1ba88e01d07dfbc27bd7db
33535 Author: Keith Packard <keithp@keithp.com>
33536 Date:   Sat Jul 9 18:41:15 2011 -0700
33537
33538     altosui: Start adding support for scanning radio for available devices
33539     
33540     This is untested.
33541     
33542     Signed-off-by: Keith Packard <keithp@keithp.com>
33543
33544 commit 7bb11b716ccb6c80701bc3f34ecf9bef97cbbfc9
33545 Author: Keith Packard <keithp@keithp.com>
33546 Date:   Fri Jul 15 18:53:41 2011 -0700
33547
33548     Set version to 0.9.4.3 for Bdale 2011-7-16 flights
33549     
33550     Signed-off-by: Keith Packard <keithp@keithp.com>
33551
33552 commit 0d0cf6f9a1b14a1b66aee3845964cd33d1f035c2
33553 Author: Keith Packard <keithp@keithp.com>
33554 Date:   Sat Jul 9 13:09:57 2011 -0700
33555
33556     altos: new versions of sdcc require __ prefixes for custom keywords
33557     
33558     Fortunately, 2.9.1 appears to accept either, so we can switch now and
33559     prepare for sdcc 3.0.0.
33560     
33561     Signed-off-by: Keith Packard <keithp@keithp.com>
33562
33563 commit 8f80f5705d64469bcfb00ff11aee68364edb271b
33564 Author: Keith Packard <keithp@keithp.com>
33565 Date:   Wed Jul 6 21:38:57 2011 -0700
33566
33567     altosui: Don't show missing igniter and gps values
33568     
33569     The new telemetry stuff leaves state.gps always set (but empty), which
33570     seems fine, we just need to look at state.gps.connected to see if
33571     there's a GPS receiver on board.
33572     
33573     For TeleNano, we also want to hide the igniter status fields as they
33574     won't have any data present.
33575     
33576     Signed-off-by: Keith Packard <keithp@keithp.com>
33577
33578 commit 80ca066a825646f833ca609190c76c5252118d9a
33579 Author: Keith Packard <keithp@keithp.com>
33580 Date:   Wed Jul 6 21:36:38 2011 -0700
33581
33582     altosui: Build device constants into .java code
33583     
33584     This eliminates a depedency on updates to the system helper library,
33585     which means we don't have to provide a new library on all platforms
33586     just to support a new USB id.
33587     
33588     Signed-off-by: Keith Packard <keithp@keithp.com>
33589
33590 commit 504ab7ab355652d5d01094c927089029596a0753
33591 Author: Keith Packard <keithp@keithp.com>
33592 Date:   Wed Jul 6 17:49:01 2011 -0700
33593
33594     altos: product defines are always in ao_product.h
33595     
33596     When all products were built in a single directory, each one had a
33597     separate version of ao_product.h. Now that they all reside in
33598     sub-directories, each directory has its own ao_product.h
33599     
33600     This change is needed so that other modules in the system can use the
33601     product defines; otherwise, ao_product.h was not built at the right time.
33602     
33603     Signed-off-by: Keith Packard <keithp@keithp.com>
33604
33605 commit 81cf2e833bedbc1ace8fd310e9e94bfb7673d428
33606 Author: Keith Packard <keithp@keithp.com>
33607 Date:   Wed Jul 6 16:43:17 2011 -0700
33608
33609     altos: Ensure low-rate telem packets interleave with sensor telem packets
33610     
33611     To avoid over-committing the radio link, we want to send only
33612     one low rate packet after each sensor packet. However, the
33613     initializations for this were incorrect, causing the configuration and
33614     location packets to be sent at the same time.
33615     
33616     Signed-off-by: Keith Packard <keithp@keithp.com>
33617
33618 commit 5ca6400fd8a360b64d8f96f50d5595a7fd17762d
33619 Author: Keith Packard <keithp@keithp.com>
33620 Date:   Wed Jul 6 16:18:54 2011 -0700
33621
33622     altos: Remove ao_telemetry_orig.c and ao_telemetry_tiny.c
33623     
33624     All products use the common ao_telemetry.c code now
33625     
33626     Signed-off-by: Keith Packard <keithp@keithp.com>
33627
33628 commit 0154d13756bcb09f009981ee5e4bd27fd04b8788
33629 Author: Keith Packard <keithp@keithp.com>
33630 Date:   Wed Jul 6 16:19:22 2011 -0700
33631
33632     altos: Switch Tm and Tn to common telemetry code
33633     
33634     Signed-off-by: Keith Packard <keithp@keithp.com>
33635
33636 commit b65140a0139075adeddaccf0f4d5c7a75fac4757
33637 Author: Keith Packard <keithp@keithp.com>
33638 Date:   Wed Jul 6 15:52:25 2011 -0700
33639
33640     altos: Switch flash drivers __xdata to __pdata
33641     
33642     Signed-off-by: Keith Packard <keithp@keithp.com>
33643
33644 commit 038d7b25ba833da4be458409670d3f95e8aaf17b
33645 Author: Keith Packard <keithp@keithp.com>
33646 Date:   Wed Jul 6 15:51:52 2011 -0700
33647
33648     altos: Switch ao_flight and ao_flight_nano __xdata to __pdata
33649     
33650     Signed-off-by: Keith Packard <keithp@keithp.com>
33651
33652 commit 3742b36a528f114c3b1873caa4f39581145b76da
33653 Author: Keith Packard <keithp@keithp.com>
33654 Date:   Wed Jul 6 15:28:01 2011 -0700
33655
33656     altos: Switch ao_dbg.c __xdata to __pdata
33657     
33658     Signed-off-by: Keith Packard <keithp@keithp.com>
33659
33660 commit 6903b6464db7eb803de8bf9b897c45431f7a1d63
33661 Author: Keith Packard <keithp@keithp.com>
33662 Date:   Wed Jul 6 15:27:32 2011 -0700
33663
33664     altos: Switch ao_config.c __xdata to __pdata
33665     
33666     Signed-off-by: Keith Packard <keithp@keithp.com>
33667
33668 commit 6893752900385ee51cc4cf75e1b672202de7578a
33669 Author: Keith Packard <keithp@keithp.com>
33670 Date:   Wed Jul 6 15:26:09 2011 -0700
33671
33672     altos: switch ao_cmd __xdata to __pdata
33673     
33674     Saves code space
33675     
33676     Signed-off-by: Keith Packard <keithp@keithp.com>
33677
33678 commit 2ec986f08ce8d4635f4435bb0042b405d93edc40
33679 Author: Keith Packard <keithp@keithp.com>
33680 Date:   Wed Jul 6 15:45:04 2011 -0700
33681
33682     altos: Switch const for __code in struct ao_cmds
33683     
33684     This saves quite a bit of code space when accessing these values.
33685     
33686     Signed-off-by: Keith Packard <keithp@keithp.com>
33687
33688 commit 355db71f4511adff8abcb2caded61c12fe8b7ee9
33689 Author: Keith Packard <keithp@keithp.com>
33690 Date:   Wed Jul 6 15:41:32 2011 -0700
33691
33692     altos: Switch ao_usb.c __xdata to __pdata
33693     
33694     Signed-off-by: Keith Packard <keithp@keithp.com>
33695
33696 commit 359baab005c274a0841268c615c23b3ffef813cf
33697 Author: Keith Packard <keithp@keithp.com>
33698 Date:   Wed Jul 6 15:41:06 2011 -0700
33699
33700     altos: Switch ao_telemetry.c __xdata to __pdata
33701     
33702     Signed-off-by: Keith Packard <keithp@keithp.com>
33703
33704 commit f2f8ade6994aa3a69fd08f19c4403ceb8cea295d
33705 Author: Keith Packard <keithp@keithp.com>
33706 Date:   Wed Jul 6 15:39:44 2011 -0700
33707
33708     altos: Switch ao_stdio.c __data to __pdata
33709     
33710     Signed-off-by: Keith Packard <keithp@keithp.com>
33711
33712 commit 9ba0da9247ea424a7a147aa85daae0d5e6316b81
33713 Author: Keith Packard <keithp@keithp.com>
33714 Date:   Wed Jul 6 15:38:46 2011 -0700
33715
33716     altos: Switch ao_serial.c __xdata to __pdata
33717     
33718     Signed-off-by: Keith Packard <keithp@keithp.com>
33719
33720 commit 86b41d4c2b8a9fa4507cdb75302e0cedebb103cb
33721 Author: Keith Packard <keithp@keithp.com>
33722 Date:   Wed Jul 6 15:38:29 2011 -0700
33723
33724     altos: Switch ao_sample.c __xdata to __pdata
33725     
33726     Signed-off-by: Keith Packard <keithp@keithp.com>
33727
33728 commit 803bf106caf5d6b5ac12eb00a941647c7325edd1
33729 Author: Keith Packard <keithp@keithp.com>
33730 Date:   Wed Jul 6 15:37:34 2011 -0700
33731
33732     altos: Switch ao_rssi.c __xdata to __pdata
33733     
33734     Signed-off-by: Keith Packard <keithp@keithp.com>
33735
33736 commit 002f167fc2709aaf1a4984aaa0a3519a97749d5f
33737 Author: Keith Packard <keithp@keithp.com>
33738 Date:   Wed Jul 6 15:37:15 2011 -0700
33739
33740     altos: Switch ao_report.c __xdata to __pdata
33741     
33742     Signed-off-by: Keith Packard <keithp@keithp.com>
33743
33744 commit 5203ddaac692bfd82a01368da9fb66c25e9e14c1
33745 Author: Keith Packard <keithp@keithp.com>
33746 Date:   Wed Jul 6 15:36:45 2011 -0700
33747
33748     altos: Switch ao_log.c and ao_log_big.c __xdata to __pdata
33749     
33750     Signed-off-by: Keith Packard <keithp@keithp.com>
33751
33752 commit 62267144d189967fcd0724b6dfbdbab3cb6fb414
33753 Author: Keith Packard <keithp@keithp.com>
33754 Date:   Wed Jul 6 15:33:52 2011 -0700
33755
33756     altos: Switch ao_ignite and ao_gps_sirf __xdata to __pdata
33757     
33758     Signed-off-by: Keith Packard <keithp@keithp.com>
33759
33760 commit 92047ff86c79c2b18ef565a4560b06fe00d6f159
33761 Author: Keith Packard <keithp@keithp.com>
33762 Date:   Wed Jul 6 15:31:53 2011 -0700
33763
33764     altos: Switch ao_gps_skytraq and ao_gps_sirf __xdata to __pdata
33765     
33766     Signed-off-by: Keith Packard <keithp@keithp.com>
33767
33768 commit 64860be02b3efa6f784a259249cfa6d14545fbd3
33769 Author: Keith Packard <keithp@keithp.com>
33770 Date:   Wed Jul 6 13:49:05 2011 -0700
33771
33772     altos: Shrink ao_add_task by rolling up a memset loop
33773     
33774     This has a dramatic effect. By pulling the 'stack' variable into
33775     registers it reduces the size of this function from 550 to 231 bytes.
33776     
33777     Signed-off-by: Keith Packard <keithp@keithp.com>
33778
33779 commit 480b48837db31987b947e4d32248965d4a16be03
33780 Author: Keith Packard <keithp@keithp.com>
33781 Date:   Wed Jul 6 13:21:25 2011 -0700
33782
33783     altos: Shrink ao_config_callsign_set
33784     
33785     Replacing a hand-coded memset with a function call, using static space
33786     instead of stack space for an array.
33787     
33788     Signed-off-by: Keith Packard <keithp@keithp.com>
33789
33790 commit 41c230cac359b4459ca93196d08704b7d35447c7
33791 Author: Keith Packard <keithp@keithp.com>
33792 Date:   Wed Jul 6 12:38:11 2011 -0700
33793
33794     altos: Shrink ao_cmd_put16, ao_cmd_hex and ao_cmd
33795     
33796     No functional changes, just reduces code size.
33797     
33798     Signed-off-by: Keith Packard <keithp@keithp.com>
33799
33800 commit 481577a29380afe6750ef7c4e928daff837cbc49
33801 Author: Keith Packard <keithp@keithp.com>
33802 Date:   Tue Jul 5 23:38:42 2011 -0700
33803
33804     altosui: Compress telemetry records marked with the same time
33805     
33806     Split telemetry transmits multiple packets with the same
33807     timestamp. Merge those into a single record when read from a file.
33808     
33809     Signed-off-by: Keith Packard <keithp@keithp.com>
33810
33811 commit 7cfd43663cde5ebdf04e4face076d79ff6329ac3
33812 Author: Keith Packard <keithp@keithp.com>
33813 Date:   Tue Jul 5 23:38:28 2011 -0700
33814
33815     altosui: Remove debug printf.
33816     
33817     Signed-off-by: Keith Packard <keithp@keithp.com>
33818
33819 commit d0335f83c54df0b23c28d04d34c212a1bdffadd0
33820 Author: Keith Packard <keithp@keithp.com>
33821 Date:   Tue Jul 5 23:37:51 2011 -0700
33822
33823     altosui: Add main/drogue voltages to default graph
33824     
33825     Until we get a UI for changing the graph elements, lets add a few more
33826     potentially useful values.
33827     
33828     Signed-off-by: Keith Packard <keithp@keithp.com>
33829
33830 commit c1f859170b37864b816eb561318dbfb1cafaeed6
33831 Author: Keith Packard <keithp@keithp.com>
33832 Date:   Tue Jul 5 23:37:00 2011 -0700
33833
33834     altosui: Elide missing values from graphs
33835     
33836     Signed-off-by: Keith Packard <keithp@keithp.com>
33837
33838 commit 72575dcb9cfbb5c1ccdb3510b9962a6f60ca3fa3
33839 Author: Keith Packard <keithp@keithp.com>
33840 Date:   Tue Jul 5 23:35:50 2011 -0700
33841
33842     altosui: Elide nul bytes at end of telemetry string values
33843     
33844     All telemetry fields are fixed length, so any embedded strings are
33845     padded with nul bytes.
33846     
33847     Signed-off-by: Keith Packard <keithp@keithp.com>
33848
33849 commit 6ac34f9c8efd464194137ac4ce8228bf9d7d83be
33850 Author: Keith Packard <keithp@keithp.com>
33851 Date:   Tue Jul 5 23:35:02 2011 -0700
33852
33853     doc: Add section about TeleDongle USB line format
33854     
33855     Describe the format of the TELEM lines sent over USB from TeleDongle
33856     to the host.
33857     
33858     Signed-off-by: Keith Packard <keithp@keithp.com>
33859
33860 commit edf6252450e06fd42fa6dde3acd127baa8fa6d36
33861 Author: Keith Packard <keithp@keithp.com>
33862 Date:   Tue Jul 5 21:44:53 2011 -0700
33863
33864     altos: Adapt to changes in telemetry Configuration packet
33865     
33866     Apogee delay added. flight_log_max changed to two bytes (in kB now).
33867     
33868     Signed-off-by: Keith Packard <keithp@keithp.com>
33869
33870 commit 938949e39aac834a1c0912f8f307f74fe41418cc
33871 Author: Keith Packard <keithp@keithp.com>
33872 Date:   Tue Jul 5 21:42:22 2011 -0700
33873
33874     doc: Chang Config and Location packets
33875     
33876     Config packets get apogee delay, and have flight_log_max shrunk to two
33877     bytes.
33878     
33879     Location packets get climb_rate added.
33880     
33881     Signed-off-by: Keith Packard <keithp@keithp.com>
33882
33883 commit 4132ac5896114e5f3d8fb3f219422e8933078cf4
33884 Author: Keith Packard <keithp@keithp.com>
33885 Date:   Tue Jul 5 21:41:44 2011 -0700
33886
33887     altosui: Parse remaining standard telemetry packets
33888     
33889     Signed-off-by: Keith Packard <keithp@keithp.com>
33890
33891 commit ef3ce687d73c1274ce5368432f4d449b063ce5c0
33892 Author: Keith Packard <keithp@keithp.com>
33893 Date:   Mon Jul 4 23:39:21 2011 -0700
33894
33895     altos: Complete new telemetry switchover
33896     
33897     This involved rewriting the GPS code to use the telemetry structures
33898     directly so that a memcpy could be used to transfer the data to the
33899     telemetry packets, saving a bunch of code space, along with fixing up
33900     the gps testing programs to deal with the structure changes.
33901     
33902     In addition, the teledongle code needed to have the monitoring code
33903     split into separate radio receiver and USB writer threads as the
33904     packets are now back-to-back, and hence come too fast to wait for the
33905     USB data to be sent to the host after each one.
33906     
33907     Signed-off-by: Keith Packard <keithp@keithp.com>
33908
33909 commit 359681f23e2f71bc8f4975a4a76ae28c08ecab2e
33910 Author: Keith Packard <keithp@keithp.com>
33911 Date:   Mon Jul 4 18:09:03 2011 -0700
33912
33913     altos: Add split telemetry code
33914     
33915     This sends every packet every time, which isn't correct, but should be
33916     useful for testing.
33917     
33918     Signed-off-by: Keith Packard <keithp@keithp.com>
33919
33920 commit b51e5466f7a125db873edd1fa9bd3881d7e98aad
33921 Author: Keith Packard <keithp@keithp.com>
33922 Date:   Mon Jul 4 18:08:19 2011 -0700
33923
33924     altos: Shrink help text
33925     
33926     Reduce const space taken by command help text.
33927     
33928     Signed-off-by: Keith Packard <keithp@keithp.com>
33929
33930 commit 9e5e4c1ad82d621ceb7286f72c87eeaf5976f9bf
33931 Author: Keith Packard <keithp@keithp.com>
33932 Date:   Mon Jul 4 18:06:48 2011 -0700
33933
33934     altos: Add sat info to GPS report command
33935     
33936     Plan to use this to report current flight computer state in idle mode.
33937     
33938     Signed-off-by: Keith Packard <keithp@keithp.com>
33939
33940 commit 06b6f78e22be38a26bfe11ed4d4b659d5b13f00c
33941 Author: Keith Packard <keithp@keithp.com>
33942 Date:   Mon Jul 4 18:04:49 2011 -0700
33943
33944     altos: Shrink const space in ao_config
33945     
33946     Eliminate separate 'cmd' and 'help' struct entries.
33947     Use \0 trick in cmd strings to eliminate whitespace.
33948     Edit help text.
33949     
33950     Signed-off-by: Keith Packard <keithp@keithp.com>
33951
33952 commit d3c26e534d8df34cfbf29b70cd1b2692493ce150
33953 Author: Keith Packard <keithp@keithp.com>
33954 Date:   Mon Jul 4 18:03:51 2011 -0700
33955
33956     altos: teledongle does not need ao_packet_slave.c
33957     
33958     TeleDongle doesn't provide slave interfaces, so remove ao_packet_slave
33959     from the TD build
33960     
33961     Signed-off-by: Keith Packard <keithp@keithp.com>
33962
33963 commit c763a3f9cf2bf055e9705ce5ff4bc172f445037d
33964 Author: Keith Packard <keithp@keithp.com>
33965 Date:   Mon Jul 4 18:02:52 2011 -0700
33966
33967     Version strings must be < 8 bytes long
33968     
33969     The new telemetry packets include the version string, so make sure its
33970     less than 8 characters long
33971     
33972     Signed-off-by: Keith Packard <keithp@keithp.com>
33973
33974 commit a08173197d5533ecb395102ed34e751135660d06
33975 Author: Keith Packard <keithp@keithp.com>
33976 Date:   Mon Jul 4 18:01:59 2011 -0700
33977
33978     doc: Fix a few minor telemetry doc mistakes
33979     
33980     Multiple 'accel' entries in the Sensor packet.
33981     Swap ground_accel and ground_pres to group accel cal data
33982     
33983     Signed-off-by: Keith Packard <keithp@keithp.com>
33984
33985 commit 98df3ba984acf3b47a09949bbea0f3264f711f5b
33986 Author: Keith Packard <keithp@keithp.com>
33987 Date:   Mon Jul 4 14:17:55 2011 -0700
33988
33989     doc: Complete initial telemetry description
33990     
33991     Finish describing the contents and modulation scheme for telemetry
33992     data.
33993     
33994     Signed-off-by: Keith Packard <keithp@keithp.com>
33995
33996 commit 06e82bd2c2a5eea153a053e542df9bc3537e9a01
33997 Author: Keith Packard <keithp@keithp.com>
33998 Date:   Sat Jul 2 01:50:33 2011 -0700
33999
34000     doc: Add telemetry format description
34001     
34002     Document the telemetry packet contents.
34003     
34004     Signed-off-by: Keith Packard <keithp@keithp.com>
34005
34006 commit 7fd9b8f720add559b262e81d61ededc9df16ca94
34007 Author: Keith Packard <keithp@keithp.com>
34008 Date:   Tue Jun 28 01:03:00 2011 -0700
34009
34010     altosui: Support raw telemetry from TeleDongle
34011     
34012     Use raw telemetry frames when TeleDongle supports them, this involves
34013     parsing the hex dump of the packet instead of having teledongle take
34014     the packet apart. Only the legacy format is working at this point; the
34015     altos bits for the new split telemetry frames is not written yet.
34016     
34017     Signed-off-by: Keith Packard <keithp@keithp.com>
34018
34019 commit cb239b7161feea8646425b1f5788c3c82ae24321
34020 Author: Keith Packard <keithp@keithp.com>
34021 Date:   Tue Jun 28 01:01:08 2011 -0700
34022
34023     altos: ao_radio_recv needs byte count *including* rssi and status
34024     
34025     That's two more than the actual packet length.
34026     
34027     Signed-off-by: Keith Packard <keithp@keithp.com>
34028
34029 commit 336224a08327cadc95f6e5b564a4ddc64aaad8f8
34030 Author: Keith Packard <keithp@keithp.com>
34031 Date:   Fri Jun 24 08:31:51 2011 -0700
34032
34033     altos: Start adding new telemetry frame definitions
34034     
34035     These use the initial 24 bytes per frame plan, which will probably get
34036     changed to 32 bytes per frame.
34037     
34038     Signed-off-by: Keith Packard <keithp@keithp.com>
34039
34040 commit 5e111fdf1f23203baeeb490ae1b69402ebd513b8
34041 Author: Keith Packard <keithp@keithp.com>
34042 Date:   Fri Jun 24 08:31:12 2011 -0700
34043
34044     altos: Add checksum to TELEM output lines
34045     
34046     Verify the received telemetry lines to protect against OS data loss
34047     
34048     Signed-off-by: Keith Packard <keithp@keithp.com>
34049
34050 commit 489a68ba8e3bc360e2e8fc887e4c4b840b5a0dd3
34051 Author: Keith Packard <keithp@keithp.com>
34052 Date:   Wed Jun 22 12:27:34 2011 -0700
34053
34054     altos: Add arbitrary telemetry packet monitoring
34055     
34056     This adds the ability to monitor arbitrary telemetry packets (up to
34057     128 bytes), moving the telemetry data parsing up to the host.
34058     
34059     Signed-off-by: Keith Packard <keithp@keithp.com>
34060
34061 commit 0e67b6890dd3a06665239f8dfd2e69266d055e46
34062 Author: Keith Packard <keithp@keithp.com>
34063 Date:   Wed Jun 22 12:26:45 2011 -0700
34064
34065     altos: Rename telemetry to telemetry_orig
34066     
34067     This makes room to create a new multi-packet telemetry format without
34068     changing anything yet.
34069     
34070     Signed-off-by: Keith Packard <keithp@keithp.com>
34071
34072 commit dc0b49dcbaa2d0a69e002c151337b6e9fd3060d9
34073 Author: Keith Packard <keithp@keithp.com>
34074 Date:   Thu Jun 2 23:16:30 2011 -0700
34075
34076     altosui: Handle old TeleDongle receiving kalman telemetry packets
34077     
34078     The telemetry packets now send the kalman height/speed/accel values
34079     instead of the ad-hoc values. If received by an old TeleDongle box,
34080     the speed value will be of the form 0x8000abcd, which will be printed
34081     as a 32-bit value by TeleDongle. We only want the abcd part, which is
34082     the speed * 16. Detect this automatically and compute the correct
34083     values for all three.
34084     
34085     Signed-off-by: Keith Packard <keithp@keithp.com>
34086
34087 commit 4d27e281f81aee88adff3d84085356ec310e4b92
34088 Author: Keith Packard <keithp@keithp.com>
34089 Date:   Wed May 25 21:38:02 2011 -0600
34090
34091     Switch version to 0.9.4
34092     
34093     For Mayhem, so we can tell what version each board is running
34094     
34095     Signed-off-by: Keith Packard <keithp@keithp.com>
34096
34097 commit 479bdffa35d0b8d4e48868c8d20f3cb1549521ab
34098 Author: Keith Packard <keithp@keithp.com>
34099 Date:   Fri May 6 23:55:23 2011 -0700
34100
34101     Revert "altos: Debugging TBT issues -- check pin configuration after boot"
34102     
34103     This reverts commit 514348055630edec12224c4b0964240b929759a3.
34104     
34105     Looks like this was never a problem.
34106
34107 commit 66bdf0e066bc0bb7a326a6c2a9c88b69e5c1be66
34108 Author: Keith Packard <keithp@keithp.com>
34109 Date:   Fri May 6 23:12:47 2011 -0700
34110
34111     altos: clear CPU port 1 interrupt flag when handled
34112     
34113     Signed-off-by: Keith Packard <keithp@keithp.com>
34114
34115 commit 8be559baa979c15e78f8dba7879b383dbe3936d3
34116 Author: Keith Packard <keithp@keithp.com>
34117 Date:   Fri May 6 22:59:15 2011 -0700
34118
34119     altos: Hook up the P1 ISR for TeleBT v0.1 bt_link line
34120     
34121     Otherwise, we're heading off into the weeds...
34122     
34123     Signed-off-by: Keith Packard <keithp@keithp.com>
34124
34125 commit 23f441b95e55fbee709382b05d325bc021285766
34126 Author: Keith Packard <keithp@keithp.com>
34127 Date:   Fri May 6 22:49:54 2011 -0700
34128
34129     altos: Initialize beeper for telebt
34130     
34131     Needed to get sounds to come out
34132     
34133     Signed-off-by: Keith Packard <keithp@keithp.com>
34134
34135 commit 514348055630edec12224c4b0964240b929759a3
34136 Author: Keith Packard <keithp@keithp.com>
34137 Date:   Fri May 6 22:42:58 2011 -0700
34138
34139     altos: Debugging TBT issues -- check pin configuration after boot
34140     
34141     Make sure the serial pins are configured as peripherals
34142     Make sure the ser_reset and bt_link pins are going the right direction.
34143     
34144     Signed-off-by: Keith Packard <keithp@keithp.com>
34145
34146 commit 22e3ac0eb014b8255029763ae8180ad3527ba306
34147 Author: Keith Packard <keithp@keithp.com>
34148 Date:   Fri May 6 22:42:32 2011 -0700
34149
34150     altos: Add beeper to TBT v0.1
34151     
34152     It's available, let's use it.
34153     
34154     Signed-off-by: Keith Packard <keithp@keithp.com>
34155
34156 commit 6d858b64ee0e8c227c149d2af6d2d634536964f4
34157 Author: Keith Packard <keithp@keithp.com>
34158 Date:   Fri May 6 22:12:31 2011 -0700
34159
34160     altos: pull TBT v0.1 ser_reset line low
34161     
34162     This line resets the BT module if held low for three seconds.
34163     
34164     Signed-off-by: Keith Packard <keithp@keithp.com>
34165
34166 commit 3336d0f726afd1d43cf62280940e5fb91dab2e91
34167 Author: Keith Packard <keithp@keithp.com>
34168 Date:   Fri May 6 21:13:19 2011 -0700
34169
34170     altos: Fix BT link status pin for real TBT hardware
34171     
34172     The prototype used P2_1, while the real hardware uses P1_7. Lots of
34173     defines to make this work...
34174     
34175     Signed-off-by: Keith Packard <keithp@keithp.com>
34176
34177 commit 19bfa3882a2d95fcade256c2d63ad24f794281e5
34178 Author: Keith Packard <keithp@keithp.com>
34179 Date:   Fri May 6 20:33:58 2011 -0700
34180
34181     altos: Use USART configuration 1 with flow control for TBT
34182     
34183     It's just wired that way.
34184     
34185     Signed-off-by: Keith Packard <keithp@keithp.com>
34186
34187 commit d9cc27641fe1778c098b065bf110be7823e6c9f4
34188 Author: Keith Packard <keithp@keithp.com>
34189 Date:   Fri May 6 16:57:38 2011 -0700
34190
34191     altos: Add telebt-v0.1 to Makefile
34192     
34193     Doesn't get built without it.
34194     
34195     Signed-off-by: Keith Packard <keithp@keithp.com>
34196
34197 commit c360e5c04e30421e9ea2f7006b7d35aef35f1edd
34198 Author: Bdale Garbee <bdale@gag.com>
34199 Date:   Fri May 6 17:57:17 2011 -0600
34200
34201     first cut at a telebt turn on script
34202
34203 commit c1760cebd47d0f03808f3204c0fcb1183f754e50
34204 Author: Keith Packard <keithp@keithp.com>
34205 Date:   Fri May 6 15:44:56 2011 -0700
34206
34207     altos: Add preliminary telebt v0.1 defines
34208     
34209     This should make the telebt v0.1 binary that works on the real hardware.
34210     
34211     Signed-off-by: Keith Packard <keithp@keithp.com>
34212
34213 commit 72a03baa73698fc1213a74320e6253c2380dd8fa
34214 Author: Keith Packard <keithp@keithp.com>
34215 Date:   Mon Apr 25 23:00:42 2011 -0700
34216
34217     altosui: Fix BT manage dialog so that the device lists resize
34218     
34219     This makes the device scrolling lists fill any extra space when the
34220     window is resized.
34221     
34222     Signed-off-by: Keith Packard <keithp@keithp.com>
34223
34224 commit e3bf13a38d24e95b16df1e2f01952d10f24cda10
34225 Author: Keith Packard <keithp@keithp.com>
34226 Date:   Mon Apr 25 22:55:08 2011 -0700
34227
34228     altosui: Move AltosIgniteUI device open out of Swing thread
34229     
34230     Eliminate more blocking code from the Swing thread.
34231     
34232     Signed-off-by: Keith Packard <keithp@keithp.com>
34233
34234 commit 109344d54d3fa4f79342fd1ea2a3f4085475e30c
34235 Author: Keith Packard <keithp@keithp.com>
34236 Date:   Mon Apr 25 22:28:40 2011 -0700
34237
34238     altosui: Display reader name (usually the device) when an I/O error occurs
34239     
34240     Access the reader name directly from the reader object instead of a
34241     local variable (which wasn't getting set anyways).
34242     
34243     Signed-off-by: Keith Packard <keithp@keithp.com>
34244
34245 commit aa5caf6310f074109472e6f55d8bd9751fb75c4c
34246 Author: Keith Packard <keithp@keithp.com>
34247 Date:   Mon Apr 25 21:26:21 2011 -0700
34248
34249     altosui: Fix TeleBT name in flight monitor title
34250     
34251     Was getting the product number, not the product name.
34252     
34253     Signed-off-by: Keith Packard <keithp@keithp.com>
34254
34255 commit 2e7b7b80432bb251ac39efa1fa05d32b5f250e14
34256 Author: Keith Packard <keithp@keithp.com>
34257 Date:   Mon Apr 25 21:17:07 2011 -0700
34258
34259     altosui: Separate out flash debug code to separate thread
34260     
34261     This avoids blocking the Swing thread while waiting for the serial
34262     device.
34263     
34264     Signed-off-by: Keith Packard <keithp@keithp.com>
34265
34266 commit 214cd69c0e4a1617ed5cde8fc2f46a4cee6ecced
34267 Author: Keith Packard <keithp@keithp.com>
34268 Date:   Sat Apr 23 22:50:58 2011 -0700
34269
34270     altos: add telebt-v0.0 Makefile
34271     
34272     Git doesn't like to add these.
34273     
34274     Signed-off-by: Keith Packard <keithp@keithp.com>
34275
34276 commit d41edb3384b6336f3482e61b0c9f9400a8b4f519
34277 Author: Keith Packard <keithp@keithp.com>
34278 Date:   Tue Apr 19 15:29:39 2011 -0700
34279
34280     altosui: Make flight data download work through TeleBT
34281     
34282     This required flushing input before reading data blocks and adjusting
34283     some delays.
34284     
34285     Signed-off-by: Keith Packard <keithp@keithp.com>
34286
34287 commit 44fb71ca3e5bccd5f601fc5a2d5da7292050b1d6
34288 Merge: 2ebdb88 c269e26
34289 Author: Keith Packard <keithp@keithp.com>
34290 Date:   Tue Apr 19 14:06:39 2011 -0700
34291
34292     Merge branch 'telemini' into telebt
34293
34294 commit 2ebdb888f6792de70b3132950a988d49752d264e
34295 Author: Keith Packard <keithp@keithp.com>
34296 Date:   Tue Apr 19 14:01:19 2011 -0700
34297
34298     altosui: Eliminate ao_cmd_filter hook
34299     
34300     Disabling status messages means we don't need to filter them out of
34301     the input stream.
34302     
34303     Signed-off-by: Keith Packard <keithp@keithp.com>
34304
34305 commit 7f5c9986dfa2d130b6c8c14308638cce49391a6e
34306 Author: Keith Packard <keithp@keithp.com>
34307 Date:   Tue Apr 19 13:42:30 2011 -0700
34308
34309     altos: remove BT logging code
34310     
34311     This was used to debug the serial line startup.
34312     
34313     Signed-off-by: Keith Packard <keithp@keithp.com>
34314
34315 commit 0195ff442c1da5d363dfda3f88f41865d0c6b469
34316 Author: Keith Packard <keithp@keithp.com>
34317 Date:   Tue Apr 19 13:31:10 2011 -0700
34318
34319     altos: Remove bt debug command
34320     
34321     This will permit some additional cleanups.
34322     
34323     Signed-off-by: Keith Packard <keithp@keithp.com>
34324
34325 commit ce7cf0c5ddc5405f6f474f4e20752fc0b02f3ecb
34326 Author: Keith Packard <keithp@keithp.com>
34327 Date:   Tue Apr 19 13:27:40 2011 -0700
34328
34329     altos: Simplify BT communications
34330     
34331     Eliminate stdio I/O wrappers
34332     
34333     Signed-off-by: Keith Packard <keithp@keithp.com>
34334
34335 commit e3d501940718428135e04995dff7fef691c08a20
34336 Author: Keith Packard <keithp@keithp.com>
34337 Date:   Tue Apr 19 13:20:19 2011 -0700
34338
34339     altos: Solidify BT connections
34340     
34341     Use delays while sending commands to BT module.
34342     Don't use BT for stdio until the module is initialized.
34343     Add \r to name setting command
34344     Don't require 'connected' signal for command input.
34345     
34346     Signed-off-by: Keith Packard <keithp@keithp.com>
34347
34348 commit 6b5957d5f6f8181da7be98c9bce49a0ec0b4a713
34349 Author: Keith Packard <keithp@keithp.com>
34350 Date:   Tue Apr 19 10:41:28 2011 -0700
34351
34352     altosui: Wait two seconds after bluetooth connect XXX
34353     
34354     "something" isn't quite ready to communicate right after the device is
34355     connected, so we stick a delay in. There should be a better fix.
34356     
34357     Signed-off-by: Keith Packard <keithp@keithp.com>
34358
34359 commit 8de9d3cbfcd1db7b554fb761296a8de09aafc8c3
34360 Author: Keith Packard <keithp@keithp.com>
34361 Date:   Tue Apr 19 10:25:47 2011 -0700
34362
34363     altos: Add delays to bt startup sequence
34364     
34365     The BT device takes a few seconds after power-up before it is ready to
34366     receive commands.
34367     
34368     Signed-off-by: Keith Packard <keithp@keithp.com>
34369
34370 commit 17f38e045fcd8ca0224095c0b2b7b098df77a8d8
34371 Author: Keith Packard <keithp@keithp.com>
34372 Date:   Tue Apr 19 08:43:40 2011 -0700
34373
34374     altosui: Use persistent list of bluetooth devices for device dialogs
34375     
34376     Store a list of known bluetooth devices as preferences. Always include
34377     those in device dialogs with an option to go browse for more devices
34378     in both the device dialog and the Configure AltosUI dialog.
34379     
34380     Signed-off-by: Keith Packard <keithp@keithp.com>
34381
34382 commit f249e5926f5fd9f86c41e7f0a414193533d4d8b0
34383 Author: Keith Packard <keithp@keithp.com>
34384 Date:   Mon Apr 18 18:16:38 2011 -0500
34385
34386     altosui: Make bluetooth dialog modal
34387     
34388     This allows it to be displayed correctly while the device dialog box
34389     (also modal) is up.
34390     
34391     Signed-off-by: Keith Packard <keithp@keithp.com>
34392
34393 commit 84163eee7847a09fe78f8762b28f857d76bf5755
34394 Author: Keith Packard <keithp@keithp.com>
34395 Date:   Thu Apr 14 10:22:30 2011 -0700
34396
34397     altosui: Make AltosBTDevice implement AltosDevice interface
34398     
34399     This will allow the use of either USB or BT devices through the
34400     AltosDevice interface.
34401     
34402     Signed-off-by: Keith Packard <keithp@keithp.com>
34403
34404 commit 9cdef76c1275b343099d0d01af82d7eadd36a410
34405 Author: Keith Packard <keithp@keithp.com>
34406 Date:   Thu Apr 14 10:12:29 2011 -0700
34407
34408     altosui: Create abstract AltosDevice class
34409     
34410     This will wrap either USB or BT devices. The USB device constants have
34411     been moved to Altos.java
34412     
34413     Signed-off-by: Keith Packard <keithp@keithp.com>
34414
34415 commit 5b3f18b38d80aa041b971204bf7a94278bd9584a
34416 Author: Keith Packard <keithp@keithp.com>
34417 Date:   Fri Apr 8 19:46:15 2011 -0700
34418
34419     altosui: Add primitive bluetooth device manager UI.
34420     
34421     This isn't useful, but does inquire for available bluetooth devices
34422     and show them in a list.
34423     
34424     Signed-off-by: Keith Packard <keithp@keithp.com>
34425
34426 commit c269e263a6accd815ed5d08c0f5a6c3d5b9d3853
34427 Author: Keith Packard <keithp@keithp.com>
34428 Date:   Thu Apr 14 09:38:48 2011 -0700
34429
34430     altos: Write a few pre-launch samples for Tm/Tn devices
34431     
34432     Record pre-launch samples in a small ring and flush that to flash when
34433     launch is detected. This provides a complete record of the flight,
34434     rather than simply starting after launch detect.
34435     
34436     Signed-off-by: Keith Packard <keithp@keithp.com>
34437
34438 commit a0fb471ce10642fc4a4bd40e4a81f8d6fe7a7c21
34439 Author: Keith Packard <keithp@keithp.com>
34440 Date:   Wed Apr 13 20:27:38 2011 -0700
34441
34442     altosui: oops - lost state changes when downloading eeprom data.
34443     
34444     This would cause the reader to just keep reading past the end of the
34445     flight.
34446     
34447     Signed-off-by: Keith Packard <keithp@keithp.com>
34448
34449 commit 7f49d694e776819e03b2c708e1c4ee23ba311430
34450 Author: Keith Packard <keithp@keithp.com>
34451 Date:   Sat Apr 9 22:53:12 2011 -0700
34452
34453     altos/altosui: Log averaged baro sensor data in Tm/Tn
34454     
34455     Instead of logging the best height guess from the kalman filter, log
34456     barometer data. The logged data consists of the average value betwen
34457     log points to reduce noise.
34458     
34459     Signed-off-by: Keith Packard <keithp@keithp.com>
34460
34461 commit 8dd455204cf8712fa8c142b0c0517cec1bf5fd0f
34462 Author: Keith Packard <keithp@keithp.com>
34463 Date:   Fri Apr 8 10:13:55 2011 -0700
34464
34465     altosui: Add low-level Bluetooth APIs
34466     
34467     Adds the JNI functions to query and connect to arbitrary
34468     bluetooth devices.
34469     
34470     Adds Java wrappers to construct a list of proximate bluetooth devices.
34471     
34472     Signed-off-by: Keith Packard <keithp@keithp.com>
34473
34474 commit bf1c7df5301a1727e871a8447f835fe75bdce3fc
34475 Author: Keith Packard <keithp@keithp.com>
34476 Date:   Fri Apr 8 10:12:50 2011 -0700
34477
34478     altosui: Add TeleBT USB device support
34479     
34480     TeleBT can work just like a TeleDongle over USB.
34481     
34482     Signed-off-by: Keith Packard <keithp@keithp.com>
34483
34484 commit 1a54a58d72147888f783a3caf364479efff4ed9b
34485 Author: Keith Packard <keithp@keithp.com>
34486 Date:   Thu Apr 7 22:00:38 2011 -0700
34487
34488     altos: Use PIO(6) on BTM to monitor BT connection. Fix BTM init.
34489     
34490     PIo(6) appears to be an active-low indication of the Bluetooth
34491     connection status. Hook this up using an interrupt to track the
34492     link state instead of using in-band status messages.
34493     
34494     Signed-off-by: Keith Packard <keithp@keithp.com>
34495
34496 commit f28efe271f9670473249574f6bcf6e160fe58c7b
34497 Merge: 8db5c52 835ab3a
34498 Author: Keith Packard <keithp@keithp.com>
34499 Date:   Fri Apr 1 19:35:22 2011 -0700
34500
34501     Merge branch 'telemini' into telebt
34502
34503 commit 835ab3a8c2741a09b27de58c37439a193c9919ce
34504 Author: Keith Packard <keithp@keithp.com>
34505 Date:   Fri Apr 1 19:35:00 2011 -0700
34506
34507     altosui: Add missing AltosTelemetryMap.java file
34508     
34509     Signed-off-by: Keith Packard <keithp@keithp.com>
34510
34511 commit 8db5c52f1c76a05020e4e0afbe4ea27485ad9f82
34512 Author: Keith Packard <keithp@keithp.com>
34513 Date:   Fri Apr 1 17:26:08 2011 -0700
34514
34515     altos: Clean up BT serial communcations
34516     
34517     Disable echo on both ends in command mode to eliminate looping error
34518     values.
34519     
34520     Switch to 57600 baud to improve performance.
34521     
34522     Signed-off-by: Keith Packard <keithp@keithp.com>
34523
34524 commit a5d60fdb9c969c1516feb76a16001c9688112c4c
34525 Author: Keith Packard <keithp@keithp.com>
34526 Date:   Fri Apr 1 17:25:07 2011 -0700
34527
34528     altos: Make cmd echo per-connection instead of global
34529     
34530     Allow different connections to use different echo values, permitting
34531     the packet link to turn off echo while the USB link still has it on.
34532     
34533     Signed-off-by: Keith Packard <keithp@keithp.com>
34534
34535 commit 4e2c18249e16c98cf5f7dccdf8d3b84bc473863a
34536 Author: Keith Packard <keithp@keithp.com>
34537 Date:   Fri Apr 1 16:48:12 2011 -0700
34538
34539     altos: Clean up serial initialization
34540     
34541     Flush serial input buffers when switching speeds.
34542     Ensure pin configuration is correct.
34543     
34544     Signed-off-by: Keith Packard <keithp@keithp.com>
34545
34546 commit 92386f2e8419c4df125692cc998eb72ec49bf991
34547 Author: Keith Packard <keithp@keithp.com>
34548 Date:   Fri Apr 1 14:12:56 2011 -0700
34549
34550     altos: Clean up usage of serial port for stdio
34551     
34552     Code wanting to use this must invoke ao_add_stdio; that way
34553     the link can be configured before command processing starts.
34554     
34555     Signed-off-by: Keith Packard <keithp@keithp.com>
34556
34557 commit 9f8a96a8516e13878b329dbf1da855ed9a3219c4
34558 Author: Keith Packard <keithp@keithp.com>
34559 Date:   Fri Apr 1 14:11:44 2011 -0700
34560
34561     altos: Make ao_serial_drain public
34562     
34563     Allow external code to discard serial input
34564     
34565     Signed-off-by: Keith Packard <keithp@keithp.com>
34566
34567 commit 4f243a282f9aeb7433ccb2942850d380a091e603
34568 Author: Keith Packard <keithp@keithp.com>
34569 Date:   Fri Apr 1 14:10:37 2011 -0700
34570
34571     altos: Remove serial monitor command
34572     
34573     This takes up space and isn't that useful these days
34574     
34575     Signed-off-by: Keith Packard <keithp@keithp.com>
34576
34577 commit 39bde78edc863d9d2ef50a59b8f28ab6274892b4
34578 Author: Keith Packard <keithp@keithp.com>
34579 Date:   Fri Apr 1 14:08:37 2011 -0700
34580
34581     altos: Allow any stdio to be used with packet forwarding
34582     
34583     There's no reason to restrict packet forwarding to work only from
34584     USB.
34585     
34586     Signed-off-by: Keith Packard <keithp@keithp.com>
34587
34588 commit 01952da35a57ae4da062facb26b3c6d7de29190f
34589 Author: Keith Packard <keithp@keithp.com>
34590 Date:   Fri Apr 1 14:07:23 2011 -0700
34591
34592     altos: Provide for a pre-filter on commands
34593     
34594     This allows for external code to see each command line before it is
34595     processed and potentially skip it.
34596     
34597     Signed-off-by: Keith Packard <keithp@keithp.com>
34598
34599 commit 359ba0d9fc2c5947e6adc98bebcd061069c61e79
34600 Author: Keith Packard <keithp@keithp.com>
34601 Date:   Fri Apr 1 14:04:58 2011 -0700
34602
34603     altos: expose set of available stdio values
34604     
34605     This lets external code manipulate which connection to communicate
34606     over.
34607     
34608     Signed-off-by: Keith Packard <keithp@keithp.com>
34609
34610 commit ce18eaa28b1385c962c09459cbc5f20e234d9ad5
34611 Author: Keith Packard <keithp@keithp.com>
34612 Date:   Fri Apr 1 14:03:25 2011 -0700
34613
34614     altos: Add P2SEL_*_MASK defines to cc1111.h
34615     
34616     These are used to avoid having the code "know" which selections are 1
34617     and which are 0 bits.
34618     
34619     Signed-off-by: Keith Packard <keithp@keithp.com>
34620
34621 commit 8e74cf6d1c70a7a17d01c20f6831571245392498
34622 Author: Keith Packard <keithp@keithp.com>
34623 Date:   Thu Mar 31 20:58:14 2011 -0700
34624
34625     altos: Add initial TeleBT code
34626     
34627     Prototyping with a TeleMetrum v0.1 board and a serial link to a
34628     bluetooth module.
34629     
34630     Signed-off-by: Keith Packard <keithp@keithp.com>
34631
34632 commit c0971abc02b05d136aea257f3f40ba3b22b1d441
34633 Author: Keith Packard <keithp@keithp.com>
34634 Date:   Thu Mar 31 20:55:18 2011 -0700
34635
34636     altos: Make ao_flight_test show true height but report saturated height
34637     
34638     To simulate a saturated baro sensor, clip baro data at a specified
34639     altitude. Continue to report the 'true' altitude in the output so that
34640     the resulting graphs are useful.
34641     
34642     Signed-off-by: Keith Packard <keithp@keithp.com>
34643
34644 commit 8a14142e7b37031a51409f121b913fe793bf3603
34645 Author: Keith Packard <keithp@keithp.com>
34646 Date:   Thu Mar 31 20:53:12 2011 -0700
34647
34648     altos: Baro useful ceiling is MSL, not AGL
34649     
34650     Use MSL instead of AGL for detecting over-range baro sensor values.
34651     Always trust baro sensor during descent; it'll get there eventually.
34652     
34653     Signed-off-by: Keith Packard <keithp@keithp.com>
34654
34655 commit a9dae18a664f70b668159487015e61be7f776926
34656 Author: Keith Packard <keithp@keithp.com>
34657 Date:   Thu Mar 31 20:51:15 2011 -0700
34658
34659     altos: Reflect ao_flight split in ao_flight_test dependencies
34660     
34661     Need to rebuild ao_flight_test when any of the flight sources change
34662     
34663     Signed-off-by: Keith Packard <keithp@keithp.com>
34664
34665 commit f558cfa1df77c36a459168c1953d0945ee5a7f9f
34666 Author: Keith Packard <keithp@keithp.com>
34667 Date:   Wed Mar 30 11:48:03 2011 -0700
34668
34669     altosui: Only plot acceleration when present in data file
34670     
34671     Eliminates a bogus axis and data line for devices which do not have an
34672     accelerometer.
34673     
34674     Signed-off-by: Keith Packard <keithp@keithp.com>
34675
34676 commit a9df9fc257eb2d7038d66ac7c2539aae4474bf12
34677 Author: Keith Packard <keithp@keithp.com>
34678 Date:   Wed Mar 30 11:47:07 2011 -0700
34679
34680     altosui: Parse and export Max flight log value
34681     
34682     New configuration field might as well get dumped to the .csv files.
34683     
34684     Signed-off-by: Keith Packard <keithp@keithp.com>
34685
34686 commit 87bff181a95f6bf92c2cec350d331ba6af779e80
34687 Author: Keith Packard <keithp@keithp.com>
34688 Date:   Tue Mar 29 18:11:47 2011 -0700
34689
34690     altos: Enable logging during nano flights
34691     
34692     Not having logging wasn't very useful.
34693     
34694     Signed-off-by: Keith Packard <keithp@keithp.com>
34695
34696 commit 011e37f27b3926a42c8c1a74e0f179bb48829ec7
34697 Author: Keith Packard <keithp@keithp.com>
34698 Date:   Tue Mar 29 18:10:46 2011 -0700
34699
34700     altos: Run RDF beacon after apogee instead of waiting for landing
34701     
34702     This provides tracking when GPS fails, or on TeleMini.
34703     
34704     Signed-off-by: Keith Packard <keithp@keithp.com>
34705
34706 commit 08e6bbef2c3529dfd468ef221c526fc9f3ed5b81
34707 Author: Keith Packard <keithp@keithp.com>
34708 Date:   Tue Mar 29 10:08:46 2011 -0700
34709
34710     altos: ao_sample_preflight was exiting preflight mode immediately
34711     
34712     Need to stay in pre-flight mode until we've gotten enough sensor data
34713     to calibrate things appropriately. The conversion from a unified
34714     ao_flight.c file was just broken here.
34715     
34716     Signed-off-by: Keith Packard <keithp@keithp.com>
34717
34718 commit 56d045040c49728a854741e99545766f3723da5e
34719 Author: Keith Packard <keithp@keithp.com>
34720 Date:   Tue Mar 29 09:39:27 2011 -0700
34721
34722     altosui: Don't display 0000-00-00 for missing flight log dates
34723     
34724     With Tm/Tn not having GPS to get the current date, it's no longer
34725     unusual to have no date for a flight log, so don't show the 0000-00-00
34726     piece in that case.
34727     
34728     Signed-off-by: Keith Packard <keithp@keithp.com>
34729
34730 commit 8ade7d99f02df825e70d0a964b4648156101ef78
34731 Author: Keith Packard <keithp@keithp.com>
34732 Date:   Tue Mar 29 09:38:23 2011 -0700
34733
34734     altosui: Display exception messages from swing thread
34735     
34736     Flight log management exceptions were getting displayed from the log
34737     serial I/O thread instead of the swing thread. That's a bad plan.
34738     
34739     Signed-off-by: Keith Packard <keithp@keithp.com>
34740
34741 commit 2f9be009ef26e3d7539f5932d267d7a8a7bcb7eb
34742 Author: Keith Packard <keithp@keithp.com>
34743 Date:   Tue Mar 29 09:37:11 2011 -0700
34744
34745     altosui: Make deployment testing handle Connecting... dialog
34746     
34747     Supporting the Connecting... dialog requires moving all serial
34748     communication to a separate thread. This was done by creating a worker
34749     thread and command queue to communicate between the UI and the serial line.
34750     
34751     Signed-off-by: Keith Packard <keithp@keithp.com>
34752
34753 commit 573edcd7dfe10ac3251396eae88eece55d82bcb6
34754 Author: Keith Packard <keithp@keithp.com>
34755 Date:   Mon Mar 28 23:38:02 2011 -0700
34756
34757     altosui: Make flight log downloading handle 'Connecting...' dialog
34758     
34759     This required moving all of the serial communication to a separate
34760     thread and making the bulk of the download operation run after that
34761     has finished.
34762     
34763     Signed-off-by: Keith Packard <keithp@keithp.com>
34764
34765 commit c71a145daefb86d2c1297abec68e54bd951e3adf
34766 Author: Keith Packard <keithp@keithp.com>
34767 Date:   Mon Mar 28 23:35:05 2011 -0700
34768
34769     altosui: Clean up packet link connecting dialog
34770     
34771     Make sure the dialog is destroyed after use (otherwise, it hangs
34772     around on the screen sometimes).
34773     
34774     Switch timeout before showing dialog to 500ms -- that brings the
34775     dialog up less often when unnecessary.
34776     
34777     Use 'timeout_started' boolean to indicate whether the I/O thread has
34778     queued the dialog for display and whether it needs to queue a call to
34779     close it down.
34780     
34781     Signed-off-by: Keith Packard <keithp@keithp.com>
34782
34783 commit c6e7e812d67f91c63ba4982f7a899a72584027de
34784 Author: Keith Packard <keithp@keithp.com>
34785 Date:   Mon Mar 28 18:18:50 2011 -0700
34786
34787     altos: Create custom nano flight code
34788     
34789     No igniters, just 'pad/drogue/landed' modes (where 'drogue' ==
34790     'flying'). A constant 1Hz telemetry and RDF rate.
34791     
34792     Signed-off-by: Keith Packard <keithp@keithp.com>
34793
34794 commit c754759a2d503633d527da4ebb20eb859cd506fd
34795 Author: Keith Packard <keithp@keithp.com>
34796 Date:   Mon Mar 28 17:54:44 2011 -0700
34797
34798     altos: Split up flight code into separate flight/sample/kalman bits
34799     
34800     The flight code mashed together data processing, filtering and actual
34801     flight managament into one giant pile. Split things up so that we
34802     have:
34803     
34804      ao_sample.c: Sensor data processing. Reads the ring, handles calibration
34805      ao_kalman.c: Filter the data to track the accel/speed/height values
34806      ao_flight.c: Flight state management, specific to rocketry.
34807     
34808     The plan is to re-use ao_sample.c and ao_kalman.c for hardware not
34809     specifically designed for rocketry, like TeleNano.
34810     
34811     Signed-off-by: Keith Packard <keithp@keithp.com>
34812
34813 commit 006de838bbb096b9443863a46b8a125b1e6b5600
34814 Author: Keith Packard <keithp@keithp.com>
34815 Date:   Sun Mar 27 00:48:07 2011 -0700
34816
34817     altosui: Handle serial calls from swing thread
34818     
34819     Calls from the swing thread cannot be canceled as there's no way to
34820     put up the cancel dialog. In this case, simply use the 5 second
34821     timeout and fail if no communication occurs within that amount of time.
34822     
34823     Signed-off-by: Keith Packard <keithp@keithp.com>
34824
34825 commit f23d0f3cbf1fb0c8eab497e266625f6410b69ba3
34826 Author: Keith Packard <keithp@keithp.com>
34827 Date:   Sun Mar 27 00:46:19 2011 -0700
34828
34829     altosui: Tell serial device which frame to use for timeout dialogs
34830     
34831     For the timeout dialog to appear, a frame must be configured for it to
34832     appear near. This patch sends the frame from the eeprom download
34833     functions to the serial code. That path doesn't yet work as the eeprom
34834     download is still trying to talk to the serial device from the swing
34835     event thread, which prevents the cancel dialog from working.
34836     
34837     Signed-off-by: Keith Packard <keithp@keithp.com>
34838
34839 commit 067b21993e9a97fceadb355e571e5610535336a8
34840 Author: Keith Packard <keithp@keithp.com>
34841 Date:   Sun Mar 27 00:13:38 2011 -0700
34842
34843     altosui: Allow radio channel to be configured over the radio link
34844     
34845     TeleMini/TeleNano can't be configured via USB, so we need to allow
34846     the radio channel to be set over the radio link.
34847     
34848     This change carefully sets the new radio channel, disables the remote
34849     link and then sets the teledongle channel to the new value and brings
34850     the link back up.
34851     
34852     Signed-off-by: Keith Packard <keithp@keithp.com>
34853
34854 commit 91a75279b6d306ba9d068a28c64917d5312122e8
34855 Author: Keith Packard <keithp@keithp.com>
34856 Date:   Sun Mar 27 00:12:01 2011 -0700
34857
34858     altosui: Off-by-one error in telemetry format configuration UI
34859     
34860     The telemetry format menu uses 0 for full and 1 for tiny, but the
34861     telemetry configuration uses 1 for full and 2 for tiny. One direction
34862     (config to UI) was right, the other (UI to config) was wrong.
34863     
34864     Signed-off-by: Keith Packard <keithp@keithp.com>
34865
34866 commit 7ce8c9081e703d1405c2595ab9bda0cfa218c6c4
34867 Author: Keith Packard <keithp@keithp.com>
34868 Date:   Sat Mar 26 23:38:54 2011 -0700
34869
34870     altos: full logging must flush pending data before checking state
34871     
34872     Flight state must be checked only after any pending data have been
34873     written to the log as the 'current' flight state is only valid when
34874     the pending data values have been processed. This ensures that the
34875     'boost' state is not marked until the full ring of data is
34876     written. This ensures that the data processing code can find the
34877     barometer values from before boost to get an idea of the ground
34878     pressure value.
34879     
34880     Signed-off-by: Keith Packard <keithp@keithp.com>
34881
34882 commit 3945d8f986d8f4bd3186a2cbaed5186e49d59839
34883 Author: Keith Packard <keithp@keithp.com>
34884 Date:   Sat Mar 26 23:15:36 2011 -0700
34885
34886     altos: Variable log rate in full logging code too
34887     
34888     With the fixed ADC rate used to get better data during flight, the
34889     logging code now needs to vary the data storage rate so that descent
34890     data is recorded at 10 samples/second while ascent data is recorded at
34891     1 sample per second. Having the logging code do this itself eliminates
34892     any interaction with the flight code.
34893     
34894     Signed-off-by: Keith Packard <keithp@keithp.com>
34895
34896 commit 97517ee585462c2d355f23f999fb8d9ebd908ec1
34897 Author: Keith Packard <keithp@keithp.com>
34898 Date:   Sat Mar 26 00:01:22 2011 -0700
34899
34900     altosui: Allow TM config connection to be canceled.
34901     
34902     This leaves the config UI connection attempt running and pops up a
34903     dialog box when it takes 'too long' in the remote case so that users
34904     with Tm or Tn devices can bring up the UI, and then boot the Tm/Tn
34905     without needing to time things carefully.
34906     
34907     Signed-off-by: Keith Packard <keithp@keithp.com>
34908
34909 commit 2c121f1ef495e8af3eb39210baa40e212b691894
34910 Author: Keith Packard <keithp@keithp.com>
34911 Date:   Fri Mar 25 22:04:09 2011 -0700
34912
34913     altosui: swing hide/show methods are deprecated
34914     
34915     I don't know why, but they are, so just replace them with
34916     setVisible calls.
34917     
34918     Signed-off-by: Keith Packard <keithp@keithp.com>
34919
34920 commit b155647472ddfacb07c5ffa832e4d1f4a13ad342
34921 Author: Keith Packard <keithp@keithp.com>
34922 Date:   Fri Mar 25 22:01:18 2011 -0700
34923
34924     altosui: Remove extra AltosEepromBlock layer
34925     
34926     This was interposed between the download layer and the eeprom layer to
34927     hold a eeprom block full of flight log records. The addition of the tiny
34928     log format required reworking the code to hold chunks full of eeprom
34929     data without regard to their content, so this content-specific layer
34930     didn't seem useful anymore.
34931     
34932     Signed-off-by: Keith Packard <keithp@keithp.com>
34933
34934 commit 011615d40b3cb1d1c0ab9fa41e139e263a6a51e7
34935 Author: Keith Packard <keithp@keithp.com>
34936 Date:   Fri Mar 25 21:34:31 2011 -0700
34937
34938     altosui: Add support for downloading TeleMini/TeleNano flight logs
34939     
34940     Splits the eeprom downloading code into eeprom block downloading and
34941     separate eeprom data parsing so that the new data logging format can
34942     share the data downloading code.
34943     
34944     Signed-off-by: Keith Packard <keithp@keithp.com>
34945
34946 commit dea80af81b388cc3d7073444919f4e98b12fa730
34947 Author: Keith Packard <keithp@keithp.com>
34948 Date:   Fri Mar 25 21:29:50 2011 -0700
34949
34950     altosui: Remove a bunch of debug printfs from the eeprom manager code
34951     
34952     Just noise on stdout.
34953     
34954     Signed-off-by: Keith Packard <keithp@keithp.com>
34955
34956 commit 7f5b5848ad6ef5c808638a29c3dc0101b56ed11e
34957 Author: Keith Packard <keithp@keithp.com>
34958 Date:   Thu Mar 24 08:08:43 2011 +0900
34959
34960     altosui: Add telemetry format menu and preferences
34961     
34962     Switches the TeleDongle between full and tiny telemetry packet
34963     formats, saving the last used format for each teledongle in the
34964     application preferences.
34965     
34966     Signed-off-by: Keith Packard <keithp@keithp.com>
34967
34968 commit f3e68341f6f5daaf26dd162e4f9a06c29988986a
34969 Author: Keith Packard <keithp@keithp.com>
34970 Date:   Thu Mar 24 05:27:57 2011 +0900
34971
34972     altosui: Add support for telemetry version 4
34973     
34974     New telemetry format needed to support TeleNano and TeleMini
34975     
34976     Signed-off-by: Keith Packard <keithp@keithp.com>
34977
34978 commit 1e976a105423f2da1842f70da531c9051ba88a7f
34979 Author: Keith Packard <keithp@keithp.com>
34980 Date:   Wed Mar 23 10:42:31 2011 +0900
34981
34982     Add description to test flights
34983
34984 commit 93040ef4d0bd90ec5ae052f22243cd56adfb300a
34985 Author: Keith Packard <keithp@keithp.com>
34986 Date:   Wed Mar 23 10:40:05 2011 +0900
34987
34988     Add ao_kalman.h to .gitignore
34989
34990 commit 43a94380032300a2e33e1faa1efe93e858e0a2cf
34991 Author: Keith Packard <keithp@keithp.com>
34992 Date:   Wed Mar 23 10:37:39 2011 +0900
34993
34994     altos: Exit flight test at landing. Allow description in test flight list
34995     
34996     Signed-off-by: Keith Packard <keithp@keithp.com>
34997
34998 commit 32364c9e0d346e0e5d517e18d4e90b8ff2fa944f
34999 Author: Keith Packard <keithp@keithp.com>
35000 Date:   Wed Mar 23 10:33:38 2011 +0900
35001
35002     altos: Ignore alt error for fast->coast. Allow larger error for baro apogee.
35003     
35004     With the fixed kalman filter, transitions across mach don't cause
35005     bumps in the merged filter.
35006     
35007     And, with working kalman bits, the signal for broken baro detection is
35008     stronger and so we can allow for baro apogee detection in cases where
35009     noise occurs close to apogee.
35010     
35011     Bump the kalman filter to trust the baro less so that the model tracks
35012     across mach.
35013     
35014     Signed-off-by: Keith Packard <keithp@keithp.com>
35015
35016 commit 3d2042ccc2d29e4cb8ea39c5c69d07cb7e3daeea
35017 Author: Keith Packard <keithp@keithp.com>
35018 Date:   Tue Mar 22 16:55:08 2011 +0900
35019
35020     altos: Restore sensible kalman values
35021     
35022     Now that the kalman code seems to work correctly, restore the sensor
35023     errors and model errors to match reality
35024     
35025     Signed-off-by: Keith Packard <keithp@keithp.com>
35026
35027 commit 7d7b476564a16eda81ab3406f70a21995e1b464e
35028 Author: Keith Packard <keithp@keithp.com>
35029 Date:   Tue Mar 22 21:51:52 2011 +0900
35030
35031     altos: Fix up flight code testing
35032     
35033     This automates flight code testing by reporting mis-detected apogee or
35034     main events.
35035     
35036     Signed-off-by: Keith Packard <keithp@keithp.com>
35037
35038 commit a80d3836cfce3d4cfa7a71068539415c2dc421cd
35039 Author: Keith Packard <keithp@keithp.com>
35040 Date:   Tue Mar 22 21:50:29 2011 +0900
35041
35042     altos: Missing parens and some bad arithmetic in the kalman code
35043     
35044     Fixed point computations are a pain.
35045     
35046     Signed-off-by: Keith Packard <keithp@keithp.com>
35047
35048 commit f30de5766c1eefb18c7d024a2cf10ce02de41071
35049 Author: Keith Packard <keithp@keithp.com>
35050 Date:   Tue Mar 22 21:29:05 2011 +0900
35051
35052     altos: Add ao_flight_debug code
35053     
35054     Trace the kalman filter to make sure it's working.
35055     
35056     Signed-off-by: Keith Packard <keithp@keithp.com>
35057
35058 commit f3053b1f3c85d4fd84b3c6cc87858f433166df34
35059 Author: Keith Packard <keithp@keithp.com>
35060 Date:   Tue Mar 22 17:04:07 2011 +0900
35061
35062     altos: Clean up some debug stuff in ao_flight.c
35063     
35064     Remove some spurious printf debugging.
35065     Remove an attempt at discovering broken accelerometer code.
35066     
35067     Signed-off-by: Keith Packard <keithp@keithp.com>
35068
35069 commit 6864e06d88a5b908cffa7c4cd2be8969ff46ce4d
35070 Author: Keith Packard <keithp@keithp.com>
35071 Date:   Tue Mar 22 16:51:04 2011 +0900
35072
35073     altos/kalman: Kalman terms can be > 1, use 32-bit fixed point
35074     
35075     Because speed and acceleration are scaled by 16, it's fairly common
35076     for the kalman terms to end up larger than 1. Instead of trying to
35077     fuss with 16-bit values and shifts, just use 32-bit values.
35078     
35079     Signed-off-by: Keith Packard <keithp@keithp.com>
35080
35081 commit c14d6c5ace1d67bd948273ceb7eb6807b29c3806
35082 Author: Keith Packard <keithp@keithp.com>
35083 Date:   Tue Mar 22 08:51:23 2011 +0900
35084
35085     altos: Compute a 'trust' value for the barometer
35086     
35087     Instead of making the baro use/don't-use decision binary, use a 'trust
35088     value' which slowly migrates from baro+accel to accel-only mode. This
35089     eliminates bumps in the data from a rapid shift.
35090     
35091     Signed-off-by: Keith Packard <keithp@keithp.com>
35092
35093 commit 7b009b2efe3af8722c358c304c2243652594e0d5
35094 Author: Keith Packard <keithp@keithp.com>
35095 Date:   Tue Mar 22 05:42:51 2011 +0900
35096
35097     altos: Switch telemetrum over to kalman filter
35098     
35099     This changes the full telemetry stream to include kalman data instead
35100     of the old ad-hoc flight data. It's compatible in that the packet
35101     sizes are the same so teledongle can receive either and figure out
35102     which it has received.
35103     
35104     A few plotting and testing tools are added to make validating the new
35105     code easier.
35106     
35107     Signed-off-by: Keith Packard <keithp@keithp.com>
35108
35109 commit 20427ae4965f756aac0cedc5179a1c45b9a781f2
35110 Author: Keith Packard <keithp@keithp.com>
35111 Date:   Mon Mar 21 19:59:27 2011 +0900
35112
35113     altos: Add nickle kalman implementation.
35114     
35115     This generates the constants needed to implement Kalman filtering in
35116     the flight firmware.
35117     
35118     Signed-off-by: Keith Packard <keithp@keithp.com>
35119
35120 commit ca3f03ef5c09446bebf0f5734f36a0248c457b1d
35121 Author: Keith Packard <keithp@keithp.com>
35122 Date:   Sat Mar 19 23:55:39 2011 -0700
35123
35124     altos: Add .sdcdbrc file for teledongle
35125     
35126     My sdcdb script uses this to set command line options automatically
35127     
35128     Signed-off-by: Keith Packard <keithp@keithp.com>
35129
35130 commit be838db49d999426a9dd02c0166fe161722f1e61
35131 Author: Keith Packard <keithp@keithp.com>
35132 Date:   Sat Mar 19 23:53:08 2011 -0700
35133
35134     altos: New telemetry report format (version 4). Supports tiny telemetry.
35135     
35136     This completely replaces the version 3 format with a much simpler and
35137     easier to parse scheme. It's described in detail in ao_telem.h, but
35138     the basic idea is that the whole line is split into name/value pairs,
35139     separated by whitespace. Every name is unique, and the values are
35140     either strings or integers. No extraneous formatting or units are
35141     provided.
35142     
35143     Signed-off-by: Keith Packard <keithp@keithp.com>
35144
35145 commit ad6bb342d237988404fa32540b38c61d6ddc1f0d
35146 Author: Keith Packard <keithp@keithp.com>
35147 Date:   Sat Mar 19 23:51:02 2011 -0700
35148
35149     altos: The kalman code requires a constant sample rate
35150     
35151     The kalman function can't handle a variable sample rate, so keep the
35152     ADC running at full speed for the whole flight instead of slowing it
35153     down after apogee.
35154     
35155     Signed-off-by: Keith Packard <keithp@keithp.com>
35156
35157 commit 31feb7777f73fed61193d3404f457ea1a081fe9c
35158 Author: Keith Packard <keithp@keithp.com>
35159 Date:   Sat Mar 19 23:49:41 2011 -0700
35160
35161     altos: Split telenano main from telemini
35162     
35163     Eventually, telenano will run different code; prepare for this by
35164     creating a telenano-specific main routine.
35165     
35166     Signed-off-by: Keith Packard <keithp@keithp.com>
35167
35168 commit 8950df02382f5f0aea5bac078fdf7134b98c43ed
35169 Author: Keith Packard <keithp@keithp.com>
35170 Date:   Sat Mar 19 23:46:18 2011 -0700
35171
35172     altos: Split out tiny telemetry from full telemetry
35173     
35174     The TeleMini and TeleNano boards do not have either GPS or
35175     accelermeters, and they also run the kalman filter which produces
35176     standard unit measurements for the flight height/speed/accel
35177     values. This makes the telemetry significantly
35178     different. ao_telemetry_tiny.c sends the required data.
35179     
35180     Note that TeleNano sends the same telemetry as telemini at this point;
35181     there are a couple of values which are not useful, but the overhead of
35182     sending them is small enough that the hassle of having three telemetry
35183     formats seemed excessive.
35184     
35185     Signed-off-by: Keith Packard <keithp@keithp.com>
35186
35187 commit 5ba75e95c98d3e441a58d6f75d328d579e1997fe
35188 Author: Keith Packard <keithp@keithp.com>
35189 Date:   Sat Mar 19 23:41:44 2011 -0700
35190
35191     altos: Make telemetry interval more consistent
35192     
35193     Instead of using a delay between telemetry packets, use a telemetry
35194     period and compute an appropriate delay each time. This requires
35195     changing the ascent telemetry from a 50ms delay to a 100ms interval,
35196     to provide a regular 10 packets-per-second rate. Before, we counted on
35197     the telemetry packet taking about 50ms to send so that we would
35198     receive about 10 per second.
35199     
35200     This also eliminates delays during descent for RDF tones -- those will
35201     get transmitted in the interval between telemetry packets without
35202     interrupting the spacing of those packets.
35203     
35204     Signed-off-by: Keith Packard <keithp@keithp.com>
35205
35206 commit 3f0bc801fd08a613c681504f0d1f9374486a2487
35207 Author: Keith Packard <keithp@keithp.com>
35208 Date:   Sat Mar 19 23:31:20 2011 -0700
35209
35210     altos: Configure packet size from send/recv parameters.
35211     
35212     Instead of setting the packet size at configuration time, use the
35213     provided packet size to the send/recv functions to configure the
35214     radio. This eliminates many configuration calls, leaving us with 'RDF'
35215     mode and 'packet' mode, the latter working for telemetry and the
35216     bi-directional link.
35217     
35218     Signed-off-by: Keith Packard <keithp@keithp.com>
35219
35220 commit 5c28b9312d90a3a66016abc641c20bcd852d69f8
35221 Author: Keith Packard <keithp@keithp.com>
35222 Date:   Sat Mar 19 23:27:15 2011 -0700
35223
35224     altos: Don't init packet slave on TD. Make slave start optional
35225     
35226     Oops. TeleDongle was starting the packet slave code, which kinda
35227     wrecked its ability to receive telemetry packets. This patch simply
35228     removes the packet slave code from teledongle as it cannot be used
35229     (yet), it also makes the packet slave code initialization take a
35230     parameter which controls whether to start that by default; in the
35231     future, perhaps TeleDongle will gain a command to start packet slave mode.
35232     
35233     Signed-off-by: Keith Packard <keithp@keithp.com>
35234
35235 commit e980b251e5a4d25410710a9aa89ef940e06b0d93
35236 Author: Keith Packard <keithp@keithp.com>
35237 Date:   Sat Mar 19 18:43:52 2011 -0700
35238
35239     altosui: Add software version to Configure AltosUI dialog
35240     
35241     Show this somewhere so we can figure out what is installed.
35242     
35243     Signed-off-by: Keith Packard <keithp@keithp.com>
35244
35245 commit 1aeb759c48f475ffaaae787515e080440c8386c3
35246 Author: Keith Packard <keithp@keithp.com>
35247 Date:   Sat Mar 19 12:28:08 2011 -0700
35248
35249     altos: Baro-only boards must not detect launch on accel or speed data
35250     
35251     The baro sensor generates too much noise to use small changes in
35252     computed speed or acceleration to cause a false launch detect.
35253     
35254     Signed-off-by: Keith Packard <keithp@keithp.com>
35255
35256 commit 7a4f6d5ad55637cde97a1e2f247f92df59bc2e14
35257 Author: Keith Packard <keithp@keithp.com>
35258 Date:   Fri Mar 18 21:01:15 2011 -0700
35259
35260     altos: Write height values to log for nano/mini
35261     
35262     This is a lot more useful than the old filtered pressure data.
35263     
35264     Signed-off-by: Keith Packard <keithp@keithp.com>
35265
35266 commit c985bb6a19c710409629f3c095332ba7afcf5248
35267 Author: Keith Packard <keithp@keithp.com>
35268 Date:   Fri Mar 18 20:36:59 2011 -0700
35269
35270     altos/test: Add scripts to run lots of flights through the code
35271     
35272     This runs a long list of flights (there's a user-specific path
35273     pointing at the flights) and squawks if the baro and dual flight
35274     computers don't match.
35275     
35276     Signed-off-by: Keith Packard <keithp@keithp.com>
35277
35278 commit dbe915795c66995805b5f37e6eb698cf2c143e61
35279 Author: Keith Packard <keithp@keithp.com>
35280 Date:   Fri Mar 18 20:26:12 2011 -0700
35281
35282     altos: Fix mini/nano default log size to available flash space
35283     
35284     Also, remove accel cal code from boards without accel
35285     
35286     Signed-off-by: Keith Packard <keithp@keithp.com>
35287
35288 commit 5db94e1e230bade966a997aa83165405a9ec9d83
35289 Merge: 1a8f45e cbb968f
35290 Author: Bdale Garbee <bdale@gag.com>
35291 Date:   Fri Mar 18 21:12:39 2011 -0600
35292
35293     Merge branch 'telemini' of ssh://git.gag.com/scm/git/fw/altos into telemini
35294
35295 commit 1a8f45e7b720d01d3ff0c35ed1caaf8cbe0c3119
35296 Author: Bdale Garbee <bdale@gag.com>
35297 Date:   Fri Mar 18 21:12:12 2011 -0600
35298
35299     fix up script to work and have reasonable texts
35300
35301 commit cbb968f5cf03625d453d84dc535758072a2c04c7
35302 Author: Keith Packard <keithp@keithp.com>
35303 Date:   Fri Mar 18 20:07:25 2011 -0700
35304
35305     altos: Add TeleNano support
35306     
35307     This just uses the TeleMini bits, which should work fine for now.
35308     
35309     Signed-off-by: Keith Packard <keithp@keithp.com>
35310
35311 commit 32c51840c792a737019fbc9fe42f2ca073b71827
35312 Author: Keith Packard <keithp@keithp.com>
35313 Date:   Fri Mar 18 19:49:46 2011 -0700
35314
35315     altos: Tiny logging fixes. Scan at start, stop when land or full.
35316     
35317     Initialize the flight log for tiny systems by scanning the log area to
35318     find the current flight number and log area bounds.
35319     
35320     Stop logging data when the flight is over, or when the log area is
35321     full.
35322     
35323     Signed-off-by: Keith Packard <keithp@keithp.com>
35324
35325 commit 62eae8a17d870e8ac6937ba23da01a5fbc652c6c
35326 Author: Keith Packard <keithp@keithp.com>
35327 Date:   Fri Mar 18 16:53:11 2011 -0700
35328
35329     altos: Add kalman filters for baro-only boards
35330     
35331     This adds a baro-only kalman filter to track the state of the rocket,
35332     and then uses it to control flight events instead of the existing
35333     ad-hoc mechanisms.
35334     
35335     Signed-off-by: Keith Packard <keithp@keithp.com>
35336
35337 commit c826fab31f8aea25a942b6bb8435d4b04c1bef10
35338 Author: Keith Packard <keithp@keithp.com>
35339 Date:   Thu Mar 17 16:00:10 2011 -0700
35340
35341     altos: Add tiny logging for TeleMini/TeleNano
35342     
35343     This splits the logging code into management of the log space within
35344     storage and separate code to actually write suitable log entries.  A
35345     new log writing module, ao_log_tiny, is added which writes only
35346     altimeter data at a fairly low data rate for devices using on-chip
35347     storage.
35348     
35349     Signed-off-by: Keith Packard <keithp@keithp.com>
35350
35351 commit 8b546b474b7b6c5b4169b4c1ca09c6f17ebb3ae5
35352 Author: Anthony Towns <aj@erisian.com.au>
35353 Date:   Fri Mar 11 21:41:01 2011 +1000
35354
35355     ignore new flight test file
35356
35357 commit 82707a05af0eb2d54f46b58805c95cdf4e5a3703
35358 Author: Keith Packard <keithp@keithp.com>
35359 Date:   Wed Mar 16 20:36:50 2011 -0700
35360
35361     altos: Internal flash ops block when running from flash
35362     
35363     The docs say that if you are executing from flash, then the CPU will
35364     stall after a flash write or erase command is started until the
35365     operation is complete. Take advantage of that to simplify the flash
35366     code.
35367     
35368     Signed-off-by: Keith Packard <keithp@keithp.com>
35369
35370 commit 1d8579f973bfe1047ee91f03555e74abdc483e69
35371 Author: Keith Packard <keithp@keithp.com>
35372 Date:   Mon Mar 7 16:31:43 2011 -0800
35373
35374     altos: oops -- altitude reporting wasn't pausing between signals
35375     
35376     need to actually alternate the LED/tone with some space so you can
35377     count.
35378     
35379     Signed-off-by: Keith Packard <keithp@keithp.com>
35380
35381 commit d007bccf6cb36d24a9c7c48de7d80759ac6f2e37
35382 Author: Keith Packard <keithp@keithp.com>
35383 Date:   Mon Mar 7 15:57:58 2011 -0800
35384
35385     ao-load: Make usb descriptor rewriting optional
35386     
35387     TeleMini and TeleNano don't have USB descriptors to rewrite when
35388     loading firmware, so allow them to be missing.
35389     
35390     Signed-off-by: Keith Packard <keithp@keithp.com>
35391
35392 commit 57d83f51377fb58018f422e42d74f29b86a821d2
35393 Author: Keith Packard <keithp@keithp.com>
35394 Date:   Mon Mar 7 15:26:41 2011 -0800
35395
35396     bringup: Add script for telemini
35397     
35398     Copied from teledongle with a few obvious changes.
35399     
35400     Signed-off-by: Keith Packard <keithp@keithp.com>
35401
35402 commit ddd7485f05d0cad8f5b3e1ee9b9a4d2812ea1837
35403 Author: Keith Packard <keithp@keithp.com>
35404 Date:   Mon Mar 7 08:03:11 2011 -0800
35405
35406     altos: Switch pins around for TeleMini
35407     
35408     TeleMini has fewer sensors and uses P0 for igniters instead of P2.
35409     
35410     Signed-off-by: Keith Packard <keithp@keithp.com>
35411
35412 commit f8afc2641c779fc312a42a6358187d8716ebe61a
35413 Author: Keith Packard <keithp@keithp.com>
35414 Date:   Sun Mar 6 23:52:11 2011 -0800
35415
35416     altos: Switch LED usage for TeleMini around
35417     
35418     We're using the LEDs instead of tones, so make red mean 'low tone',
35419     green mean 'middle tone' and both mean 'high tone'.
35420     
35421     Signed-off-by: Keith Packard <keithp@keithp.com>
35422
35423 commit fc5d014721a7e5a7b22f07eb4ab0bb3c764473fe
35424 Author: Anthony Towns <aj@erisian.com.au>
35425 Date:   Sat Feb 26 16:06:48 2011 +1000
35426
35427     ao_intflash: Avoid overwriting code
35428     
35429     Require firmware to specify the end of its codespace in its Makefile,
35430     and use this to determine where the start of available flash is. Should
35431     give compile time errors if either there's no room left for storage, or
35432     if there's not enough room for code.
35433
35434 commit 0e4c55d78852415e79f7318471f4d00c89703b78
35435 Author: Keith Packard <keithp@keithp.com>
35436 Date:   Sun Mar 6 21:03:57 2011 -0800
35437
35438     altos: Add TeleMini v1.0
35439     
35440     This adds initial code for the telemini board, a two channel
35441     flight computer with digital telemetry and a barometric sensor.
35442     
35443     Signed-off-by: Keith Packard <keithp@keithp.com>
35444
35445 commit 2d41358c80f2eb8b6e98d699149bb941a6671475
35446 Author: Keith Packard <keithp@keithp.com>
35447 Date:   Sun Mar 6 21:00:52 2011 -0800
35448
35449     altos: Start with packet slave running. Turn off in pad mode.
35450     
35451     Instead of turning slave mode on in idle mode, start with it running
35452     and disable it in pad mode instead. This means packet mode is
35453     available in startup mode too.
35454     
35455     Signed-off-by: Keith Packard <keithp@keithp.com>
35456
35457 commit 1e56ed44e562f808addfd76bfb352f981db94094
35458 Author: Keith Packard <keithp@keithp.com>
35459 Date:   Sun Mar 6 21:59:08 2011 -0800
35460
35461     altos/test: Add baro-only flight test program
35462     
35463     This builds the flight code in baro-only mode for testing.
35464     
35465     Signed-off-by: Keith Packard <keithp@keithp.com>
35466
35467 commit e339ffd8bd8b9e3f4758017ba355028000cb612e
35468 Author: Keith Packard <keithp@keithp.com>
35469 Date:   Sun Mar 6 21:57:52 2011 -0800
35470
35471     altos/test: Use ao_convert.c instead of hand-coded pres → alt func
35472     
35473     Fix up ao_convert.c so that it can be used within the flight test code
35474     instead of having a (broken) copy of the code there.
35475     
35476     Signed-off-by: Keith Packard <keithp@keithp.com>
35477
35478 commit 02611efea0c485d78fad08c696c1f56e868d36b8
35479 Author: Keith Packard <keithp@keithp.com>
35480 Date:   Sun Mar 6 20:56:25 2011 -0800
35481
35482     altos: Make serial, usb, beeper and accelerometer optional components
35483     
35484     Not all boards will have these, so fix places that use them to deal
35485     with that.
35486     
35487     Signed-off-by: Keith Packard <keithp@keithp.com>
35488
35489 commit fdd15a254c6fab5ba2d02320ba0ceb3e6a56354c
35490 Author: Anthony Towns <aj@erisian.com.au>
35491 Date:   Sat Feb 26 11:48:30 2011 +1000
35492
35493     ao_intflash: Use internal flash for storage
35494     
35495     Makes any free pages at end of CC1111's internal flash available via
35496     the ao_storage API.
35497
35498 commit 8f1bd11b61d9423c62162f7bbe573fc69fd75269
35499 Author: Keith Packard <keithp@keithp.com>
35500 Date:   Wed Mar 16 14:10:06 2011 -0700
35501
35502     aoview: remove -s option.
35503
35504 commit 45395c7825184efb835d5b165fa132be20c7f6fe
35505 Author: Keith Packard <keithp@keithp.com>
35506 Date:   Wed Mar 16 14:08:42 2011 -0700
35507
35508     Bump published version number to 0.9.1
35509
35510 commit 9f3d26cadf37880d2c9223f59271d295b11c4c2a
35511 Author: Keith Packard <keithp@keithp.com>
35512 Date:   Wed Mar 16 14:05:13 2011 -0700
35513
35514     altosui: Missed jcommon.jar in the Mac OS install image
35515     
35516     This caused graphing to fail on Mac OS X
35517     
35518     Signed-off-by: Keith Packard <keithp@keithp.com>
35519
35520 commit 6e340c87d3198647cf075ed520a82703b0d59beb
35521 Author: Keith Packard <keithp@keithp.com>
35522 Date:   Mon Mar 7 00:26:17 2011 -0800
35523
35524     altos: Oops. Lost a couple of commands when merging the doc patch
35525     
35526     I didn't merge this carefully enough and managed to lose the 'f'
35527     and 'e' commands, which are kinda useful.
35528     
35529     Signed-off-by: Keith Packard <keithp@keithp.com>
35530
35531 commit 8cdf4fb051c22b35c251d90bc288551f7c2898bf
35532 Author: Anthony Towns <aj@erisian.com.au>
35533 Date:   Sun Feb 27 11:11:12 2011 +1000
35534
35535     src/ao_cmd: Shave off bytes from doc strings
35536     
35537     Switch to using { func, "X args\0Desc" } to specify command, saving
35538     a char field by looking at help[0] instead, and reduce help length by
35539     doing alignment with printf instead of hardcoded spaces.
35540
35541 commit 2cfe205de4242398e69c9e7c613af0d2a7094686
35542 Author: Keith Packard <keithp@keithp.com>
35543 Date:   Mon Mar 7 00:01:01 2011 -0800
35544
35545     Revert "src/ao_gps_skytraq.c: Update logging rate to 10Hz"
35546     
35547     This reverts commit b080e933a65d268aaaec8cfd5f617a13d5babc43.
35548     
35549     10Hz data isn't any better than 1Hz data; it still doesn't like going
35550     upwards rapidly.
35551
35552 commit 249cd3b63d97581b068fff988e0cd7fcd5bf493e
35553 Author: Keith Packard <keithp@keithp.com>
35554 Date:   Sat Feb 19 01:06:01 2011 -0800
35555
35556     altosui: Display eeprom parsing errors to user
35557     
35558     When reading the eeprom, any parsing errors (most likely bad
35559     checksums) indicate some kind of problem with either the hardware or
35560     the flight software. Display these to the user and do not erase the
35561     flight.
35562     
35563     Signed-off-by: Keith Packard <keithp@keithp.com>
35564
35565 commit 629a7637871b24fe6d1204aaa7185d84933d4639
35566 Author: Keith Packard <keithp@keithp.com>
35567 Date:   Sat Feb 19 01:04:19 2011 -0800
35568
35569     altosui: Always read whole eeprom block, even at end of flight
35570     
35571     Instead of stopping early, continue reading the whole eeprom block so
35572     that the extra serial data doesn't end up confusing the next user of
35573     the serial line, which may well be reading the next flight.
35574     
35575     Signed-off-by: Keith Packard <keithp@keithp.com>
35576
35577 commit 7ca2cf1b7e03b8453b45b45e313a33ad65da9ad5
35578 Author: Keith Packard <keithp@keithp.com>
35579 Date:   Sat Feb 19 01:02:00 2011 -0800
35580
35581     altosui: Mark empty eeprom records 'invalid', don't generate exception
35582     
35583     When reading empty eeprom records, mark them as 'invalid', but don't
35584     generate an exception as it's normal to read these at the end of the
35585     flight log.
35586     
35587     Signed-off-by: Keith Packard <keithp@keithp.com>
35588
35589 commit 690feb166fd2bc6b6dfc26828f1efe9f5f1c6c0d
35590 Author: Bdale Garbee <bdale@gag.com>
35591 Date:   Fri Feb 18 23:56:01 2011 -0700
35592
35593     update changelogs for Debian build
35594
35595 commit 0630e7d6d8cf6abf0fe07f9a6df40ee472cce1ef
35596 Author: Bdale Garbee <bdale@gag.com>
35597 Date:   Fri Feb 18 19:54:18 2011 -0700
35598
35599     tie bringup scripts to Bdale's bench TeleDongle
35600
35601 commit b080e933a65d268aaaec8cfd5f617a13d5babc43
35602 Author: Anthony Towns <aj@erisian.com.au>
35603 Date:   Sat Feb 19 05:49:15 2011 +1000
35604
35605     src/ao_gps_skytraq.c: Update logging rate to 10Hz
35606     
35607     Send commands to skytraq to update baud rate to 57,600 bps, and
35608     set NMEA output rate to 10Hz.
35609
35610 commit aad7103dcf44e69a5a30e008836cce5542ea33e2
35611 Author: Anthony Towns <aj@erisian.com.au>
35612 Date:   Sat Feb 19 04:17:17 2011 +1000
35613
35614     src/ao_gps_skytraq: simplify parsing code
35615     
35616     Added macros to make correctly constructing skytraq commands easier.
35617     Simplified code path for NMEA processing marginally.
35618
35619 commit fe5123fa801f5dafed8b052da607899d1ef20500
35620 Author: Anthony Towns <aj@erisian.com.au>
35621 Date:   Wed Feb 2 19:12:57 2011 +1000
35622
35623     ao_radio: generalise setup of packet size
35624
35625 commit 8b09cc1825645a57c256f38a2f9586ddecf6bda5
35626 Author: Keith Packard <keithp@keithp.com>
35627 Date:   Fri Feb 18 10:02:46 2011 -0800
35628
35629     altos/test: auto-configure acceleration parameters from the log file
35630     
35631     The flight test code had static accelerometer configuration values,
35632     making it impossible to use data from different boards without
35633     recompiling. As the eeprom and telem log files both contain the
35634     necessary data, parse that instead.
35635     
35636     Signed-off-by: Keith Packard <keithp@keithp.com>
35637
35638 commit d3bc27fabb6159ce58b14d0f7929b0f46f67c378
35639 Author: Keith Packard <keithp@keithp.com>
35640 Date:   Fri Feb 18 09:54:01 2011 -0800
35641
35642     altos/test: Add dependencies in the Makefile for ao_flight_test
35643     
35644     Yes, it would be nice to automate dependency generation here, but I
35645     can't be bothered.
35646     
35647     Signed-off-by: Keith Packard <keithp@keithp.com>
35648
35649 commit c3080fdafff5212f267ba7c765a2f083435be799
35650 Author: Keith Packard <keithp@keithp.com>
35651 Date:   Fri Feb 18 09:51:37 2011 -0800
35652
35653     ao-load: fix usage message to note that '=' is required for options
35654     
35655     The usage message was suggesting incorrect command line syntax; long
35656     options use '=' between the option name and value, not whitespace.
35657     
35658     Signed-off-by: Keith Packard <keithp@keithp.com>
35659
35660 commit a09501ab714c0638410d06f80903a8769d93c688
35661 Author: Bdale Garbee <bdale@gag.com>
35662 Date:   Wed Jan 19 12:47:25 2011 -0700
35663
35664     update changelogs for Debian build
35665
35666 commit 2bb83d90aa03d825ca1b751418c91b194b72f1f9
35667 Author: Bdale Garbee <bdale@gag.com>
35668 Date:   Wed Jan 19 12:46:02 2011 -0700
35669
35670     elide changelog entries or re-release of 0.9
35671
35672 commit 9541ccd9ff9e67e0862ca31706358d8308fc85d8
35673 Author: Bdale Garbee <bdale@gag.com>
35674 Date:   Wed Jan 19 12:42:40 2011 -0700
35675
35676     update turnon script to prefer TeleDongle as programmer
35677
35678 commit 159fda30fe57349660c5e2d95017144ea3f5d7db
35679 Author: Bdale Garbee <bdale@gag.com>
35680 Date:   Wed Jan 19 12:26:53 2011 -0700
35681
35682     update changelogs for Debian build
35683
35684 commit 97f4f2e0d28eec1cf19d2d25140e42f6ac277700
35685 Author: Keith Packard <keithp@keithp.com>
35686 Date:   Wed Jan 19 11:21:52 2011 -0800
35687
35688     altos: Program default flight log max value for new boards
35689     
35690     New boards have no config space values at all, and so they need each
35691     value to be set. Yes, this should be fixed so that there aren't two
35692     copies of these assignments.
35693     
35694     Signed-off-by: Keith Packard <keithp@keithp.com>
35695
35696 commit 480587cf514ba21885b24c3b8fcb98d6b76ea8f4
35697 Author: Bdale Garbee <bdale@gag.com>
35698 Date:   Wed Jan 19 00:05:25 2011 -0700
35699
35700     update changelogs for Debian build
35701
35702 commit 6244f2316267738781e31a773b377bcf8c476918
35703 Author: Bdale Garbee <bdale@gag.com>
35704 Date:   Wed Jan 19 00:04:45 2011 -0700
35705
35706     prepare to release
35707
35708 commit 3c72103866f041107af49e01a5ccb6d4e6b6ac80
35709 Author: Bdale Garbee <bdale@gag.com>
35710 Date:   Tue Jan 18 23:55:42 2011 -0700
35711
35712     update changelogs for Debian build
35713
35714 commit 4ae724fe1d2ca0d712321c4fdc2200ff46d77428
35715 Author: Bdale Garbee <bdale@gag.com>
35716 Date:   Tue Jan 18 23:54:36 2011 -0700
35717
35718     we need an install target to prevent parent dir make from failing
35719
35720 commit ca7b549fbf62019b01a6e6c85da50645ea9a4502
35721 Author: Bdale Garbee <bdale@gag.com>
35722 Date:   Tue Jan 18 23:48:08 2011 -0700
35723
35724     update changelogs for Debian build
35725
35726 commit 9a5666f42d4d90a0a488fd0a85ae9914944fe0be
35727 Author: Keith Packard <keithp@keithp.com>
35728 Date:   Tue Jan 18 22:46:25 2011 -0800
35729
35730     doc: Build with 'make all' from top level. Build with 'make fat'
35731     
35732     This will make sure the docs are up-to-date for both regular and
35733     fat builds.
35734     
35735     Signed-off-by: Keith Packard <keithp@keithp.com>
35736
35737 commit 72a04d679d06aaad9c2b4297fefd585fc393ce2e
35738 Author: Keith Packard <keithp@keithp.com>
35739 Date:   Tue Jan 18 22:39:07 2011 -0800
35740
35741     fat: Add docs to Linux package
35742     
35743     Oops. Missed this one.
35744     
35745     Signed-off-by: Keith Packard <keithp@keithp.com>
35746
35747 commit 5d91c250179f44ca17c26fff36718b7026aa8ee0
35748 Author: Keith Packard <keithp@keithp.com>
35749 Date:   Tue Jan 18 22:34:15 2011 -0800
35750
35751     fat: Add firmware for v1.1 and docs to mac/windows/linux installers
35752     
35753     We'll need to be sure to update this each time we add a product.
35754     
35755     Signed-off-by: Keith Packard <keithp@keithp.com>
35756
35757 commit 26c4cc3054b1c7c9ed6ce3c2f21f6254b3245718
35758 Author: Bdale Garbee <bdale@gag.com>
35759 Date:   Tue Jan 18 23:29:03 2011 -0700
35760
35761     freshen copyright year
35762
35763 commit e2e20f6ce8a9c2bca36fde5730ccd7151377ec6f
35764 Author: Bdale Garbee <bdale@gag.com>
35765 Date:   Tue Jan 18 23:18:42 2011 -0700
35766
35767     add 0.9 revision entry, with caveat about telemetry format change
35768
35769 commit 27e6dbbe95ae9b361d60576e0cbadb66792307f3
35770 Author: Keith Packard <keithp@keithp.com>
35771 Date:   Tue Jan 18 20:39:58 2011 -0800
35772
35773     doc: Add v0.9 features from altosui to documentation.
35774     
35775     New flight download UI and new config items.
35776     
35777     Signed-off-by: Keith Packard <keithp@keithp.com>
35778
35779 commit 92d7841edcfc8a841f71f7f97cc541f8e55c4627
35780 Author: Keith Packard <keithp@keithp.com>
35781 Date:   Tue Jan 18 20:39:30 2011 -0800
35782
35783     doc: Don't delete telemetrum-outline.pdf
35784     
35785     This has a drilling template for the board.
35786     
35787     Signed-off-by: Keith Packard <keithp@keithp.com>
35788
35789 commit c411dce69be58238b8312c2fd7405cbe8b5d4a5a
35790 Author: Bdale Garbee <bdale@gag.com>
35791 Date:   Tue Jan 18 17:27:11 2011 -0700
35792
35793     update changelogs for Debian build
35794
35795 commit da42f406e88ccc821cd45d5a94d5afec65ec50e9
35796 Merge: ea4cdfb cf550f9
35797 Author: Bdale Garbee <bdale@gag.com>
35798 Date:   Mon Jan 17 09:50:17 2011 -0700
35799
35800     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
35801
35802 commit ea4cdfb87e03ecfb974f98305671265b6fb95372
35803 Author: Bdale Garbee <bdale@gag.com>
35804 Date:   Mon Jan 17 09:49:45 2011 -0700
35805
35806     update documentation to reflect reality that modifying a board or separate
35807     pyro battery is not as simple as one trace cut on v1.0 and v1.1 boards
35808
35809 commit cf550f9b96fa94d8db559e01df0e265bb1c7b572
35810 Author: Keith Packard <keithp@keithp.com>
35811 Date:   Sun Jan 16 23:23:45 2011 -0800
35812
35813     doc: Remove mention of ao_wake_task
35814     
35815     This has been removed from the altos sources, so remove it from the
35816     docs too.
35817     
35818     Signed-off-by: Keith Packard <keithp@keithp.com>
35819
35820 commit 4b71c4f4ed6cae23a7f4a2e7ae697da9ec614898
35821 Author: Keith Packard <keithp@keithp.com>
35822 Date:   Sat Jan 15 12:26:53 2011 -0800
35823
35824     altos: Use 5V reference data to correct accelerometer measurements.
35825     
35826     When the 3.3V and 5V values shift relative to each other (usually due
35827     to changes in power consumption), the measured acceleration will
35828     appear to shift. This patch converts the 3.3V referenced acceleration
35829     value into a 5V referenced acceleration, eliminating this error.
35830     
35831     Signed-off-by: Keith Packard <keithp@keithp.com>
35832
35833 commit 2887fe7affc0706dbeb2f04df9a00a9b799903ed
35834 Author: Keith Packard <keithp@keithp.com>
35835 Date:   Sat Jan 15 12:25:57 2011 -0800
35836
35837     altos: Optimize fetching of ADC data in flight code
35838     
35839     This stores the address of the desired sample in a local variable and
35840     then fetches through that. Saves quite a few instructions.
35841     
35842     Signed-off-by: Keith Packard <keithp@keithp.com>
35843
35844 commit 2681a17500913cbaf3966f09380bb1d6b59e3863
35845 Author: Keith Packard <keithp@keithp.com>
35846 Date:   Sat Jan 15 12:18:32 2011 -0800
35847
35848     altos: Sample the accelerometer reference voltage on v1.1 boards
35849     
35850     This places the 5v reference samples in an array parallel to the basic
35851     ADC values. It doesn't do anything with the values, just stores them.
35852     
35853     Signed-off-by: Keith Packard <keithp@keithp.com>
35854
35855 commit 69290588980bb15732a99eca5c911a3b6e9a37b9
35856 Author: Keith Packard <keithp@keithp.com>
35857 Date:   Sat Jan 15 12:12:02 2011 -0800
35858
35859     altos: Ensure flight code gets first crack at new ADC data
35860     
35861     Instead of having everyone wait on the raw ADC ring, have the flight
35862     code wait on that and have everyone else wait for the flight code to
35863     finish looking at the data and move its pointer forwards.
35864     
35865     Signed-off-by: Keith Packard <keithp@keithp.com>
35866
35867 commit 1b8d7313504240ed04e0747e9b0f6e9a83d323e2
35868 Author: Keith Packard <keithp@keithp.com>
35869 Date:   Sun Jan 16 15:57:15 2011 -0800
35870
35871     altos: Auto-calibrate linux-based flight testing code
35872     
35873     Use the provided ground acceleration average to set the two
35874     accelerometer calibration values so that the flight code will
35875     detect pad/idle mode correctly.
35876     
35877     Signed-off-by: Keith Packard <keithp@keithp.com>
35878
35879 commit afd3d3cdb8c2291c1c7cda7908392d68cd04f87f
35880 Author: Mike Beattie <mike@ethernal.org>
35881 Date:   Mon Jan 17 15:03:40 2011 +1300
35882
35883     Rework invalid accel cal detection code
35884     
35885     Slightly reduces code space.
35886     
35887     Uncalibrated accelerometer now enters invalid state as well.
35888     
35889     Signed-off-by: Mike Beattie <mike@ethernal.org>
35890
35891 commit 3566dee1cf83870396a0bb164f5549dd3faf58f5
35892 Author: Keith Packard <keithp@keithp.com>
35893 Date:   Sun Jan 16 14:40:31 2011 -0800
35894
35895     altosui: Remove spurious colons from eeprom selection headers
35896     
35897     This colons make the presentation a bit confusing.
35898     
35899     Signed-off-by: Keith Packard <keithp@keithp.com>
35900
35901 commit ab31b1c737d8fd32af482e5b06699f1b832a25a1
35902 Author: Keith Packard <keithp@keithp.com>
35903 Date:   Sat Jan 15 00:56:22 2011 -0800
35904
35905     altos: Add DATA_TO_XDATA to linux test harness
35906     
35907     The flight test harness needs to expose every function used by the
35908     flight code in some form, and this macro is about to become used.
35909     
35910     Signed-off-by: Keith Packard <keithp@keithp.com>
35911
35912 commit add2802a8a33336180fe6856241a7f4a8200e89c
35913 Author: Mike Beattie <mike@ethernal.org>
35914 Date:   Sun Jan 16 00:10:30 2011 +1300
35915
35916     altos: Added check for out of bounds accel
35917     
35918     Chose invalid flight mode instead of idle to give user feedback.
35919     
35920     Signed-off-by: Mike Beattie <mike@ethernal.org>
35921
35922 commit 58838c0b96a91da0bd0cd77c3ff312b589c08136
35923 Author: Mike Beattie <mike@ethernal.org>
35924 Date:   Sat Jan 15 23:21:26 2011 +1300
35925
35926     altos: Added check for an accel value above 1.5g
35927     
35928     When detecting flight or idle mode, this should indicate
35929     that accel cal values are out of whack.
35930     
35931     Signed-off-by: Mike Beattie <mike@ethernal.org>
35932
35933 commit 118fe84c9ff1cc9d1653e67a2315e22e19d60a14
35934 Author: Keith Packard <keithp@keithp.com>
35935 Date:   Sat Jan 15 11:26:31 2011 -0800
35936
35937     altos: average 512 accel/baro samples at startup instead of 1000
35938     
35939     This lets us use a simple shift instead of a divide, saving a huge
35940     amount of code space.
35941     
35942     Signed-off-by: Keith Packard <keithp@keithp.com>
35943
35944 commit 8a775b8f9ecefa143050653d74dfd218b32b9bb5
35945 Author: Anthony Towns <aj@erisian.com.au>
35946 Date:   Sun Jan 16 10:54:45 2011 +1000
35947
35948     altos: Restructure skytraq NMEA parsing code to save some space
35949     
35950     Splitting this into several smaller functions appears to make SDCC
35951     generate better code.
35952
35953 commit 7a35b2d7048669a96256d4ea0086299f8a0cb1df
35954 Author: Keith Packard <keithp@keithp.com>
35955 Date:   Sat Jan 15 22:42:38 2011 -0800
35956
35957     altos: Flush log when full
35958     
35959     When the log storage is full, make sure any pending writes are flushed
35960     out so that the last bit isn't lost.
35961     
35962     Signed-off-by: Keith Packard <keithp@keithp.com>
35963
35964 commit 47ee4597e55749e8f66f61a585ea32776979bf80
35965 Author: Keith Packard <keithp@keithp.com>
35966 Date:   Sat Jan 15 16:25:10 2011 -0800
35967
35968     altos: TELEMETRY PROTOCOL CHANGE. Switch to 16-bit serial numbers.
35969     
35970     What a terrible mistake! The flight computer serial numbers were
35971     recorded in only 8 bits, so serial numbers > 255 would get truncated.
35972     
35973     There's really no fix other than bumping the field to 16 bits and
35974     reflashing every TM and TD on the planet. Very unfortunate.
35975     
35976     Signed-off-by: Keith Packard <keithp@keithp.com>
35977
35978 commit b22ba359a02297e39a446cbd5ef51e63b795624a
35979 Author: Keith Packard <keithp@keithp.com>
35980 Date:   Sat Jan 15 12:05:50 2011 -0800
35981
35982     doc: inkscape tracks the filename inside the document
35983     
35984     telemetrum-outline.svg was renamed from telemetrum.svg and inkscape
35985     appears to care.
35986     
35987     Signed-off-by: Keith Packard <keithp@keithp.com>
35988
35989 commit d0a841b285fb398f0be72183ec3c9d1e358419a9
35990 Author: Keith Packard <keithp@keithp.com>
35991 Date:   Sat Jan 15 12:02:43 2011 -0800
35992
35993     altosui: Require 4 sats to light up the 'GPS locked' light.
35994     
35995     This tracks the same GPS signal requirement needed for 'GPS ready' and
35996     ensures that we have a 3d fix.
35997     
35998     Signed-off-by: Keith Packard <keithp@keithp.com>
35999
36000 commit 1bfdce6fc3367fdf03e0dc7ddd94da18723b8ba3
36001 Author: Keith Packard <keithp@keithp.com>
36002 Date:   Sun Jan 16 14:30:38 2011 -0800
36003
36004     altosui: Ensure serial device is closed after eeprom download finishes
36005     
36006     As this code is all event-driven, track which events will trigger
36007     further work and block closing the device in those specific cases,
36008     ensuring that all other code paths end up closing the device.
36009     
36010     Signed-off-by: Keith Packard <keithp@keithp.com>
36011
36012 commit 987039b8f0b1d889aca9109d4c6a83f034ff64a7
36013 Author: Keith Packard <keithp@keithp.com>
36014 Date:   Sun Jan 16 14:29:57 2011 -0800
36015
36016     altosui: Remove debug message when eeprom downloads are complete.
36017     
36018     This message isn't useful now that this code appears to work.
36019     
36020     Signed-off-by: Keith Packard <keithp@keithp.com>
36021
36022 commit fb534aae15f0f1e5d69790e159d0287b6b8a514a
36023 Author: Keith Packard <keithp@keithp.com>
36024 Date:   Sun Jan 16 14:28:35 2011 -0800
36025
36026     altosui: Use long input flush timeout when remote.
36027     
36028     100ms isn't long enough to capture pending remote serial input, so use
36029     300 ms in that mode.
36030     
36031     Signed-off-by: Keith Packard <keithp@keithp.com>
36032
36033 commit d4add23186b3586c99579d83efdc003f79e9bf7a
36034 Author: Keith Packard <keithp@keithp.com>
36035 Date:   Sun Jan 16 14:26:18 2011 -0800
36036
36037     altosui: Make serial debug more complete and accurate
36038     
36039     Display all serial input, including telemetry.
36040     Wait to display serial output until flush time, to debug missing flushing.
36041     Show when devices are opened and closed.
36042     
36043     Signed-off-by: Keith Packard <keithp@keithp.com>
36044
36045 commit deb3c7b9206be0c9c46f75d35c8f766c26d9838f
36046 Author: Keith Packard <keithp@keithp.com>
36047 Date:   Sat Jan 15 22:43:37 2011 -0800
36048
36049     altosui: Reset eeprom download instance variables before reading flight
36050     
36051     To deal with downloading multiple flights in a single invocation, make
36052     sure all relevant instance variables are set back to start of flight
36053     download values each time a log is read.
36054     
36055     Signed-off-by: Keith Packard <keithp@keithp.com>
36056
36057 commit eec9eb2e81535e62c52fbb2e57a2d33f88f92c1a
36058 Author: Mike Beattie <mike@ethernal.org>
36059 Date:   Mon Jan 17 07:56:53 2011 +1300
36060
36061     Close serial port if Download/Delete dialog is cancelled.
36062     
36063     Signed-off-by: Mike Beattie <mike@ethernal.org>
36064
36065 commit df1c6ab3ac079199b5a12328c9ff5cfa6ac29b36
36066 Author: Mike Beattie <mike@ethernal.org>
36067 Date:   Mon Jan 17 00:40:07 2011 +1300
36068
36069     Convert EepromSelect dialog to use a GridBag
36070     
36071     Signed-off-by: Mike Beattie <mike@ethernal.org>
36072
36073 commit fef302656f21ae0ab4772f72979cbb7f071da89a
36074 Author: Mike Beattie <mike@ethernal.org>
36075 Date:   Sun Jan 16 20:25:19 2011 +1300
36076
36077     Re-order and re-arrange eeprom download dialog
36078     
36079     Signed-off-by: Mike Beattie <mike@ethernal.org>
36080
36081 commit 35adb7c98fe02e84fff70c1bee22bfa019cfacc2
36082 Author: Keith Packard <keithp@keithp.com>
36083 Date:   Fri Jan 14 21:44:59 2011 -0800
36084
36085     doc: Add telemetrum mounting template in svg and pdf forms
36086     
36087     telemetrum-outline.svg and telemetrum-outline.pdf
36088     
36089     Signed-off-by: Keith Packard <keithp@keithp.com>
36090
36091 commit fdba0f24afd59becc499d750bbdb80aea86066ac
36092 Author: Bdale Garbee <bdale@gag.com>
36093 Date:   Fri Jan 14 18:01:16 2011 -0700
36094
36095     update changelogs for Debian build
36096
36097 commit 646e1926cdf56e2cf2425413ce716e6999b64a58
36098 Author: Bdale Garbee <bdale@gag.com>
36099 Date:   Fri Jan 14 18:01:00 2011 -0700
36100
36101     update changelogs for Debian build
36102
36103 commit d908c2ebd0b11a54cfd922a192249d0f0df0ddb0
36104 Author: Keith Packard <keithp@keithp.com>
36105 Date:   Fri Jan 14 16:47:36 2011 -0800
36106
36107     altosui: Add preference for serial debugging.
36108     
36109     This dumps serial input/output to stdout.
36110     
36111     Signed-off-by: Keith Packard <keithp@keithp.com>
36112
36113 commit fcaee12a64d5e195b55b8f77c19dfc0c57ef5d58
36114 Author: Keith Packard <keithp@keithp.com>
36115 Date:   Fri Jan 14 16:47:19 2011 -0800
36116
36117     altosui: Ensure serial line is flushed after disabling remote link
36118     
36119     Flush the '~' character.
36120     
36121     Signed-off-by: Keith Packard <keithp@keithp.com>
36122
36123 commit 2d154be89246e111a36f7c2700effbb2c97da541
36124 Author: Keith Packard <keithp@keithp.com>
36125 Date:   Fri Jan 14 16:44:50 2011 -0800
36126
36127     altosui: Show dialog after successful delete or when no flights
36128     
36129     Make sure the user always sees confirmation for flight log management.
36130     
36131     Signed-off-by: Keith Packard <keithp@keithp.com>
36132
36133 commit b490455807d1c70c81785ed8931a07ab44e8e421
36134 Author: Bdale Garbee <bdale@gag.com>
36135 Date:   Fri Jan 14 14:31:19 2011 -0700
36136
36137     update changelogs for Debian build
36138
36139 commit 97b1ca994599ad262400eb3c685799582f7f1b94
36140 Author: Bdale Garbee <bdale@gag.com>
36141 Date:   Fri Jan 14 14:30:49 2011 -0700
36142
36143     update changelogs for Debian build
36144
36145 commit d794ef9e0fbe4d13259db1bbd69f01717c14400b
36146 Author: Keith Packard <keithp@keithp.com>
36147 Date:   Wed Jan 12 12:41:26 2011 -0800
36148
36149     altos: check for valid flight number in ao_log_delete
36150     
36151     Zero is not a valid flight number, and ao_log_flight uses that to
36152     indicate 'no flight in this slot'. Check the user-provided input for
36153     zero before looking through the slots.
36154     
36155     Signed-off-by: Keith Packard <keithp@keithp.com>
36156
36157 commit 8801b8c1947bd39f7c985b91a2ba8dbc81bcc91a
36158 Author: Keith Packard <keithp@keithp.com>
36159 Date:   Wed Jan 12 12:40:45 2011 -0800
36160
36161     altosui: Add eeprom 'manage' ui to download and delete multiple flights
36162     
36163     This shows the list of available flights and provides options to
36164     download and/or delete each one.
36165     
36166     Signed-off-by: Keith Packard <keithp@keithp.com>
36167
36168 commit 440d52e34364fdeeddc76a2d744cc6d1c934364f
36169 Author: Keith Packard <keithp@keithp.com>
36170 Date:   Tue Jan 11 21:28:07 2011 -0800
36171
36172     altosui: Add support for parsing list of flights from the 'l' command
36173     
36174     This adds parsing support to enumerate the available flights, but does
36175     not yet provide any UI to use it.
36176     
36177     Signed-off-by: Keith Packard <keithp@keithp.com>
36178
36179 commit 7ad419d81c90ef6a16656970466313767fef830f
36180 Author: Keith Packard <keithp@keithp.com>
36181 Date:   Tue Jan 11 21:26:41 2011 -0800
36182
36183     altos: oops -- 'e' command was only showing 7 of the 8 bytes per line
36184     
36185     Just a silly off-by-one error when printing out the data received from flash.
36186     
36187     Signed-off-by: Keith Packard <keithp@keithp.com>
36188
36189 commit bd2480fd757b67557d9c7de42e402034002c3e37
36190 Author: Keith Packard <keithp@keithp.com>
36191 Date:   Tue Jan 11 15:39:24 2011 -0800
36192
36193     altosui: Split eeprom download code apart
36194     
36195     Create separate 'download config data', 'read single record' and 'read
36196     block' functions. This code will be shared with future multi-log
36197     reading code for new firmware.
36198     
36199     Signed-off-by: Keith Packard <keithp@keithp.com>
36200
36201 commit c437b14b7fc7afdfc7b809a04d7fa29d5e742307
36202 Author: Anthony Towns <aj@erisian.com.au>
36203 Date:   Fri Jan 7 21:00:10 2011 -0800
36204
36205     altos: Remove redundant initialization of ao_interval variables
36206     
36207     These are all initialized in the ao_flight_drogue state transition.
36208     
36209     Signed-off-by: Keith Packard <keithp@keithp.com>
36210
36211 commit 57de960b8148bf485607898c3d66af6994d76481
36212 Author: Anthony Towns <aj@erisian.com.au>
36213 Date:   Fri Jan 7 20:52:33 2011 -0800
36214
36215     altos: Remove unused accel_vel_mach and accel_vel_boost variables
36216     
36217     Presumably left-over debugging code.
36218     
36219     Signed-off-by: Keith Packard <keithp@keithp.com>
36220
36221 commit ca66f86a899c191b6362a334417fc84a79349677
36222 Author: Keith Packard <keithp@keithp.com>
36223 Date:   Fri Jan 7 20:46:29 2011 -0800
36224
36225     altosui: Add configuration of flight log size
36226     
36227     This adds to the TeleMetrum configuration UI the ability to set the
36228     maximum flight log size.
36229     
36230     Signed-off-by: Keith Packard <keithp@keithp.com>
36231
36232 commit 52ac83fedbfd380d14d4df2e79992bbdfba3552a
36233 Author: Keith Packard <keithp@keithp.com>
36234 Date:   Fri Jan 7 20:26:39 2011 -0800
36235
36236     altos: Check for full log and complain
36237     
36238     Reports special tone along with the continuity checks.
36239     Reports flight 0 in telemetry.
36240     
36241     Signed-off-by: Keith Packard <keithp@keithp.com>
36242
36243 commit 00891b40754962ef6530b237ef52017bb58112d5
36244 Author: Keith Packard <keithp@keithp.com>
36245 Date:   Fri Jan 7 20:25:09 2011 -0800
36246
36247     altos: Check requested log max size against available space
36248     
36249     Make sure the amount of memory requested for a single log isn't more
36250     than is available on the device.
36251     
36252     Signed-off-by: Keith Packard <keithp@keithp.com>
36253
36254 commit bbddcae2a15b6d430e84956ddf26955aa9173cc0
36255 Author: Anthony Towns <aj@erisian.com.au>
36256 Date:   Fri Jan 7 20:18:25 2011 -0800
36257
36258     altos: Optimize Morse code generation
36259     
36260     This reduces the size of data and code needed to report the
36261     flight states
36262     
36263     Signed-off-by: Keith Packard <keithp@keithp.com>
36264
36265 commit 73620c41017c1774d6190dfd4be5b742eb64f8d3
36266 Author: Keith Packard <keithp@keithp.com>
36267 Date:   Fri Jan 7 20:13:28 2011 -0800
36268
36269     altos: ensure erase mark is written when erasing flights
36270     
36271     It was getting called only when *failing* to erase a flight (oops),
36272     secondly, it wasn't getting written because ao_storage_flush wasn't
36273     getting called.
36274     
36275     Signed-off-by: Keith Packard <keithp@keithp.com>
36276
36277 commit edd22ee49adf60c35f2fe6ba97c111b7ad4131c2
36278 Author: Keith Packard <keithp@keithp.com>
36279 Date:   Fri Jan 7 17:56:06 2011 -0800
36280
36281     altos: report flight log offsets in hex block numbers instead of bytes
36282     
36283     makes them compatible with the 'e' command.
36284     
36285     Signed-off-by: Keith Packard <keithp@keithp.com>
36286
36287 commit 1cc08af4f4a1ff61fc0deca3bdd95e8a5ca8ec5c
36288 Author: Keith Packard <keithp@keithp.com>
36289 Date:   Fri Jan 7 17:55:54 2011 -0800
36290
36291     altos: white space fix
36292     
36293     Signed-off-by: Keith Packard <keithp@keithp.com>
36294
36295 commit d8c9684239b67a69a4a3d24202a6df0d73c4f7f5
36296 Author: Keith Packard <keithp@keithp.com>
36297 Date:   Fri Jan 7 17:54:54 2011 -0800
36298
36299     altos: Speed up at45 and 25lc erase speeds
36300     
36301     No need to read the block to be erased before erasing it.
36302     
36303     Signed-off-by: Keith Packard <keithp@keithp.com>
36304
36305 commit 2722703bd848b07a02d3ce0c83a502eca52a9f1d
36306 Author: Keith Packard <keithp@keithp.com>
36307 Date:   Fri Jan 7 14:58:39 2011 -0800
36308
36309     altos: support storage of multiple flights.
36310     
36311     This adds the logging support for dealing with multiple flights
36312     
36313     Signed-off-by: Keith Packard <keithp@keithp.com>
36314
36315 commit a9b210bc33cd95e7108ab51925fdf0d5e8deaf7e
36316 Author: Keith Packard <keithp@keithp.com>
36317 Date:   Fri Jan 7 10:05:11 2011 -0800
36318
36319     altos: Add configuration parameter for maximum flight log size
36320     
36321     This parameter will permit available storage to be split into multiple
36322     separate flight logs.
36323     
36324     Signed-off-by: Keith Packard <keithp@keithp.com>
36325
36326 commit 3bcf14f12f6681888c3162d0f33ef2d454eb75dd
36327 Author: Bdale Garbee <bdale@gag.com>
36328 Date:   Fri Jan 7 00:52:50 2011 -0700
36329
36330     update changelogs for Debian build
36331
36332 commit 408a3e04362d626778640dd0ce7d356d3863de53
36333 Author: Keith Packard <keithp@keithp.com>
36334 Date:   Thu Jan 6 23:38:13 2011 -0800
36335
36336     altos: Mark end of available flight list with 'done' to make the UI
36337     code easier to write
36338     
36339     Signed-off-by: Keith Packard <keithp@keithp.com>
36340
36341 commit e991f52276248fa08d96fbecc458bc478e98d299
36342 Author: Keith Packard <keithp@keithp.com>
36343 Date:   Thu Jan 6 23:35:31 2011 -0800
36344
36345     altos: Rip out 'optimization' in ao_log_scan
36346     
36347     Remove premature optimization to avoid re-scanning the flight logs for
36348     the best empty entry.
36349     
36350     Signed-off-by: Keith Packard <keithp@keithp.com>
36351
36352 commit 569a1dac55b70c30f01afa7bcb74442ecdd85d85
36353 Author: Keith Packard <keithp@keithp.com>
36354 Date:   Thu Jan 6 22:37:38 2011 -0800
36355
36356     altos: Move common storage code to ao_storage.c. Add M25P80 driver
36357     
36358     This reworks the storage API so that you erase blocks and then store
36359     data to them so that the M25P80 driver will work.
36360     
36361     Signed-off-by: Keith Packard <keithp@keithp.com>
36362
36363 commit e4ba9bf4291bf17c777c8c3ef7c71e4a30b9947a
36364 Author: Keith Packard <keithp@keithp.com>
36365 Date:   Thu Jan 6 17:34:58 2011 -0800
36366
36367     altos: Require manual flight erasing.
36368     
36369     This supports flash chips that require larger erase blocks.
36370     
36371     Signed-off-by: Keith Packard <keithp@keithp.com>
36372
36373 commit ddcc94da4326f9ce954bd31a46b36165c58e6c18
36374 Author: Keith Packard <keithp@keithp.com>
36375 Date:   Thu Jan 6 12:51:39 2011 -0800
36376
36377     altos: Simplify storage API
36378     
36379     This removes the config-specific APIs and exposes global variables for
36380     the available storage space, block size and config storage location.
36381     
36382     Signed-off-by: Keith Packard <keithp@keithp.com>
36383
36384 commit f3f1b1488bdc92fa9277dc549ba9f3210a8d4c8c
36385 Author: Keith Packard <keithp@keithp.com>
36386 Date:   Thu Jan 6 11:28:35 2011 -0800
36387
36388     altos: packet and usb i/o routines use 'char', not 'uint8_t'
36389     
36390     Just fixing the type of a local variable holding a character
36391     passed from the packet link to usb.
36392     
36393     Signed-off-by: Keith Packard <keithp@keithp.com>
36394
36395 commit 5688af4e4d7ca8e559d758257e79b7979f1cc924
36396 Author: Keith Packard <keithp@keithp.com>
36397 Date:   Wed Dec 22 21:13:56 2010 -0800
36398
36399     altos: Add telemetrum-v1.1 directory
36400     
36401     This just clones the v1.0 build; changes will be added on top of this.
36402     
36403     Signed-off-by: Keith Packard <keithp@keithp.com>
36404
36405 commit 9f7296b3feab872bf51fc369ade69cc1e7cf7a3f
36406 Author: Keith Packard <keithp@keithp.com>
36407 Date:   Wed Dec 22 21:06:22 2010 -0800
36408
36409     altos: Split out SPI driver.
36410     
36411     For TM with the companion connector, the SPI bus will be shared among
36412     multiple devices. Split out the existing SPI code into a common
36413     driver, with the SPI bus protected by a mutex.
36414     
36415     Signed-off-by: Keith Packard <keithp@keithp.com>
36416
36417 commit 51c410c1c952e0e9bcf1b2c438813de63753be5f
36418 Author: Keith Packard <keithp@keithp.com>
36419 Date:   Sun Nov 28 00:24:54 2010 -0800
36420
36421     windows: Update NSIS installer file to use compatibility IDs
36422     
36423     This allows the file to contain a single InitDriverSetup function,
36424     making things shorter and (I hope) clearer.
36425
36426 commit 4a42f9d5c20dcaf5fd7591ccf9e32c6130d9d538
36427 Author: Keith Packard <keithp@keithp.com>
36428 Date:   Sun Nov 28 00:22:14 2010 -0800
36429
36430     windows: Add compatibility IDs to telemetrum.inf
36431     
36432     This will allow the .nsi file to reference just the compatibility ID
36433     instead of needing to have all of the USB IDs listed.
36434     
36435     Signed-off-by: Keith Packard <keithp@keithp.com>
36436
36437 commit 484b44e81b655f1ecb48256095382a56d2839bae
36438 Author: Keith Packard <keithp@keithp.com>
36439 Date:   Fri Nov 26 17:39:40 2010 -0800
36440
36441     altos: eliminate ao_wake_task
36442     
36443     Waking up a task waiting on some random object is a bad idea. Fix
36444     the waiters to look for suitable signalling.
36445     
36446     Signed-off-by: Keith Packard <keithp@keithp.com>
36447
36448 commit 07213dc34fa20470a4b36a327a83d75b0f010ebb
36449 Author: Keith Packard <keithp@keithp.com>
36450 Date:   Fri Nov 26 16:14:15 2010 -0800
36451
36452     altos: clean up radio abort paths. Share radio code.
36453     
36454     Instead of aborting the DMA and radio operation and expecting that to
36455     be handled reasonably by the radio receiving task, rewrite things so
36456     that the abort function just wakes the receiving task while that
36457     terminates the DMA and cleans up the radio.
36458     
36459     This eliminates all kinds of nasty bugs dealing with radio abort
36460     smashing the radio registers at the wrong time, or interrupting a
36461     radio transmission.
36462     
36463     Signed-off-by: Keith Packard <keithp@keithp.com>
36464
36465 commit b62580855c5144f5bc7e0172289bce08814d9472
36466 Author: Anthony Towns <aj@erisian.com.au>
36467 Date:   Tue Dec 14 03:40:18 2010 +1000
36468
36469     altosui: move maps to subdir, fix E/W mismatch
36470
36471 commit b8d2eb5509096fd5bd04598b1312077659109620
36472 Author: Bdale Garbee <bdale@gag.com>
36473 Date:   Wed Dec 1 00:15:17 2010 -0700
36474
36475     update changelogs for Debian build
36476
36477 commit ea95c060f8bd959cefc60dd6d411151f3c91384e
36478 Author: Bdale Garbee <bdale@gag.com>
36479 Date:   Wed Dec 1 00:12:05 2010 -0700
36480
36481     fix symlink paths in rules file
36482
36483 commit f95220b6f0cc74928e0e7d7c7e1f443eafc32a02
36484 Author: Bdale Garbee <bdale@gag.com>
36485 Date:   Wed Dec 1 00:03:23 2010 -0700
36486
36487     update changelogs for Debian build
36488
36489 commit ea7130e953622884afc348265f5a4c58f9876823
36490 Author: Bdale Garbee <bdale@gag.com>
36491 Date:   Wed Dec 1 00:00:58 2010 -0700
36492
36493     modify Debian package build to deliver one copy of background.png for
36494     the themes and symlink it into place for gdm and slim
36495
36496 commit 3696b30a8d1eb351353d84b5f7af8eeff55c468b
36497 Author: Bdale Garbee <bdale@gag.com>
36498 Date:   Mon Nov 29 21:47:13 2010 -0700
36499
36500     update changelogs for Debian build
36501
36502 commit 11b3f9ff715017a2dec02003275885334f22c009
36503 Author: Bdale Garbee <bdale@gag.com>
36504 Date:   Mon Nov 29 21:46:02 2010 -0700
36505
36506     releasing 0.8.1
36507
36508 commit 5f3f11e11dff9b9f4d1dde279c0d474de0de12a5
36509 Author: Keith Packard <keithp@keithp.com>
36510 Date:   Mon Nov 29 20:41:49 2010 -0800
36511
36512     Add minimal release testing plan to Releasing
36513     
36514     Signed-off-by: Keith Packard <keithp@keithp.com>
36515
36516 commit f0a4deee23984a8f779917bbeaf74a66a0abf592
36517 Author: Keith Packard <keithp@keithp.com>
36518 Date:   Mon Nov 29 20:34:27 2010 -0800
36519
36520     Move "Releasing" to top level
36521     
36522     This file documents the AltOS release process for all systems.
36523     
36524     Signed-off-by: Keith Packard <keithp@keithp.com>
36525
36526 commit b727156ef0a7fb6e442ca28be27eb344a213ecf8
36527 Author: Keith Packard <keithp@keithp.com>
36528 Date:   Mon Nov 29 20:17:35 2010 -0800
36529
36530     windows: Add jfreechart.jar and jcommon.jar to windows install image
36531     
36532     These are necessary for the Graph Data button to do anything useful.
36533     
36534     Signed-off-by: Keith Packard <keithp@keithp.com>
36535
36536 commit 3e2220a180f95971d222a597d2057ca328c27356
36537 Author: Bdale Garbee <bdale@gag.com>
36538 Date:   Mon Nov 29 21:29:14 2010 -0700
36539
36540     adding Bdale's release process document to the source tree
36541
36542 commit 61a924099800494b589cbbb87c65b552ccbd8394
36543 Author: Bdale Garbee <bdale@gag.com>
36544 Date:   Mon Nov 29 14:40:27 2010 -0700
36545
36546     fix an Altos vs Altus typo in the docs
36547
36548 commit e840b6594b8a939f148fa7231e1b06a280d94074
36549 Author: Bdale Garbee <bdale@gag.com>
36550 Date:   Sun Nov 28 22:42:43 2010 -0700
36551
36552     fix section layering
36553
36554 commit f39698bbc12afdfadfac56c90030e16db93cf4fc
36555 Author: Bdale Garbee <bdale@gag.com>
36556 Date:   Sun Nov 28 19:46:03 2010 -0700
36557
36558     fix publish target in doc/Makefile
36559
36560 commit 13cea7a96821165a10a8b2433af1da7508882b0a
36561 Author: Bdale Garbee <bdale@gag.com>
36562 Date:   Sun Nov 28 18:48:31 2010 -0700
36563
36564     moved doc dir in web content to AltOS tree
36565
36566 commit 6f3c72462af86a7d9dec20f4c813a524a5be9fbb
36567 Author: Bdale Garbee <bdale@gag.com>
36568 Date:   Sun Nov 28 18:32:17 2010 -0700
36569
36570     update changelogs for Debian build
36571
36572 commit a375942979dbcd8239d8c0addb10616e6048f6ea
36573 Author: Bdale Garbee <bdale@gag.com>
36574 Date:   Sun Nov 28 18:31:26 2010 -0700
36575
36576     rewind changelog to recover from stupid build failure
36577
36578 commit 263cf6c4fc5c1a240d719bb0ceb33393864fb3d6
36579 Author: Bdale Garbee <bdale@gag.com>
36580 Date:   Sun Nov 28 18:24:00 2010 -0700
36581
36582     update changelogs for Debian build
36583
36584 commit 2615289265b6f8fa08827be794b4eee569fc6333
36585 Author: Bdale Garbee <bdale@gag.com>
36586 Date:   Sun Nov 28 18:23:17 2010 -0700
36587
36588     update changelogs for Debian build
36589
36590 commit 5e23bcc2d2ad33a839fedd2158213098a05cd9ae
36591 Author: Bdale Garbee <bdale@gag.com>
36592 Date:   Sun Nov 28 18:21:31 2010 -0700
36593
36594     declaring 0.8 released
36595
36596 commit b09d3e11c32abd07f8e11b483ac4b57148f4f2d8
36597 Author: Keith Packard <keithp@keithp.com>
36598 Date:   Sat Nov 27 23:08:41 2010 -0800
36599
36600     windows: Bump .inf file version
36601
36602 commit 42c2394ccc1a1ee6dc134ed963a4f79acf031d0b
36603 Author: Keith Packard <keithp@keithp.com>
36604 Date:   Sat Nov 27 23:04:50 2010 -0800
36605
36606     windows: more .inf file hacking
36607     
36608     Add a LayoutFile reference
36609     Add the FakeModemCopyFileSection
36610     
36611     Copy AltosMetrum.Install section to AltusMetrum.Install.NT section. I
36612     don't know what this might do; existing files seem inconsistent.
36613     
36614     Signed-off-by: Keith Packard <keithp@keithp.com>
36615
36616 commit 26369a92398f4ebe3fcd54ce34cebffae0cfdf07
36617 Author: Keith Packard <keithp@keithp.com>
36618 Date:   Sat Nov 27 22:39:31 2010 -0800
36619
36620     windows: remove some non-existent .inf file section references
36621     
36622     The mfglt and VerboseResultCodes sections are not present in the .inf
36623     file, so remove refernces to them.
36624     
36625     Signed-off-by: Keith Packard <keithp@keithp.com>
36626
36627 commit 641c5373724d34c3adfcf42420a528d6bba736b9
36628 Author: Keith Packard <keithp@keithp.com>
36629 Date:   Sat Nov 27 22:35:18 2010 -0800
36630
36631     windows: try harder to get windows install to work
36632     
36633     Add devIDs to .nsi file. Fix install section name mapping from the
36634     hot-plug info.
36635     
36636     Signed-off-by: Keith Packard <keithp@keithp.com>
36637
36638 commit cd414e2c04ce5ecbc75f19325a6d6f82cd489fb3
36639 Author: Keith Packard <keithp@keithp.com>
36640 Date:   Sat Nov 27 16:30:29 2010 -0800
36641
36642     altosui: Correct windows hardware IDs for nsis installer file
36643     
36644     Need real hardware IDs (encoded USB ids) to get windows to
36645     auto-install the driver?
36646     
36647     Signed-off-by: Keith Packard <keithp@keithp.com>
36648
36649 commit f834b22905db87557f729f942607dc363b013694
36650 Author: Bdale Garbee <bdale@gag.com>
36651 Date:   Thu Nov 25 22:31:33 2010 -0700
36652
36653     update changelogs for Debian build
36654
36655 commit da3b39d6b1b5ba48686c2a4add4b5448fd5711af
36656 Author: Bdale Garbee <bdale@gag.com>
36657 Date:   Thu Nov 25 22:29:01 2010 -0700
36658
36659     changed main document name from telemetrum-doc to altusmetrum
36660
36661 commit ab6c9c983a2830bc8807e1b75d2576141b73632d
36662 Author: Bdale Garbee <bdale@gag.com>
36663 Date:   Thu Nov 25 19:30:02 2010 -0700
36664
36665     update fat target in Makefiles to reflect move of altosui and libaltos
36666
36667 commit b8f05cdc0e9b4a96852eed9d38ff6d5950e2d2ed
36668 Author: Keith Packard <keithp@keithp.com>
36669 Date:   Thu Nov 25 17:29:28 2010 -0800
36670
36671     altosui: Clean up flash code to ensure swing gets called from right thread
36672     
36673     This moves all of the flash code to a separate thread and passes
36674     messages back to the swing thread to keep the UI up to date.
36675     
36676     Signed-off-by: Keith Packard <keithp@keithp.com>
36677
36678 commit adbb14c63d85b7a54223f88ac623571456f4a462
36679 Author: Keith Packard <keithp@keithp.com>
36680 Date:   Thu Nov 25 16:28:04 2010 -0800
36681
36682     altosui: Remove gratuitous threading from device flashing UI
36683     
36684     There's no need for a thread here, and swing doesn't want us to use
36685     one anyways.
36686     
36687     Signed-off-by: Keith Packard <keithp@keithp.com>
36688
36689 commit 7f88520089660845009148b69bfcea6c9dff9672
36690 Author: Keith Packard <keithp@keithp.com>
36691 Date:   Thu Nov 25 16:23:18 2010 -0800
36692
36693     altosui: Flight data download GUI operations called only from main thread
36694     
36695     Swing doesn't like UI functions being called from non-dispatch thread,
36696     so fix up the eeprom download code to use SwingUtilities.invokeLater
36697     to make sure this works right.
36698     
36699     Signed-off-by: Keith Packard <keithp@keithp.com>
36700
36701 commit 6d3612e267cd4c1e7fdd74fc33952b3f26f870f5
36702 Author: Keith Packard <keithp@keithp.com>
36703 Date:   Thu Nov 25 16:09:37 2010 -0800
36704
36705     altosui: Eliminate unnecessary thread from config UI
36706     
36707     There's no reason to use a thread to run a dialog box, and
36708     swing doesn't like threads anyways.
36709     
36710     Signed-off-by: Keith Packard <keithp@keithp.com>
36711
36712 commit 12fb7f0e70cd244475d84469f93283112478d1e1
36713 Author: Keith Packard <keithp@keithp.com>
36714 Date:   Thu Nov 25 15:56:42 2010 -0800
36715
36716     altosui: Only call swing display functions from main thread.
36717     
36718     Swing insists that all display functions be called from a single
36719     thread, and the flight window wasn't following this for display
36720     updates. Use SwingUtilities.invokeLater to make sure the flight UI
36721     updates happen in the right context.
36722     
36723     Fixes a UI freeze on Mac OS.
36724     
36725     Signed-off-by: Keith Packard <keithp@keithp.com>
36726
36727 commit b74cec6cd0bc043f53e9e28472765aa343136813
36728 Author: Bob Finch <w9ya@qrparci.net>
36729 Date:   Thu Nov 25 13:30:48 2010 -0700
36730
36731     Updated AltOS PKGBUILD to track makefile changes
36732
36733 commit f88bde21d76a4ff91099a5051153ebace1619978
36734 Author: Keith Packard <keithp@keithp.com>
36735 Date:   Thu Nov 25 11:16:55 2010 -0800
36736
36737     altosui: Hack up standalone makefile to maybe build altosui again
36738     
36739     This isn't tested, but at least the paths are more likely to be correct
36740     
36741     Signed-off-by: Keith Packard <keithp@keithp.com>
36742
36743 commit 3d98440d53378aaa6da87ed65e9abb2f96f7ee49
36744 Author: Keith Packard <keithp@keithp.com>
36745 Date:   Thu Nov 25 11:16:28 2010 -0800
36746
36747     altosui: Make windows bits build after moving altosui directory
36748     
36749     Signed-off-by: Keith Packard <keithp@keithp.com>
36750
36751 commit 4893ed50bc14772986ac02f9b39928f1882da923
36752 Author: Keith Packard <keithp@keithp.com>
36753 Date:   Wed Nov 24 23:54:08 2010 -0800
36754
36755     Revert "altos: Don't abort radio transmissions with ao_radio_abort"
36756     
36757     This reverts commit 54468e5dc567aaac5c5c20e921859b7cec28bb88.
36758     
36759     With this patch in place, TD could not be placed in 'packet' mode.
36760
36761 commit cb08bc264c71ca972027392b42f347a03df76a43
36762 Author: Keith Packard <keithp@keithp.com>
36763 Date:   Wed Nov 24 22:55:08 2010 -0800
36764
36765     doc: Rename telemetrum-doc as altusmetrum
36766     
36767     Signed-off-by: Keith Packard <keithp@keithp.com>
36768
36769 commit 554bdd25e132dbaec322bc11f94093d2c2e78751
36770 Author: Keith Packard <keithp@keithp.com>
36771 Date:   Wed Nov 24 22:49:33 2010 -0800
36772
36773     doc: Add more authors, fix URL formatting, note that AltosUI actually exists
36774     
36775     Add aj and bfinch as authors. Insert an acknowledgements section. Fill
36776     in the Fire Igniter section in the AltosUI chapter. Then change the
36777     section talking about the future plans for Java to mention that they
36778     actually exist now.
36779     
36780     Signed-off-by: Keith Packard <keithp@keithp.com>
36781
36782 commit bcf78b67717374b5971820021b83061e2e9734cf
36783 Author: Keith Packard <keithp@keithp.com>
36784 Date:   Wed Nov 24 21:39:18 2010 -0800
36785
36786     doc: Reformat altos to use sections for each function
36787     
36788     This places them in the TOC, making them easier to find.
36789     
36790     Signed-off-by: Keith Packard <keithp@keithp.com>
36791
36792 commit 51c7741040d95c5deece939dae5e4136cc04afc4
36793 Merge: d1dbe3b 4e47c44
36794 Author: Keith Packard <keithp@keithp.com>
36795 Date:   Wed Nov 24 21:00:52 2010 -0800
36796
36797     Merge branch 'buttonbox'
36798     
36799     Conflicts:
36800         doc/telemetrum-doc.xsl
36801     
36802     Pull the buttbox version of the docs in as it had been updated.
36803     
36804     Signed-off-by: Keith Packard <keithp@keithp.com>
36805
36806 commit 4e47c44d335276cf0dc5ed3a0756e50c98c1b9b9
36807 Author: Bdale Garbee <bdale@gag.com>
36808 Date:   Wed Nov 24 21:44:53 2010 -0700
36809
36810     manually fold in documentation work from the master branch
36811
36812 commit 8a68c1da253c0b29a7cb9c7540c20585ad6e3dec
36813 Author: Bdale Garbee <bdale@gag.com>
36814 Date:   Wed Nov 24 21:21:53 2010 -0700
36815
36816     tweak rev history
36817
36818 commit 7cd1c7765d137df711caeeb69abaaba1b36e0a65
36819 Author: Bdale Garbee <bdale@gag.com>
36820 Date:   Wed Nov 24 20:53:36 2010 -0700
36821
36822     fix missing section close in Site Map content
36823
36824 commit db2b19b8f0d452d682d53c7ed0ff6e359b46efa0
36825 Merge: b372f3c 915f881
36826 Author: Keith Packard <keithp@keithp.com>
36827 Date:   Wed Nov 24 18:57:35 2010 -0800
36828
36829     Merge remote branch 'aj/buttonbox' into buttonbox
36830
36831 commit b372f3c0ee4ec49aabe61c169cb1eb9bb4fb2cfc
36832 Author: Keith Packard <keithp@keithp.com>
36833 Date:   Wed Nov 24 18:50:46 2010 -0800
36834
36835     Missing change to top level Makefile to build altosui
36836     
36837     Signed-off-by: Keith Packard <keithp@keithp.com>
36838
36839 commit 915f881d61294dc6f5a6a3e8d75567e18492a631
36840 Author: Anthony Towns <aj@erisian.com.au>
36841 Date:   Thu Nov 25 09:52:30 2010 +1000
36842
36843     doc: Document altosui "Site Map" tab
36844
36845 commit f01096c4b42f9a4720ed0414826c2a283a992545
36846 Merge: 357826a 3fbefb3
36847 Author: Anthony Towns <aj@erisian.com.au>
36848 Date:   Thu Nov 25 09:10:50 2010 +1000
36849
36850     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
36851
36852 commit 3fbefb3eea981d34a09496cf8abf0119de2e35bf
36853 Author: Keith Packard <keithp@keithp.com>
36854 Date:   Wed Nov 24 14:57:57 2010 -0800
36855
36856     Move altosui to the top level, placing libaltos inside it.
36857     
36858     Signed-off-by: Keith Packard <keithp@keithp.com>
36859
36860 commit 357826aa9c7b42c59f5d52b8eb016d73b6da0c7f
36861 Author: Anthony Towns <aj@erisian.com.au>
36862 Date:   Thu Nov 25 09:07:34 2010 +1000
36863
36864     docs: Document altosui "Graph Data" button
36865
36866 commit 7811e6dfa6caf10251da7df7c24b98cdc3787892
36867 Merge: 71b1949 7a50837
36868 Author: Anthony Towns <aj@erisian.com.au>
36869 Date:   Thu Nov 25 08:47:36 2010 +1000
36870
36871     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
36872
36873 commit 7a50837ea0d92db3f469f197ec8210aee22aa143
36874 Author: Keith Packard <keithp@keithp.com>
36875 Date:   Wed Nov 24 10:55:18 2010 -0800
36876
36877     altosui: Make sure packet mode is turned off when the connection fails
36878     
36879     When the packet connection times out, turn packet mode off when
36880     closing the serial port.
36881     
36882     Signed-off-by: Keith Packard <keithp@keithp.com>
36883
36884 commit 7d90e2f6009e060fb59c519f7e564483a7ca6872
36885 Author: Keith Packard <keithp@keithp.com>
36886 Date:   Tue Nov 23 20:17:44 2010 -0800
36887
36888     altosui: Let people fire igniters that don't read as 'ready'
36889     
36890     This provides for igniter testing with LEDs or other materials that
36891     don't look like regular igniters.
36892     
36893     Signed-off-by: Keith Packard <keithp@keithp.com>
36894
36895 commit f3233985a132e1d660e6df12d0056b6729f16faf
36896 Author: Keith Packard <keithp@keithp.com>
36897 Date:   Tue Nov 23 19:09:31 2010 -0800
36898
36899     altosui: Disable radio configation over packet link.
36900     
36901     Attempting to configure the radio over the packet link will only end
36902     up confusing the user, so disable it. This also works around a bug in
36903     older TM code which would lock up when trying to do this.
36904     
36905     Signed-off-by: Keith Packard <keithp@keithp.com>
36906
36907 commit 6cd9be22f06f21d12ee2f668989d83d3c61d14c0
36908 Author: Keith Packard <keithp@keithp.com>
36909 Date:   Tue Nov 23 19:08:07 2010 -0800
36910
36911     altosui: New AltosSerial.set_radio function sets channel/call
36912     
36913     Use this anytime you need to set the device radio channel and call
36914     sign, either for telemetry reception or packet mode origination. This
36915     uses the saved callsign and per-device radio channel number. Do not
36916     use this when opening a telemetrum as there won't be a saved channel number.
36917     
36918     Signed-off-by: Keith Packard <keithp@keithp.com>
36919
36920 commit ed7cf7d262fcf7c0c677c2fb981582b571de9e5e
36921 Author: Keith Packard <keithp@keithp.com>
36922 Date:   Tue Nov 23 19:04:55 2010 -0800
36923
36924     altosui: Make AltosSerial.flush_input keep reading while non-empty
36925     
36926     Flushing the input buffer can take a while, especially over the packet
36927     link. Keep reading while stuff is appearing on the reply queue.
36928     
36929     Signed-off-by: Keith Packard <keithp@keithp.com>
36930
36931 commit 3b9db8c82d26a6a2e43d4ca40742fc1bdc502380
36932 Author: Keith Packard <keithp@keithp.com>
36933 Date:   Tue Nov 23 19:02:54 2010 -0800
36934
36935     altos: Make radio test command careful with the radio mutex.
36936     
36937     Remember whether the radio test mode is on or off and don't try to do
36938     either of them twice to prevent the mutex from being acquired or
36939     released twice.
36940     
36941     Signed-off-by: Keith Packard <keithp@keithp.com>
36942
36943 commit 54468e5dc567aaac5c5c20e921859b7cec28bb88
36944 Author: Keith Packard <keithp@keithp.com>
36945 Date:   Tue Nov 23 18:57:49 2010 -0800
36946
36947     altos: Don't abort radio transmissions with ao_radio_abort
36948     
36949     We only want to abort pending radio reception to release the radio for
36950     other use, or to change the radio channel. Let radio transmission
36951     proceed. This fixes a problem with using packet mode to configure the
36952     radio channel; if the packet transmission is aborted, the TM ends up
36953     wedged.
36954     
36955     Signed-off-by: Keith Packard <keithp@keithp.com>
36956
36957 commit d873dc28f0752aeb58a6263e42bdd5b9095bd392
36958 Author: Keith Packard <keithp@keithp.com>
36959 Date:   Tue Nov 23 18:56:46 2010 -0800
36960
36961     altos: remove unused variable from ao_igniter
36962     
36963     The 'status' variable used to hold a reported status value from the
36964     igniter after firing, but we ignore that now.
36965     
36966     Signed-off-by: Keith Packard <keithp@keithp.com>
36967
36968 commit 71b1949e50f4533bcf44537da65b19bc67863c8e
36969 Merge: a79225c f1892b1
36970 Author: Anthony Towns <aj@erisian.com.au>
36971 Date:   Wed Nov 24 12:14:11 2010 +1000
36972
36973     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
36974
36975 commit f1892b137b1de3d6caf0293bd40ed5c3e4948066
36976 Author: Bdale Garbee <bdale@gag.com>
36977 Date:   Tue Nov 23 18:58:11 2010 -0700
36978
36979     lose the placeholder on how GPS works, as it's going to be a
36980     while before I tackle that, if ever.
36981
36982 commit a79225c215f17fa5218ddd9db4fc3f5c563a9f74
36983 Merge: 84cd5d4 853b711
36984 Author: Anthony Towns <aj@erisian.com.au>
36985 Date:   Wed Nov 24 11:55:14 2010 +1000
36986
36987     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
36988
36989 commit 853b7112e34212040c4cb7289f9cfdb2f3ea9f90
36990 Author: Bdale Garbee <bdale@gag.com>
36991 Date:   Tue Nov 23 18:53:18 2010 -0700
36992
36993     merge Keith's AltosUI documention into "the big book"
36994
36995 commit 84cd5d42d8b5659463544fe2a400758b56478609
36996 Author: Anthony Towns <aj@erisian.com.au>
36997 Date:   Wed Nov 24 02:13:32 2010 +1000
36998
36999     altosui: sitemap uses rocket gps if no pad gps
37000
37001 commit c7119c21baa9d4ca681975b8613ade6593f65577
37002 Author: Anthony Towns <aj@erisian.com.au>
37003 Date:   Wed Nov 24 02:11:36 2010 +1000
37004
37005     altosui: don't switch away from user selected tab
37006
37007 commit ae55a107f12546dc65f04618c7abc17beb920d73
37008 Merge: d1005f6 737f2fd
37009 Author: Anthony Towns <aj@erisian.com.au>
37010 Date:   Wed Nov 24 01:53:46 2010 +1000
37011
37012     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37013
37014 commit 737f2fdd012202f453120ece117ae5e859b32082
37015 Author: Keith Packard <keithp@keithp.com>
37016 Date:   Mon Nov 22 22:26:19 2010 -0800
37017
37018     doc: Add internal documentation for AltOS
37019     
37020     Signed-off-by: Keith Packard <keithp@keithp.com>
37021
37022 commit 5523e7d55ecc8d310e495fa4f5115f7483c42d65
37023 Author: Bdale Garbee <bdale@gag.com>
37024 Date:   Mon Nov 22 21:07:10 2010 -0700
37025
37026     add a rudimentary --help for command line use
37027
37028 commit d1005f68376d695039c314b8d7a68bbf9acbca4f
37029 Merge: 9a83e0d 22c0978
37030 Author: Anthony Towns <aj@erisian.com.au>
37031 Date:   Tue Nov 23 10:14:55 2010 +1000
37032
37033     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37034
37035 commit 22c09781af1df4b38562b577e9926c23e4a397f2
37036 Merge: b27327a a79606a
37037 Author: Keith Packard <keithp@keithp.com>
37038 Date:   Mon Nov 22 16:02:22 2010 -0800
37039
37040     Merge remote branch 'origin/buttonbox' into buttonbox
37041
37042 commit b27327a05d249eaf969b67d2a8d12fc6a93841f0
37043 Author: Keith Packard <keithp@keithp.com>
37044 Date:   Mon Nov 22 15:56:04 2010 -0800
37045
37046     altos: assume igniter worked.
37047     
37048     Many igniters don't go open when fired, so there's no way
37049     to know if they worked. Assume they did as a failed igniter is
37050     unlikely to do anything when fired again anyways.
37051     
37052     Signed-off-by: Keith Packard <keithp@keithp.com>
37053
37054 commit 68323cbb222f1f33198a42abaa0550af22f75a93
37055 Author: Keith Packard <keithp@keithp.com>
37056 Date:   Mon Nov 22 15:53:27 2010 -0800
37057
37058     altosui: Close serial port when debug link fails
37059     
37060     If the debug connection isn't working, close down the serial port when
37061     reporting the failure.
37062     
37063     Signed-off-by: Keith Packard <keithp@keithp.com>
37064
37065 commit 9a83e0dc79f7a7467c7814d58daa2a2b89e50972
37066 Merge: 902735f a79606a
37067 Author: Anthony Towns <aj@erisian.com.au>
37068 Date:   Tue Nov 23 08:07:04 2010 +1000
37069
37070     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37071
37072 commit a79606a6507fc01a74910f7959e84c4e9a730714
37073 Author: Bob Finch <w9ya@qrparci.net>
37074 Date:   Mon Nov 22 12:24:42 2010 -0700
37075
37076     Added PKGBUILDs for deps into contribs
37077
37078 commit 377ee7e90ecd028f984cd1abce96b2efc3b5b977
37079 Author: Keith Packard <keithp@keithp.com>
37080 Date:   Sun Nov 21 14:03:17 2010 -0800
37081
37082     altos: Add on/off modes to 'C' command
37083     
37084     This lets the user turn the radio on/off and then invoke other commands.
37085     
37086     Signed-off-by: Keith Packard <keithp@keithp.com>
37087
37088 commit 902735ffbfdd97672d52b09f17cdcd619193fd05
37089 Author: Anthony Towns <aj@erisian.com.au>
37090 Date:   Mon Nov 22 05:29:26 2010 +1000
37091
37092     altosui: keep sitemap more centred on rocket
37093
37094 commit b85df38b5611e45cb9296df07b720badf74ac26e
37095 Author: Anthony Towns <aj@erisian.com.au>
37096 Date:   Mon Nov 22 05:22:17 2010 +1000
37097
37098     altosui: improve sitemap scrolling behaviour
37099
37100 commit 4a9ded5b39ed08e13abc2cddba8b712f62b983f2
37101 Author: Anthony Towns <aj@erisian.com.au>
37102 Date:   Sun Nov 21 17:39:50 2010 +1000
37103
37104     AltosSiteMap: ensure buffer around active tile
37105
37106 commit ec47bc93a487614714a752cb30ec9fe3d8f72929
37107 Merge: 0393830 e7954c8
37108 Author: Anthony Towns <aj@erisian.com.au>
37109 Date:   Sun Nov 21 16:08:37 2010 +1000
37110
37111     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37112
37113 commit e7954c820763f80e993f9f822e837725cf36af84
37114 Author: Keith Packard <keithp@keithp.com>
37115 Date:   Sat Nov 20 22:03:26 2010 -0800
37116
37117     altosui: When fixing eeprom gps time information, make GPS data valid
37118     
37119     Eeprom files may be missing the GPS time (due to a firmware bug). Working
37120     around this involves finding the next valid GPS time and using that to
37121     create a fake GPS time entry. However, that next GPS time may not
37122     be locked or may have few sats as it is from the boost stage of the
37123     flight. Fix this by simply forcing the fake time packet to have
37124     4 sats and be locked.
37125     
37126     Signed-off-by: Keith Packard <keithp@keithp.com>
37127
37128 commit 0393830f85da5efc96bbdf0d9769b66019c34b33
37129 Author: Anthony Towns <aj@erisian.com.au>
37130 Date:   Sun Nov 21 15:13:35 2010 +1000
37131
37132     AltosSiteMap: limit nr of tiles to 200x200
37133
37134 commit a08b2a6363c194195db92029743f6612676373ce
37135 Author: Anthony Towns <aj@erisian.com.au>
37136 Date:   Sun Nov 21 15:03:21 2010 +1000
37137
37138     AltosSiteMap: never accept 0,0 as lat/long
37139
37140 commit 84e570d8a8a52e0d358582135ec1b3a12be94c26
37141 Author: Anthony Towns <aj@erisian.com.au>
37142 Date:   Sun Nov 21 14:45:10 2010 +1000
37143
37144     AltosSiteMap: refactor tile collection
37145
37146 commit 71e487344395a8efc9cd279aad92f601ff4c6d3d
37147 Author: Anthony Towns <aj@erisian.com.au>
37148 Date:   Sun Nov 21 14:05:00 2010 +1000
37149
37150     AltosSiteMap: thread safe tile addition
37151
37152 commit c040bcd06679484175542208fb564d0271a7fc1b
37153 Author: Anthony Towns <aj@erisian.com.au>
37154 Date:   Sun Nov 21 13:19:36 2010 +1000
37155
37156     AltosSiteMap: try to get new tile construction right
37157
37158 commit c3994dd82d489289ebc99ff9c5fa88f560c023ac
37159 Author: Anthony Towns <aj@erisian.com.au>
37160 Date:   Sun Nov 21 13:07:11 2010 +1000
37161
37162     AltosSiteMap: extend map if rocket goes far away
37163
37164 commit 835b903727a2eabda8d9659cc46e53301f92897c
37165 Merge: 440a0f3 8789135
37166 Author: Anthony Towns <aj@erisian.com.au>
37167 Date:   Sun Nov 21 11:15:02 2010 +1000
37168
37169     Merge branch 'sitemap' into buttonbox
37170     
37171     Conflicts:
37172         ao-tools/altosui/AltosSiteMap.java
37173
37174 commit 878913551a1e4e3c8f2b39fa4aeb234880735a1c
37175 Author: Anthony Towns <aj@erisian.com.au>
37176 Date:   Sun Nov 21 10:55:22 2010 +1000
37177
37178     AltosSiteMap: explain tile size better
37179
37180 commit 440a0f3f5130eb0c8e614691892be8c94e7fd3c3
37181 Author: Keith Packard <keithp@keithp.com>
37182 Date:   Sat Nov 20 16:55:12 2010 -0800
37183
37184     altosui: Set site map flight path lines to 6 pixels anti-aliased.
37185     
37186     Much more visible over the map.
37187     
37188     Signed-off-by: Keith Packard <keithp@keithp.com>
37189
37190 commit 2a7dc3ba36bac81640a9498e0d0caf1470b57c19
37191 Merge: e5b1ada ece2c86
37192 Author: Anthony Towns <aj@erisian.com.au>
37193 Date:   Sun Nov 21 10:45:15 2010 +1000
37194
37195     Merge branch 'buttonbox' into sitemap
37196     
37197     Conflicts:
37198         ao-tools/altosui/AltosFlightUI.java
37199
37200 commit 8df185cd95cfecbed8272dd1275d077c5b45535b
37201 Merge: ece2c86 1e71264
37202 Author: Keith Packard <keithp@keithp.com>
37203 Date:   Sat Nov 20 16:35:48 2010 -0800
37204
37205     Merge remote branch 'aj/sitemap' into buttonbox
37206     
37207     Conflicts:
37208         ao-tools/altosui/AltosFlightUI.java
37209     
37210     Signed-off-by: Keith Packard <keithp@keithp.com>
37211
37212 commit e5b1adae9b23b98a6321986f5cd67c9d3166b87f
37213 Author: Anthony Towns <aj@erisian.com.au>
37214 Date:   Sun Nov 21 10:34:39 2010 +1000
37215
37216     AltosSiteMap: better gps check, lower zoom
37217
37218 commit ece2c86e2641b2cd613791293526c492b1606aa1
37219 Author: Keith Packard <keithp@keithp.com>
37220 Date:   Sat Nov 20 16:19:42 2010 -0800
37221
37222     altosui: Rewrite info table to mix with scroll pane well. Fix startup size
37223     
37224     Using a single table for the info table means that the scroll pane
37225     automatically picks up the table headers and shows them above the
37226     scrollable view.
37227     
37228     This patch also fixes the application size at startup so that no
37229     scrollbar is required in the info table, and the window is < 800x600.
37230     
37231     Signed-off-by: Keith Packard <keithp@keithp.com>
37232
37233 commit 1e712647dd6df1e77650db705f3ac32a3c8f6907
37234 Author: Anthony Towns <aj@erisian.com.au>
37235 Date:   Sun Nov 21 08:58:44 2010 +1000
37236
37237     altosui: reindent
37238
37239 commit a59a204e188e40ec8848a0dc63d6de710cee3039
37240 Merge: 8263630 37f0201
37241 Author: Anthony Towns <aj@erisian.com.au>
37242 Date:   Sun Nov 21 08:56:13 2010 +1000
37243
37244     Merge branch 'buttonbox' into sitemap
37245
37246 commit 82636305021c41d676f5f0f11378724fe0de0079
37247 Author: Anthony Towns <aj@erisian.com.au>
37248 Date:   Sun Nov 21 08:44:13 2010 +1000
37249
37250     AltosSiteMap: be more polite about preferred size
37251
37252 commit 37f0201d724693528f37ac7d275f68f90cf94da0
37253 Author: Keith Packard <keithp@keithp.com>
37254 Date:   Sat Nov 20 14:31:23 2010 -0800
37255
37256     altosui: change descent tab formatting to four columns
37257     
37258     This places labels to the left of each field. For igniter voltages,
37259     it uses three columns for the labels.
37260     
37261     Signed-off-by: Keith Packard <keithp@keithp.com>
37262
37263 commit 66ebd954d9c9a44a8db0ee713c682e39306fabd8
37264 Author: Anthony Towns <aj@erisian.com.au>
37265 Date:   Sun Nov 21 08:28:24 2010 +1000
37266
37267     Add GrabNDrag.java
37268
37269 commit 72f5e05f9f0055f2cef8b840812f090556c94338
37270 Author: Anthony Towns <aj@erisian.com.au>
37271 Date:   Sun Nov 21 08:18:39 2010 +1000
37272
37273     AltosSiteMap: major refactoring
37274
37275 commit b47517d4c2e49f6f7b9954d2c85f96397fe1103e
37276 Author: Keith Packard <keithp@keithp.com>
37277 Date:   Sat Nov 20 14:06:37 2010 -0800
37278
37279     altosui: re-indent
37280
37281 commit 6f8bc2ad20b715343e0510563ab0f14787ef3e07
37282 Author: Anthony Towns <aj@erisian.com.au>
37283 Date:   Sun Nov 21 01:34:52 2010 +1000
37284
37285     AltosDescent: switch elev from height to range
37286
37287 commit 89f44c5587ea4f927d5e398b6af919df0d6561c3
37288 Author: Anthony Towns <aj@erisian.com.au>
37289 Date:   Sun Nov 21 01:27:01 2010 +1000
37290
37291     AltosAscent/Descent: tidy up layout
37292
37293 commit 51e403145d28ac913e36d205077a613845596be2
37294 Author: Anthony Towns <aj@erisian.com.au>
37295 Date:   Sun Nov 21 00:17:51 2010 +1000
37296
37297     AltosSiteMapTile: draw boost circle as well as landed
37298
37299 commit 25ffe1cc7823895886b4777f310b4bda1c80133b
37300 Author: Anthony Towns <aj@erisian.com.au>
37301 Date:   Sun Nov 21 00:07:16 2010 +1000
37302
37303     AltosSiteMap: automatic fetching of map data
37304
37305 commit 20f714bbe3137de8fb7491b39985021fd1774930
37306 Author: Anthony Towns <aj@erisian.com.au>
37307 Date:   Sat Nov 20 22:49:51 2010 +1000
37308
37309     AltosSiteMapTile: seperate map and drawing layers
37310
37311 commit 58f8d069ce9488e2987b8e92caa69fe68cda7569
37312 Author: Anthony Towns <aj@erisian.com.au>
37313 Date:   Sat Nov 20 21:06:37 2010 +1000
37314
37315     AltosSiteMap: add autoscroll and grabndrag scroll
37316
37317 commit 74cab8503b51ba6fb05a4d12a031c749e870b0ef
37318 Merge: 0ecf033 9a99cab
37319 Author: Anthony Towns <aj@erisian.com.au>
37320 Date:   Sat Nov 20 18:20:45 2010 +1000
37321
37322     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37323
37324 commit 0ecf033110084f1a8be98282d7029dc14f70dab5
37325 Merge: 081fbd5 71c41ea
37326 Author: Anthony Towns <aj@erisian.com.au>
37327 Date:   Sat Nov 20 18:14:30 2010 +1000
37328
37329     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37330
37331 commit 9a99cabc1c34c657fc95246192ba6d330f5f22d3
37332 Author: Keith Packard <keithp@keithp.com>
37333 Date:   Sat Nov 20 00:13:58 2010 -0800
37334
37335     altosui: Fix channel changing in flight UI to actually work
37336     
37337     Replacing the menu with a combo box required reworking the way events
37338     are delivered from that widget back to the channel changing
37339     function. Just delete the old magic and use the JComboBox action
37340     listener directly.
37341     
37342     Signed-off-by: Keith Packard <keithp@keithp.com>
37343
37344 commit 71c41eadd12c3ece5fffce7669e4991778046d4e
37345 Author: Keith Packard <keithp@keithp.com>
37346 Date:   Sat Nov 20 00:09:03 2010 -0800
37347
37348     altosui: Initialize display thread state in constructor instead of run
37349     
37350     Some state will get set before run is called, initializing it there
37351     can be too late.
37352     
37353     Signed-off-by: Keith Packard <keithp@keithp.com>
37354
37355 commit 081fbd5715f9d3d81d98e149fb95d40447c07a79
37356 Merge: 90b9bc4 7920ed5
37357 Author: Anthony Towns <aj@erisian.com.au>
37358 Date:   Sat Nov 20 17:40:49 2010 +1000
37359
37360     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37361     
37362     Conflicts:
37363         ao-tools/altosui/AltosFlightUI.java
37364
37365 commit 7920ed5c34b088f45ce4213b061ddd1ffe22cee8
37366 Author: Keith Packard <keithp@keithp.com>
37367 Date:   Fri Nov 19 23:18:51 2010 -0800
37368
37369     altosui: calling thread.interrupt with null thread doesn't work well
37370     
37371     This was a left-over from debugging the previous patch.
37372     
37373     Signed-off-by: Keith Packard <keithp@keithp.com>
37374
37375 commit 8c8dc3794c7b5fa5a5b43b1c461d6c8bb3ab425d
37376 Author: Keith Packard <keithp@keithp.com>
37377 Date:   Fri Nov 19 23:09:15 2010 -0800
37378
37379     altosui: When switching log files, don't terminate log thread
37380     
37381     The log thread automatically switches output files when the incoming
37382     telemetry changes. Don't use 'close' for that as 'close' terminates
37383     the log thread as well as closing the file. Create a new
37384     'close_log_file' function which just closes the file.
37385     
37386     Signed-off-by: Keith Packard <keithp@keithp.com>
37387
37388 commit 594e80572821f1848db062d0cff18ca8bf0d90ce
37389 Author: Keith Packard <keithp@keithp.com>
37390 Date:   Fri Nov 19 22:44:48 2010 -0800
37391
37392     altosui: switch channel selector to combo box. Shorten displayed device names
37393     
37394     A combo box displays the current value, which is quite nice to
37395     have. Add a 'toShortString' for AltosDevice so that the window frames
37396     and error messages don't have extra spaces generated by the
37397     altos_device toString method.
37398     
37399     Signed-off-by: Keith Packard <keithp@keithp.com>
37400
37401 commit fa07afc73bc5eccff8464a2def05ad600da33c97
37402 Author: Bdale Garbee <bdale@gag.com>
37403 Date:   Fri Nov 19 23:33:42 2010 -0700
37404
37405     update turnon scripts to use stashed copies of stable release firmware
37406
37407 commit 9ffc2eb53a47e435f39b02896b0e43ae5f47f450
37408 Author: Keith Packard <keithp@keithp.com>
37409 Date:   Fri Nov 19 18:25:48 2010 -0800
37410
37411     altosui: Use timeouts to recover from broken packet links.
37412     
37413     This puts timeouts every place the system reads from the packet link
37414     and aborts the in-progress operation if it takes more than a second to
37415     get a response.
37416     
37417     Also mixed in here are persistent igniter status displays for the
37418     ejection testing UI.
37419     
37420     Signed-off-by: Keith Packard <keithp@keithp.com>
37421
37422 commit 68078eab3c07d8dc83302747cf6f3dcb1797c6ce
37423 Author: Keith Packard <keithp@keithp.com>
37424 Date:   Fri Nov 19 20:44:29 2010 +0800
37425
37426     doc: Document the 'Flash Image' operation.
37427     
37428     Signed-off-by: Keith Packard <keithp@keithp.com>
37429
37430 commit b4bdda65488e8ef27d2889cb6cc8eda3c5d50e0a
37431 Author: Keith Packard <keithp@keithp.com>
37432 Date:   Fri Nov 19 20:29:14 2010 +0800
37433
37434     doc: git ignore generated doc files
37435     
37436     Signed-off-by: Keith Packard <keithp@keithp.com>
37437
37438 commit f0542085de2139ef562af068ec05fa73f47c73b1
37439 Author: Keith Packard <keithp@keithp.com>
37440 Date:   Fri Nov 19 20:26:49 2010 +0800
37441
37442     doc: Add preliminary altosui documentation
37443     
37444     Also, update the Makefile to allow for further documents to be added
37445     without a lot of custom rules.
37446     
37447     Signed-off-by: Keith Packard <keithp@keithp.com>
37448
37449 commit 0e7a10f71803d60f8b34c5a91efd220449442769
37450 Author: Keith Packard <keithp@keithp.com>
37451 Date:   Fri Nov 19 17:16:03 2010 +0800
37452
37453     altosui: Clean up global AltosUI configuration settings dialog
37454     
37455     This dialog had a mish-mash of styles and was confusing.
37456     Now it's got a label for each line, and suitable setters for
37457     each element
37458     
37459     Signed-off-by: Keith Packard <keithp@keithp.com>
37460
37461 commit 8f72f08839346fb225238420324f0edcd070e531
37462 Author: Keith Packard <keithp@keithp.com>
37463 Date:   Fri Nov 19 17:14:17 2010 +0800
37464
37465     altosui: Unify datafile selection to AltosDataChooser
37466     
37467     Instead of having several separate intefaces, use a single dialog for
37468     selecting data files for graph/export/replay.
37469     
37470     Signed-off-by: Keith Packard <keithp@keithp.com>
37471
37472 commit 24ffcf86c43290ce0f70fb4ee0984b3debdb8a5f
37473 Author: Keith Packard <keithp@keithp.com>
37474 Date:   Fri Nov 19 15:41:30 2010 +0800
37475
37476     altosui: Add igniter ground testing code
37477     
37478     Not yet hooked up, but the UI is finished.
37479     
37480     Signed-off-by: Keith Packard <keithp@keithp.com>
37481
37482 commit 90b9bc4475011bead7117ed72fa5efa0f77b2813
37483 Author: Anthony Towns <aj@erisian.com.au>
37484 Date:   Fri Nov 19 13:30:00 2010 +1000
37485
37486     AltosSiteMapTile: adjust scale to 1 nmi per tile
37487
37488 commit fa45336062523838ba8abb08427cdc4d9c7de7a8
37489 Author: Anthony Towns <aj@erisian.com.au>
37490 Date:   Fri Nov 19 13:17:29 2010 +1000
37491
37492     AltosSiteMapTile: adjust centering calculation
37493
37494 commit fda93afcd8aa4133b0e5f008b824d072e338d0ed
37495 Author: Anthony Towns <aj@erisian.com.au>
37496 Date:   Fri Nov 19 13:02:05 2010 +1000
37497
37498     AltosSiteMapTile: autoscale to about 2 nmi per tile
37499
37500 commit 483346a03c94b200692f5e6d59f3feee4dcf2ace
37501 Author: Anthony Towns <aj@erisian.com.au>
37502 Date:   Fri Nov 19 12:09:46 2010 +1000
37503
37504     altosui: tile site maps
37505
37506 commit 939be6793238a275b7682ecc376fed14379cf044
37507 Merge: e68fe94 1a4b6e9
37508 Author: Anthony Towns <aj@erisian.com.au>
37509 Date:   Thu Nov 18 05:54:06 2010 +1000
37510
37511     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37512     
37513     Conflicts:
37514         ao-tools/altosui/AltosFlightUI.java
37515
37516 commit 1a4b6e96f823035b113f01d1bdfd61afc1f33e25
37517 Author: Keith Packard <keithp@keithp.com>
37518 Date:   Tue Nov 16 22:46:29 2010 +0800
37519
37520     altosui: Add igniter status to ascent and descent tabs
37521     
37522     Monitor igniters during all phases of the flight.
37523     
37524     Signed-off-by: Keith Packard <keithp@keithp.com>
37525
37526 commit d0eb41619544ead6d9dab3a8d024a12936c9cdd0
37527 Author: Keith Packard <keithp@keithp.com>
37528 Date:   Tue Nov 16 22:20:00 2010 +0800
37529
37530     altosui: Cleanup flight UI layout
37531     
37532     Use common constants for fonts and insets
37533     Shrink fonts so that the window is < 600 pixels tall.
37534     
37535     Signed-off-by: Keith Packard <keithp@keithp.com>
37536
37537 commit fcca333cda64be35f0c9fb0109eef1be3709dddd
37538 Author: Keith Packard <keithp@keithp.com>
37539 Date:   Tue Nov 16 21:49:59 2010 +0800
37540
37541     altosui: Add callsign configuration in AltosUI configuration dialog
37542     
37543     This callsign is used during packet communication.
37544     
37545     Signed-off-by: Keith Packard <keithp@keithp.com>
37546
37547 commit d1dbe3b69e6f95ef8ecd4cf959863b922ab47c66
37548 Author: Bdale Garbee <bdale@gag.com>
37549 Date:   Mon Nov 15 11:08:00 2010 -0700
37550
37551     add a paragraph about forcing TM back to idle mode if an accel cal goes badly
37552
37553 commit 39e371561469d8e5059638ffa4e7075f391de268
37554 Author: Keith Packard <keithp@keithp.com>
37555 Date:   Mon Nov 15 23:14:51 2010 +0800
37556
37557     altosui: add reboot button to telemetrum configuration UI
37558     
37559     This lets you reconfigure and reboot telemetrum, including over the
37560     radio link.
37561     
37562     Signed-off-by: Keith Packard <keithp@keithp.com>
37563
37564 commit 257e97137325f5dbbd6aa034f20fd6937b67df90
37565 Author: Keith Packard <keithp@keithp.com>
37566 Date:   Mon Nov 15 22:38:35 2010 +0800
37567
37568     altosui: eliminate menu bar, moving elements to buttons.
37569     
37570     This adds a new 'configure AltosUI' dialog to set the log directory
37571     and voice preferences.
37572     
37573     Signed-off-by: Keith Packard <keithp@keithp.com>
37574
37575 commit 524644d8d8ce3f8a5a914ecfc7e2a8d474d89095
37576 Author: Keith Packard <keithp@keithp.com>
37577 Date:   Mon Nov 15 22:04:44 2010 +0800
37578
37579     altosui: oops, missed a file in the previous commit
37580     
37581     AltosSerialInUseException.java just defines a new exception, thanks to
37582     java for making this live in a separate file.
37583     
37584     Signed-off-by: Keith Packard <keithp@keithp.com>
37585
37586 commit 511903704f7e1b22e88dd3e3cc35fd3c0583820e
37587 Author: Keith Packard <keithp@keithp.com>
37588 Date:   Sun Nov 14 03:26:57 2010 -0800
37589
37590     altosui: With --replay option, exit when replay window is closed
37591     
37592     Otherwise, the application hangs around forever.
37593     
37594     Signed-off-by: Keith Packard <keithp@keithp.com>
37595
37596 commit 11c95f687b1f68d35fa1a0af2c4e7982b8bb226a
37597 Author: Keith Packard <keithp@keithp.com>
37598 Date:   Sat Nov 13 17:09:51 2010 -0800
37599
37600     altosui: Replace flight status table with labels, fix resize.
37601     
37602     There's no reason to use a table for the flight status data,
37603     replace that with a selection of widgets instead.
37604     
37605     Also, set all of the grid bag constraints for the various flight
37606     status displays so that resize does something sensible.
37607     
37608     Adds a scrollbar to the table display so that it can shrink.
37609     
37610     Signed-off-by: Keith Packard <keithp@keithp.com>
37611
37612 commit dcfa56498d1b65a213b8aba9cbd6c4806532383c
37613 Author: Keith Packard <keithp@keithp.com>
37614 Date:   Sat Nov 13 16:07:04 2010 -0800
37615
37616     altosui: Open serial device at 'new' time. Prohibit duplicate opens.
37617     
37618     With the per-serial UI, there's never a reason to create a serial
37619     device without opening it right away. This eliminates the bug caused
37620     by not opening the serial device for telemetry reception.
37621     
37622     Serial devices can now be opened only once; this eliminates errors
37623     when trying to reflash or configure devices while receiving telemetry.
37624     
37625     Signed-off-by: Keith Packard <keithp@keithp.com>
37626
37627 commit 8463ffcaca6bcd31e645aba71c171f548dce96d8
37628 Author: Keith Packard <keithp@keithp.com>
37629 Date:   Sat Nov 13 15:19:14 2010 -0800
37630
37631     altosui: Eliminate unncessary import altosui lines
37632     
37633     Java appears to automatically import every module from the current
37634     package.
37635     
37636     Signed-off-by: Keith Packard <keithp@keithp.com>
37637
37638 commit 566c6486c8815ae241e0b116a93b1a0ff4783831
37639 Author: Bdale Garbee <bdale@gag.com>
37640 Date:   Sat Nov 13 12:19:12 2010 -0700
37641
37642     continuing to work on the docs
37643
37644 commit e68fe9454352087889c560d95797922493117acb
37645 Author: Anthony Towns <aj@erisian.com.au>
37646 Date:   Sun Nov 14 00:59:01 2010 +1000
37647
37648     AltosSiteMap: add targeting circles around landing site
37649
37650 commit 1e7e02987276847274493312202d22222c953149
37651 Author: Anthony Towns <aj@erisian.com.au>
37652 Date:   Sun Nov 14 00:57:45 2010 +1000
37653
37654     AltosTelemetryReader: actually open serial port
37655
37656 commit 9c32b93ef5fb43558fb0179ea1b047e35b7ed6e8
37657 Merge: 991541f a6f30fa
37658 Author: Anthony Towns <aj@erisian.com.au>
37659 Date:   Sun Nov 14 00:29:11 2010 +1000
37660
37661     Merge branch 'buttonbox' of git://git.gag.com/fw/altos into buttonbox
37662
37663 commit a6f30fae906bd87dff192c5fd4d10df283f99930
37664 Author: Keith Packard <keithp@keithp.com>
37665 Date:   Fri Nov 12 17:02:22 2010 -0800
37666
37667     altosui: Add RF calibration to TeleMetrum config dialog
37668     
37669     I think that's the last user-settable value.
37670     
37671     Signed-off-by: Keith Packard <keithp@keithp.com>
37672
37673 commit 1bdc6166f3bc5ce3f8e55acb1484923781412e21
37674 Merge: f111871 5c6a533
37675 Author: Bdale Garbee <bdale@gag.com>
37676 Date:   Fri Nov 12 17:32:43 2010 -0700
37677
37678     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
37679
37680 commit f1118717780a81f9257d2eed7828b66538deb8a8
37681 Author: Bdale Garbee <bdale@gag.com>
37682 Date:   Fri Nov 12 17:32:21 2010 -0700
37683
37684     fold in content from Keith's email on the re-flashing subject
37685
37686 commit 7def9dd0d0a4ce9cf7c65de573100e664f278717
37687 Author: Bdale Garbee <bdale@gag.com>
37688 Date:   Fri Nov 12 10:58:54 2010 -0700
37689
37690     first cut at instructions on how to re-flash TM and TD devices based on email
37691     reply to a user who asked
37692
37693 commit 991541f57f065f429c6ec425efd6ac731280b2c1
37694 Author: Anthony Towns <aj@erisian.com.au>
37695 Date:   Fri Nov 12 23:42:42 2010 +1000
37696
37697     better error behaviour if no map
37698
37699 commit 1bcfa22de7821984149db10cb79913efed36b41e
37700 Author: Anthony Towns <aj@erisian.com.au>
37701 Date:   Fri Nov 12 23:29:40 2010 +1000
37702
37703     pull up maps for arbitrary locations
37704
37705 commit beb6c881ec006241c7d2820c64e5381131d41180
37706 Author: Anthony Towns <aj@erisian.com.au>
37707 Date:   Fri Nov 12 03:24:26 2010 +1000
37708
37709     make infotable scrollable, revert its fontsize to 14
37710
37711 commit 0327c1da01a3f6ede01f05c1d775651a57fd0c68
37712 Author: Anthony Towns <aj@erisian.com.au>
37713 Date:   Fri Nov 12 02:08:58 2010 +1000
37714
37715     tabs -> spaces
37716
37717 commit 81e7b43ecad666e2e2310c7c94184f888bc86585
37718 Author: Anthony Towns <aj@erisian.com.au>
37719 Date:   Fri Nov 12 02:07:41 2010 +1000
37720
37721     add site map tab, at least for QRS launches
37722
37723 commit 5394548fa5c7bdbfcc01e8aa19e93e1cf6345e2a
37724 Merge: 891e629 75f7698
37725 Author: Keith Packard <keithp@keithp.com>
37726 Date:   Wed Nov 10 22:11:21 2010 -0800
37727
37728     Merge remote branch 'aj/buttonbox' into buttonbox
37729
37730 commit 75f7698b99a661ed17a91748a99699fa6761772a
37731 Author: Anthony Towns <aj@erisian.com.au>
37732 Date:   Thu Nov 11 16:06:32 2010 +1000
37733
37734     add compass bearing during descent
37735
37736 commit cc0a730de093c49be2a921101d27622b6f592e92
37737 Author: Anthony Towns <aj@erisian.com.au>
37738 Date:   Thu Nov 11 15:57:52 2010 +1000
37739
37740     add compass bearing to voice output
37741
37742 commit 317ec72a34906faad88c6924e634617b074e71db
37743 Author: Anthony Towns <aj@erisian.com.au>
37744 Date:   Thu Nov 11 15:52:01 2010 +1000
37745
37746     use grayled.png for off
37747
37748 commit 8503943e3613f8670b128012b12ff14fb54321d7
37749 Author: Anthony Towns <aj@erisian.com.au>
37750 Date:   Thu Nov 11 15:45:43 2010 +1000
37751
37752     reduce font size for FlightInfoTable
37753
37754 commit 3ffaa5d1c00b28be20fd4a26deb7bd41d953e92a
37755 Author: Anthony Towns <aj@erisian.com.au>
37756 Date:   Thu Nov 11 15:43:05 2010 +1000
37757
37758     read preferences for --replay
37759
37760 commit 1f3e091efdfb2fe6f06a066cac60f5d267b94856
37761 Author: Anthony Towns <aj@erisian.com.au>
37762 Date:   Thu Nov 11 15:40:37 2010 +1000
37763
37764     add --replay command line argument
37765
37766 commit b16b873723ee3e5097e6725c59ce191119439ad7
37767 Author: Anthony Towns <aj@erisian.com.au>
37768 Date:   Thu Nov 11 15:38:27 2010 +1000
37769
37770     use value_font for values
37771
37772 commit 891e629f6ba20654b614f3ca7211a0f1c92670cb
37773 Author: Keith Packard <keithp@keithp.com>
37774 Date:   Wed Nov 10 16:28:19 2010 -0800
37775
37776     altos: Use grey leds when unlit - easier to see
37777
37778 commit 5c6a5335a057be0219450b4b9889c647d8d4a012
37779 Author: Bob Finch <w9ya@qrparci.net>
37780 Date:   Mon Nov 1 14:36:41 2010 -0600
37781
37782     Updated PKGBUILD-git.altos
37783     
37784     Signed-off-by: Keith Packard <keithp@keithp.com>
37785
37786 commit b0d31910da592e2f67c47c8fc3e15ce8135d5094
37787 Author: Keith Packard <keithp@keithp.com>
37788 Date:   Tue Nov 9 23:34:32 2010 -0800
37789
37790     altosui: Add ascent, descent and landed tabs
37791     
37792     This completes the set of tabs for in-flight status information.
37793     
37794     Signed-off-by: Keith Packard <keithp@keithp.com>
37795
37796 commit 22d00785188a880700cd372528189a7a15278da9
37797 Author: Keith Packard <keithp@keithp.com>
37798 Date:   Tue Nov 9 14:40:58 2010 -0800
37799
37800     altosui: Add tab UI with 'pad' mode.
37801     
37802     This creates a multi-tab interface for flight monitoring
37803     and includes a special tab for 'pad' mode.
37804     
37805     Signed-off-by: Keith Packard <keithp@keithp.com>
37806
37807 commit eb77e806ded99532dc7eaa39c1893f075b028af6
37808 Author: Keith Packard <keithp@keithp.com>
37809 Date:   Tue Nov 9 10:21:34 2010 -0800
37810
37811     altosui: Create abstract interface for flight data display
37812     
37813     This allows the implementation of the flight data display to occur in
37814     the flight UI instead of the display thread.
37815     
37816     Signed-off-by: Keith Packard <keithp@keithp.com>
37817
37818 commit a0a92c605e238277c9881545a7226e53b5dbc295
37819 Author: Keith Packard <keithp@keithp.com>
37820 Date:   Mon Nov 8 22:17:26 2010 -0800
37821
37822     altosui: Fix more calls to AltosPreferences.channel()
37823     
37824     Oops. Two more.
37825     
37826     Signed-off-by: Keith Packard <keithp@keithp.com>
37827
37828 commit 94f4a50d6430cc8280cbdaa9f39d3cb858d0e077
37829 Author: Keith Packard <keithp@keithp.com>
37830 Date:   Mon Nov 8 22:10:46 2010 -0800
37831
37832     altosui: Fix channel setting at serial open time
37833     
37834     Was using the previous non-device-specific preferences API.
37835     
37836     Signed-off-by: Keith Packard <keithp@keithp.com>
37837
37838 commit 6b17d276271faa8a420a1c8f6be17faaa0c7043c
37839 Author: Keith Packard <keithp@keithp.com>
37840 Date:   Mon Nov 8 22:07:04 2010 -0800
37841
37842     altosui: Create buttons for main actions
37843     
37844     Signed-off-by: Keith Packard <keithp@keithp.com>
37845
37846 commit 16916be51d746b1e1057b3219e5bec8f8814259e
37847 Author: Keith Packard <keithp@keithp.com>
37848 Date:   Fri Nov 5 23:44:47 2010 -0700
37849
37850     altosui: Split out flight monitoring to separate window
37851     
37852     This creates a per-TD (or replay) window to contain the flight
37853     monitoring information, allowing multiple monitors.
37854     
37855     This also adds per-TD preferences for monitoring channel.
37856     
37857     Signed-off-by: Keith Packard <keithp@keithp.com>
37858
37859 commit ca931b1c484bd6b64617370e81b16e169fdae1c2
37860 Author: Bdale Garbee <bdale@gag.com>
37861 Date:   Wed Oct 6 17:47:44 2010 -0600
37862
37863     update changelogs for Debian build
37864
37865 commit 811ced628d586134224c1b501b40ce9eb435fc7c
37866 Author: Keith Packard <keithp@keithp.com>
37867 Date:   Wed Oct 6 16:42:27 2010 -0700
37868
37869     altosui: Separate out jfreechart and jcommon directories
37870     
37871     This allows these packages to be referenced separately
37872     
37873     Signed-off-by: Keith Packard <keithp@keithp.com>
37874
37875 commit c2c4d515ef9cc2cae8a8f2803e9498bb0794c4ed
37876 Author: Keith Packard <keithp@keithp.com>
37877 Date:   Wed Oct 6 16:25:49 2010 -0700
37878
37879     altosui: Remove ability to graph data in .csv files
37880     
37881     There's no reason to support these files when the raw .eeprom or
37882     .telem files which generate them should be used instead.
37883     
37884     Signed-off-by: Keith Packard <keithp@keithp.com>
37885
37886 commit d5caf6f2f4d9257e26aa4305b26c02d1b263fa24
37887 Author: Bdale Garbee <bdale@gag.com>
37888 Date:   Wed Oct 6 17:14:35 2010 -0600
37889
37890     remove the csv build dep, as that code will be abandoned
37891
37892 commit 43e23a60780191e3c6f61df44c5dd08cc8604c51
37893 Author: Bdale Garbee <bdale@gag.com>
37894 Date:   Wed Oct 6 16:27:57 2010 -0600
37895
37896     update changelogs for Debian build
37897
37898 commit 8103432bf7adfe6ee5bf3ee42e1672475e6edd5a
37899 Author: Bdale Garbee <bdale@gag.com>
37900 Date:   Wed Oct 6 16:26:33 2010 -0600
37901
37902     update changelogs for Debian build
37903
37904 commit 635066cd35fb24cacf8400a477ea4b4e3dd2c39c
37905 Author: Bdale Garbee <bdale@gag.com>
37906 Date:   Wed Oct 6 16:26:19 2010 -0600
37907
37908     update changelogs for Debian build
37909
37910 commit 4396aaaf34cda3751dcca0eceb05b4ffeb411cde
37911 Author: Bdale Garbee <bdale@gag.com>
37912 Date:   Wed Oct 6 16:25:22 2010 -0600
37913
37914     add build-dep on libcsv-java
37915
37916 commit 7475ab5804bf3fb12b1b755e850af90d5a15d3eb
37917 Author: Bdale Garbee <bdale@gag.com>
37918 Date:   Wed Oct 6 16:19:35 2010 -0600
37919
37920     update changelogs for Debian build
37921
37922 commit d8a2f4ceb1c70a6be976a78e2264c961de2f2277
37923 Author: Bdale Garbee <bdale@gag.com>
37924 Date:   Wed Oct 6 16:18:45 2010 -0600
37925
37926     add build dep on jfreechart lib
37927
37928 commit f0d1468ceae065f0cdae6f6ae3323dec5636f073
37929 Author: Keith Packard <keithp@keithp.com>
37930 Date:   Tue Sep 28 17:56:49 2010 -0700
37931
37932     altosui: Add KML file export.
37933     
37934     Command line has switches now, --kml and --csv
37935     Export save dialog has combo box to select kml or csv result.
37936     
37937     Signed-off-by: Keith Packard <keithp@keithp.com>
37938
37939 commit 5a119fd92532d53e552efe1f7c61e87181fcace0
37940 Merge: 28da340 82744c3
37941 Author: Keith Packard <keithp@keithp.com>
37942 Date:   Mon Sep 27 22:28:07 2010 -0700
37943
37944     Merge remote branch 'aj/master'
37945
37946 commit 82744c3497d37650b88dee80be7956c4bd1cffb2
37947 Author: Anthony Towns <aj@erisian.com.au>
37948 Date:   Tue Sep 28 15:27:07 2010 +1000
37949
37950     Add callsign/serial/flight to graph title
37951
37952 commit 28da3406426437604125d332e4cda90d459df487
37953 Author: Keith Packard <keithp@keithp.com>
37954 Date:   Mon Sep 27 22:26:56 2010 -0700
37955
37956     altosui: use Altos constants in graphing code
37957     
37958     The Altos class nicely defines constants for all of the flight states.
37959     
37960     Signed-off-by: Keith Packard <keithp@keithp.com>
37961
37962 commit ce7f59fbfb5a94a67a4ceced3cc371b4c6b6e5d1
37963 Author: Anthony Towns <aj@erisian.com.au>
37964 Date:   Tue Sep 28 14:45:01 2010 +1000
37965
37966     Hax0r graphing to support telem/eeprom files
37967
37968 commit e2b9f47a205348d38756c70e928a2a9183de6884
37969 Merge: 7ef3ad0 8032031
37970 Author: Anthony Towns <aj@erisian.com.au>
37971 Date:   Tue Sep 28 12:55:47 2010 +1000
37972
37973     Merge branch 'master' of git://git.gag.com/fw/altos
37974
37975 commit 803203197e51e71e9c77b3610047fd5bf9a56c56
37976 Author: Keith Packard <keithp@keithp.com>
37977 Date:   Mon Sep 27 18:52:30 2010 -0700
37978
37979     altosui: Deal with eeprom dates going backwards across wrap
37980     
37981     eeprom timestamps can go backwards as the GPS time stamps are
37982     recorded when the first GPS character is received, but not placed into
37983     the eeprom log until the last GPS packet is complete. If this happens
37984     at the same time the tick count is wrapping, then the tick count will
37985     wrap backwards across the 0 boundary causing time to jump forwards.
37986     
37987     Fix this by letting time go backwards across the tick boundary, which
37988     requires that we know when the first 'real' tick is read from the
37989     eeprom file.
37990     
37991     Signed-off-by: Keith Packard <keithp@keithp.com>
37992
37993 commit fe7eba2e4af36cf29d8dc2378ac6985be04f68c6
37994 Author: Keith Packard <keithp@keithp.com>
37995 Date:   Mon Sep 27 18:51:05 2010 -0700
37996
37997     altosui: .CSV output: add link quality, gps hdop and sat C/N0 numbers
37998     
37999     This makes the CSV files contain all of the available information.
38000     
38001     Signed-off-by: Keith Packard <keithp@keithp.com>
38002
38003 commit c89a34d1eb25155405b0036baeadc7bbfeade1c2
38004 Author: Keith Packard <keithp@keithp.com>
38005 Date:   Mon Sep 27 17:11:48 2010 -0700
38006
38007     altosui: Create iterables for log file scanning. Split out display threads
38008     
38009     Convert from log file reading paradigm to using iterators which is
38010     more idiomatic for java. Split more code out of AltosUI.java,
38011     including the display update threads for telemetry monitoring and
38012     logfile replay.x
38013     
38014     Signed-off-by: Keith Packard <keithp@keithp.com>
38015
38016 commit 7ef3ad0c9354c0484c25badc69334b59c7f355e2
38017 Merge: eb74866 e66919a
38018 Author: Anthony Towns <aj@erisian.com.au>
38019 Date:   Fri Sep 24 10:28:06 2010 +1000
38020
38021     Merge branch 'master' of git://git.gag.com/fw/altos
38022
38023 commit e66919aa46193bd8c7a1e86fb32a3367dae121f5
38024 Author: Keith Packard <keithp@keithp.com>
38025 Date:   Thu Sep 23 16:52:51 2010 -0700
38026
38027     altosui: Require 4 sats for 'good' GPS data
38028     
38029     Wait for 10 consecutive GPS reports with at least 4 sats before
38030     reporting "GPS ready" state.
38031     
38032     Signed-off-by: Keith Packard <keithp@keithp.com>
38033
38034 commit 34ca8c00f4be72c314baff4c96f1e2f010948454
38035 Author: Keith Packard <keithp@keithp.com>
38036 Date:   Mon Sep 20 06:30:49 2010 -0700
38037
38038     altosui: remove unused ReplayThread wrapper classes
38039     
38040     These aren't used now that the replay opener dialog knows how to build
38041     a reader from a filename.
38042     
38043     Signed-off-by: Keith Packard <keithp@keithp.com>
38044
38045 commit fd010661ced6075f82a961625826665a3d8d1efe
38046 Author: Keith Packard <keithp@keithp.com>
38047 Date:   Mon Aug 30 14:00:04 2010 -0700
38048
38049     altosui: Factor some UI elements into separate classes
38050     
38051     Clean up AltosUI by moving the two main tables to separate class files.
38052     
38053     Signed-off-by: Keith Packard <keithp@keithp.com>
38054
38055 commit eb74866e919e8c661153847871f5a79e66d37296
38056 Merge: af404b4 1260589
38057 Author: Anthony Towns <aj@erisian.com.au>
38058 Date:   Mon Sep 20 22:05:26 2010 +1000
38059
38060     Merge branch 'master' of git://git.gag.com/fw/altos
38061
38062 commit 1260589976c1a95848b298497fd251c4ee7d3f93
38063 Author: Keith Packard <keithp@keithp.com>
38064 Date:   Sun Sep 19 02:52:29 2010 -0700
38065
38066     altosui: Write raw sensor data to .csv files
38067     
38068     For data export, provide the raw sensor samples instead of the
38069     filtered values.
38070     
38071     Signed-off-by: Keith Packard <keithp@keithp.com>
38072
38073 commit 7a4d7110debb88f4e906fee7c46f2badd561809d
38074 Author: Keith Packard <keithp@keithp.com>
38075 Date:   Sun Sep 19 02:50:43 2010 -0700
38076
38077     altosui: Use recorded ground acceleration when reading eeprom files
38078     
38079     The flight software records 1000 accelerometer samples and records
38080     that in the flight log. Use that value instead of using the very few
38081     samples recorded in the eeprom before boost is detected. This
38082     generates far more accurate accerometer data in the .csv files.
38083     
38084     Signed-off-by: Keith Packard <keithp@keithp.com>
38085
38086 commit af404b428bd742039afc25ff3850f76bc92c7c29
38087 Author: Anthony Towns <aj@erisian.com.au>
38088 Date:   Wed Sep 15 07:24:04 2010 +1000
38089
38090     Add JFreeChart to Makefile.am
38091
38092 commit 61590b8729831cb138b2ba6b88802c208d114753
38093 Author: Anthony Towns <aj@erisian.com.au>
38094 Date:   Wed Sep 15 06:51:05 2010 +1000
38095
38096     Add graphing.
38097
38098 commit 3d64f5a6511529ca53699190f4d54de1ba62a9bd
38099 Merge: ec6da08 b9623f8
38100 Author: Anthony Towns <aj@erisian.com.au>
38101 Date:   Sat Sep 11 15:15:14 2010 +1000
38102
38103     Merge branch 'master' of git://git.gag.com/fw/altos
38104
38105 commit b9623f8ef26491e9fa14e2478295fe6f5cbbd87f
38106 Author: Keith Packard <keithp@keithp.com>
38107 Date:   Fri Sep 10 21:07:14 2010 -0700
38108
38109     altosui: Remember directory containing firmware files
38110     
38111     Instead of forcing the user to navigate to the firmware directory each
38112     time, this remembers the previous directory and starts there.
38113     
38114     Signed-off-by: Keith Packard <keithp@keithp.com>
38115
38116 commit 7f2204e0832b14b1edca4266a2cbc272141ecc2b
38117 Author: Keith Packard <keithp@keithp.com>
38118 Date:   Fri Sep 10 20:55:05 2010 -0700
38119
38120     altosui: set default .csv file name in file save dialog
38121     
38122     This uses setSelectedFile to specify which output filename to make the
38123     default in the save dialog.
38124     
38125     Signed-off-by: Keith Packard <keithp@keithp.com>
38126
38127 commit 7e053ae1f2d09347123ac9fa79e46645378b4c70
38128 Author: Bdale Garbee <bdale@gag.com>
38129 Date:   Fri Sep 10 10:42:35 2010 -0600
38130
38131     make the column headers comma separated, too, so they align with the data
38132
38133 commit ec6da0824474e46de842845d7b53fe1a1dde33ed
38134 Merge: 7c2e411 1031067
38135 Author: Anthony Towns <aj@erisian.com.au>
38136 Date:   Fri Sep 10 16:11:34 2010 +1000
38137
38138     Merge branch 'master' of git://git.gag.com/fw/altos
38139
38140 commit 10310672a83a66dc630718b151d653fc066f8e59
38141 Author: Bdale Garbee <bdale@gag.com>
38142 Date:   Fri Sep 10 00:09:25 2010 -0600
38143
38144     update changelogs for Debian build
38145
38146 commit 9d0e89e8ad8926dc8371fa809835a580ae49711d
38147 Author: Keith Packard <keithp@keithp.com>
38148 Date:   Thu Sep 9 23:04:59 2010 -0700
38149
38150     altosui: Stop parsing eeprom file after hitting 'landed' state
38151     
38152     Sometimes there are additional records found in the eeprom file; the
38153     reader is mostly worried about not losing anything, so it reads as
38154     much as it can. However, the last record written for any flight is the
38155     'landed' record, so we can stop looking at the file after hitting that.
38156     
38157     Signed-off-by: Keith Packard <keithp@keithp.com>
38158
38159 commit 67b6952f7126704478ede5575e5e938d18fcc329
38160 Author: Keith Packard <keithp@keithp.com>
38161 Date:   Thu Sep 9 23:04:14 2010 -0700
38162
38163     altosui: Fill in time value of last Eeprom record read from file
38164     
38165     The last record is handled separately, and was missing the code to
38166     compute the time. Sigh.
38167     
38168     Signed-off-by: Keith Packard <keithp@keithp.com>
38169
38170 commit 8b0b584cd0ca7542e65aac0c7897ad7ab4115122
38171 Author: Keith Packard <keithp@keithp.com>
38172 Date:   Thu Sep 9 22:55:47 2010 -0700
38173
38174     altosui: Remove debug printfs from AltosTelemetryReader
38175     
38176     Signed-off-by: Keith Packard <keithp@keithp.com>
38177
38178 commit a80bfae15f1499c49f7ef47978bf0337d8120892
38179 Author: Bdale Garbee <bdale@gag.com>
38180 Date:   Thu Sep 9 23:57:34 2010 -0600
38181
38182     rewind packaging changelog, again
38183
38184 commit 78ce3120e5a53858ca0d43c734aa5d28b4948ce3
38185 Author: Bdale Garbee <bdale@gag.com>
38186 Date:   Thu Sep 9 23:52:20 2010 -0600
38187
38188     update changelogs for Debian build
38189
38190 commit 71c85613a28c24c3aad7b4aa3299d8677ef1268e
38191 Author: Bdale Garbee <bdale@gag.com>
38192 Date:   Thu Sep 9 23:51:23 2010 -0600
38193
38194     rewind packaging changelog
38195
38196 commit 7c2e4114a3a43f919a7a6c967d3f16e5d630f90f
38197 Merge: ddc83b4 af200f5
38198 Author: Anthony Towns <aj@erisian.com.au>
38199 Date:   Fri Sep 10 15:50:01 2010 +1000
38200
38201     Merge branch 'master' of git://git.gag.com/fw/altos
38202
38203 commit af200f5b84555de0556b52146379f3934774a3f3
38204 Author: Keith Packard <keithp@keithp.com>
38205 Date:   Thu Sep 9 22:30:48 2010 -0700
38206
38207     altosui: Fix telemetry file reader to handle tick count wrapping
38208     
38209     The telemetry reader was ignoring tick count wrapping, so you'd see
38210     time go backwards in jumps. Not useful.
38211     
38212     Signed-off-by: Keith Packard <keithp@keithp.com>
38213
38214 commit 96ca7051f60ea299e3e05bafbe5717fc83c3afd2
38215 Author: Bdale Garbee <bdale@gag.com>
38216 Date:   Thu Sep 9 22:50:03 2010 -0600
38217
38218     update changelogs for Debian build
38219
38220 commit 2d5e48c5dc0e822fdf430f43804c1e5e79fdbf84
38221 Author: Keith Packard <keithp@keithp.com>
38222 Date:   Thu Sep 9 21:28:10 2010 -0700
38223
38224     Add --with-fat-dir configure option to publish finished stand-alone bits
38225     
38226     --with-fat-dir specifies a directory to copy the finished
38227     linux/macosx/windows stand-alone ("fat") packages to. A sub-directory
38228     will be created under the specified directory based on the product
38229     version number and the files copied there.
38230     
38231     Signed-off-by: Keith Packard <keithp@keithp.com>
38232
38233 commit dd2b77b2a516a055f29191dcdfeb727e637aae86
38234 Author: Keith Packard <keithp@keithp.com>
38235 Date:   Thu Sep 9 20:59:29 2010 -0700
38236
38237     altosui: libaltos.so is built with libtool -- it's in ../libaltos/.libs
38238     
38239     It used to be in ../libaltos
38240     
38241     Signed-off-by: Keith Packard <keithp@keithp.com>
38242
38243 commit 72a5c1258db92d0ddd660bfa875e8e55cab47af7
38244 Author: Keith Packard <keithp@keithp.com>
38245 Date:   Thu Sep 9 20:39:41 2010 -0700
38246
38247     altosui: Remove some debug printfs.
38248     
38249     Signed-off-by: Keith Packard <keithp@keithp.com>
38250
38251 commit 031fd9a954f2e3447d0150eb4ecc81af7b620dca
38252 Author: Keith Packard <keithp@keithp.com>
38253 Date:   Thu Sep 9 20:36:12 2010 -0700
38254
38255     Add firmware and libaltos to 'fat' target at top-level
38256     
38257     This ensures that all of the necessary bits are available to construct
38258     the distribution images.
38259     
38260     Signed-off-by: Keith Packard <keithp@keithp.com>
38261
38262 commit fcaa480b1dfeb2fd4044f9c4e1b6d50c46fc9984
38263 Author: Bdale Garbee <bdale@gag.com>
38264 Date:   Thu Sep 9 21:29:20 2010 -0600
38265
38266     update changelogs for Debian build
38267
38268 commit 48f57997452e17564e28fe3e37403f6f63d32dea
38269 Author: Keith Packard <keithp@keithp.com>
38270 Date:   Thu Sep 9 20:24:42 2010 -0700
38271
38272     altosui: conflating USB product and vendor IDs is a bad idea
38273     
38274     We've now got a USB vendor ID called 'altusmetrum' for generic
38275     altusmetrum devices (old USB ID 0x000A) while the general vendor name
38276     for all devices is 'altusmetrum' as well.
38277     
38278     This patch splits vendors and products into separate name spaces,
38279     products are prefixed with product_ and vendor with (oddly) vendor_.
38280     
38281     Signed-off-by: Keith Packard <keithp@keithp.com>
38282
38283 commit 632d276118ab04de67561104be650f8fb69a0450
38284 Author: Bdale Garbee <bdale@gag.com>
38285 Date:   Thu Sep 9 20:34:43 2010 -0600
38286
38287     update changelogs for Debian build
38288
38289 commit 1ac3d7e3ba52d1b0dc834eaa5d7886c730eaf307
38290 Author: Bdale Garbee <bdale@gag.com>
38291 Date:   Thu Sep 9 20:34:22 2010 -0600
38292
38293     initial cut at an altosui man page
38294
38295 commit 5c4e437975054d33604402591e1ea2f314932593
38296 Author: Bdale Garbee <bdale@gag.com>
38297 Date:   Thu Sep 9 20:06:09 2010 -0600
38298
38299     update changelogs for Debian build
38300
38301 commit 0ea75761416bff299233991e961ba25b6c7dcf89
38302 Merge: 35d70c9 8ee3464
38303 Author: Bdale Garbee <bdale@gag.com>
38304 Date:   Thu Sep 9 20:05:27 2010 -0600
38305
38306     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
38307
38308 commit 8ee3464d8064ebe1694c7b20177878c0d9961451
38309 Author: Keith Packard <keithp@keithp.com>
38310 Date:   Thu Sep 9 17:54:41 2010 -0700
38311
38312     altosui: Display error dialog when AltOS JNI library can't be loaded
38313     
38314     Having an error dialog appear at application startup seems better than
38315     simply failing to present the device dialog later on.
38316     
38317     Signed-off-by: Keith Packard <keithp@keithp.com>
38318
38319 commit 4224a7526e51eb8fbf1f0a31bae7ee68c6385095
38320 Author: Keith Packard <keithp@keithp.com>
38321 Date:   Thu Sep 9 17:52:46 2010 -0700
38322
38323     altosui: Store libaltos.so in $(libdir)/altos
38324     
38325     It's not a public library, so hide it away in a subdirectory.
38326     
38327     Signed-off-by: Keith Packard <keithp@keithp.com>
38328
38329 commit 1e4c18777d982061f5e507a4d4f4f1cd4d685268
38330 Author: Keith Packard <keithp@keithp.com>
38331 Date:   Thu Sep 9 17:49:37 2010 -0700
38332
38333     altosui: Need to have JVM include path substituted into libaltos Makefile
38334     
38335     The libaltos Makefile needs to find the relevant jni.h file, which is
38336     found in the JVM_INCLUDE path, all nicely located by the configure.ac script.
38337     
38338     Signed-off-by: Keith Packard <keithp@keithp.com>
38339
38340 commit 35d70c92307dd478bc619b2f6c5a88e155cdad28
38341 Author: Bdale Garbee <bdale@gag.com>
38342 Date:   Thu Sep 9 17:27:07 2010 -0600
38343
38344     handle versioning of ihx files (poorly) by just wildcarding the file name,
38345     which assumes there's only one matching .. probably ok on Debian?
38346
38347 commit c286ada6457579d64e9d8ca44b927258b4a561da
38348 Author: Bdale Garbee <bdale@gag.com>
38349 Date:   Thu Sep 9 16:27:40 2010 -0600
38350
38351     update changelogs for Debian build
38352
38353 commit 6c0ae7e966a81ece35bccbe89d626a58afe899a2
38354 Author: Keith Packard <keithp@keithp.com>
38355 Date:   Thu Sep 9 15:25:18 2010 -0700
38356
38357     altosui: remove FATJAR from all-local to avoid building fat .jar file
38358     
38359     the fat .jar file is used in non-native builds to run from a directory
38360     containing all of the freetts jar files along with the altosui jar
38361     file. We don't want this on a real install where freetts is installed separately.
38362     
38363     Signed-off-by: Keith Packard <keithp@keithp.com>
38364
38365 commit 737a64c57a8f979f51c3fa6b3f214520c736cf8a
38366 Author: Keith Packard <keithp@keithp.com>
38367 Date:   Thu Sep 9 15:22:14 2010 -0700
38368
38369     altosui: hack to make JAVAROOT directory get created before javac runs
38370     
38371     This ensures that the JAVAROOT directory gets created by adding it to
38372     the variable used to set the CLASSPATH environment value.
38373     
38374     Signed-off-by: Keith Packard <keithp@keithp.com>
38375
38376 commit b456bd9d7bcd9d968e43c38eeb6fa6ad8c58f895
38377 Author: Keith Packard <keithp@keithp.com>
38378 Date:   Thu Sep 9 15:11:41 2010 -0700
38379
38380     altosui: fix telemetrum.inf FFFE:000A product names on AMD64 and ia64
38381     
38382     This appears to matter to Vista. Dunno why.
38383     
38384     Signed-off-by: Keith Packard <keithp@keithp.com>
38385
38386 commit 16980b848651a6b20a0b458446f0a19fb517539d
38387 Author: Keith Packard <keithp@keithp.com>
38388 Date:   Thu Sep 9 15:10:25 2010 -0700
38389
38390     altosui: Add explicit requirement to create classes directory
38391     
38392     The implicit ordering doesn't appear reliable.
38393     
38394     Signed-off-by: Keith Packard <keithp@keithp.com>
38395
38396 commit 15da683c2f747baef49c8b8d321a86faede0de30
38397 Author: Bdale Garbee <bdale@gag.com>
38398 Date:   Thu Sep 9 15:51:50 2010 -0600
38399
38400     update changelogs for Debian build
38401
38402 commit 012e7176954a6b74b3b667317be0f6dc41d7ab70
38403 Author: Bdale Garbee <bdale@gag.com>
38404 Date:   Thu Sep 9 15:51:02 2010 -0600
38405
38406     add libtool to build deps
38407
38408 commit 3e5824b9a71971ce99bfe38a1e860b421e265f02
38409 Author: Bdale Garbee <bdale@gag.com>
38410 Date:   Thu Sep 9 15:43:47 2010 -0600
38411
38412     update changelogs for Debian build
38413
38414 commit ddc83b4c401be965a9947782becf20cc8c54e6a2
38415 Merge: afea6c2 3d49d5f
38416 Author: Anthony Towns <aj@erisian.com.au>
38417 Date:   Sun Sep 5 20:49:34 2010 +1000
38418
38419     Merge branch 'master' of git://git.gag.com/fw/altos
38420
38421 commit 3d49d5f69b41c27003dbc5ccf1899014bd13bd99
38422 Author: Keith Packard <keithp@keithp.com>
38423 Date:   Sun Sep 5 02:05:06 2010 -0700
38424
38425     altosui: ensure that 'altosui' script is installed. Pass arguments along.
38426     
38427     Signed-off-by: Keith Packard <keithp@keithp.com>
38428
38429 commit b61fec225ada6a9e252e4c7920101ee18c77cbdc
38430 Author: Keith Packard <keithp@keithp.com>
38431 Date:   Sun Sep 5 01:55:56 2010 -0700
38432
38433     altosui: eeprom files place 'boost' time in the flight number record.
38434     
38435     Instead of looking for the first state change record, use the Flight
38436     record to get the boost tick.
38437     
38438     Signed-off-by: Keith Packard <keithp@keithp.com>
38439
38440 commit 6c653a4cba5fef8d49261cf1c024f3e86e9058c6
38441 Author: Keith Packard <keithp@keithp.com>
38442 Date:   Sun Sep 5 01:52:36 2010 -0700
38443
38444     altosui: Record flight number when scanning file, not when running
38445     
38446     The very first record in the eeprom is the flight number, but it is
38447     time-stamped with the 'boost' time, and so it gets sorted until much
38448     later, delaying the return of data until the rocket enters boost
38449     mode. This drops all of the nice pad GPS and state date on the floor.
38450     
38451     Signed-off-by: Keith Packard <keithp@keithp.com>
38452
38453 commit 38e1d87c8d449866faac026577fefa9a118428cb
38454 Author: Keith Packard <keithp@keithp.com>
38455 Date:   Sun Sep 5 01:23:53 2010 -0700
38456
38457     altosui: Use local .class files in the classpath
38458     
38459     This ensures that compiling only a few changed files will
38460     locate the old .class files instead of using a stale .jar file.
38461
38462 commit 9941b05a1d03dafd6cd899b5fe999ed769efb1d6
38463 Author: Keith Packard <keithp@keithp.com>
38464 Date:   Sun Sep 5 01:21:14 2010 -0700
38465
38466     altosui: Prevent voice altitude data from queueing up
38467     
38468     When flight status changes rapidly, the queue of voice data can get
38469     quite long. This change does two things -- first, it remembers when
38470     the altitude reporting happens due to flight events and delays the
38471     periodic reporting until a suitable time after that, second it ensures
38472     that the voice data has all been delivered before generating a new
38473     altitude report.
38474     
38475     Signed-off-by: Keith Packard <keithp@keithp.com>
38476
38477 commit 4dec5c36702d76dc95beada7c1d3222a638a2cbb
38478 Author: Keith Packard <keithp@keithp.com>
38479 Date:   Sun Sep 5 01:19:11 2010 -0700
38480
38481     altosui: Add AltosVoice.drain() to wait for queued speech to finish
38482     
38483     drain() blocks until all pending phrases have been processed, allowing
38484     the UI code to avoid pending data that will end up stale by the time
38485     it is emitted.
38486     
38487     Signed-off-by: Keith Packard <keithp@keithp.com>
38488
38489 commit 410ba89eef9c9817eef81b702966cb88820ff7c4
38490 Author: Keith Packard <keithp@keithp.com>
38491 Date:   Sun Sep 5 01:13:01 2010 -0700
38492
38493     altosui: Start idle thread after the rocket leaves the pad
38494     
38495     This makes the first altitude report time consistently 10 seconds
38496     after launch, instead of some random time depending on when the rocket
38497     launched relative to the time the device connection was made.
38498     
38499     Signed-off-by: Keith Packard <keithp@keithp.com>
38500
38501 commit 6205547ec7191aab0259a8449520e966a96129e6
38502 Author: Keith Packard <keithp@keithp.com>
38503 Date:   Sun Sep 5 01:08:50 2010 -0700
38504
38505     altosui: When replay thread is interrupted, don't make final report
38506     
38507     Normally, the replay process makes one final report after the file has
38508     been parsed. However, if the reading process is interrupted to display
38509     something else, this report is just annoying, so don't make it.
38510     
38511     Signed-off-by: Keith Packard <keithp@keithp.com>
38512
38513 commit 3d99584fcfe43b22e8581874e0ac77ce3d635d48
38514 Author: Keith Packard <keithp@keithp.com>
38515 Date:   Sun Sep 5 01:03:18 2010 -0700
38516
38517     altosui: Add elevation and range data to main display
38518     
38519     Reported by voice, it's useful to see these on the display as well.
38520     
38521     Signed-off-by: Keith Packard <keithp@keithp.com>
38522
38523 commit 2d58f319a7c1a6a8ccc6a539722009996ba886ab
38524 Author: Keith Packard <keithp@keithp.com>
38525 Date:   Sun Sep 5 01:01:10 2010 -0700
38526
38527     altosui: Eeprom files contain only one date; save it.
38528     
38529     While reading eeprom files, the GPS record is reconstructed each time
38530     the system sees the first GPS log item (the time field), but as the
38531     date isn't repeated, we need to copy it from the old GPS data record.
38532     
38533     Signed-off-by: Keith Packard <keithp@keithp.com>
38534
38535 commit b2aa689bf3d61e4a3ebe7c828162d1be20aad0f6
38536 Author: Keith Packard <keithp@keithp.com>
38537 Date:   Sun Sep 5 00:59:54 2010 -0700
38538
38539     altosui: Remove debugging printf from AltosEepromReader
38540     
38541     These were in place while validing the GPS data reconstruction code
38542     that handles eeprom files missing the first GPS date line due to the
38543     record overwriting bug in old firmware versions.
38544     
38545     Signed-off-by: Keith Packard <keithp@keithp.com>
38546
38547 commit eb0e7a59f0806734a4c959a3ce7c57f71cbe3986
38548 Author: Keith Packard <keithp@keithp.com>
38549 Date:   Sun Sep 5 00:57:38 2010 -0700
38550
38551     altosui: Return AO_LOG_INVALID instead of exception for eeprom files
38552     
38553     When an eeprom file contains an invalid line, just return
38554     AO_LOG_INVALID instead of throwing an exception. This allows us to
38555     replay and parse files with extraneous serial communication.
38556     
38557     Signed-off-by: Keith Packard <keithp@keithp.com>
38558
38559 commit c3a17c71a45207dd715d537704f161de9219f0d7
38560 Author: Keith Packard <keithp@keithp.com>
38561 Date:   Sat Sep 4 18:49:22 2010 -0700
38562
38563     altosui: Fix linux fat distribution
38564     
38565     Again, use 'cp -p' instead of 'cp -a' to get files into the archive
38566     instead of links. Also, make the shell script 'altosui' instead of
38567     'altosui-fat'.
38568     
38569     Signed-off-by: Keith Packard <keithp@keithp.com>
38570
38571 commit 828e9e4c68e3ac90b6ba2e9fd5f131a9975f7e4a
38572 Author: Keith Packard <keithp@keithp.com>
38573 Date:   Sat Sep 4 18:39:58 2010 -0700
38574
38575     altosui: Fix up Mac OSX .zip file
38576     
38577     Must contain 'altosui.jar' instead of altosui-fat.jar.
38578     Also, was using 'cp -a' instead of 'cp -p' which made files
38579     represented by symlinks not end up in the archive.
38580     
38581     Signed-off-by: Keith Packard <keithp@keithp.com>
38582
38583 commit 044fd27449c70474f51b99dec25fd23d3c03a559
38584 Author: Keith Packard <keithp@keithp.com>
38585 Date:   Sat Sep 4 18:20:45 2010 -0700
38586
38587     altosui: Fix windows installer to ship correct files
38588     
38589     Was shipping altosui.jar instead of altosui-fat.jar
38590     
38591     Signed-off-by: Keith Packard <keithp@keithp.com>
38592
38593 commit 148b927c3b8bc7b7b5c5356392032faf2b1203d3
38594 Author: Keith Packard <keithp@keithp.com>
38595 Date:   Sat Sep 4 18:04:04 2010 -0700
38596
38597     Add top-level 'fat' target to aid building distribution files
38598     
38599     Signed-off-by: Keith Packard <keithp@keithp.com>
38600
38601 commit aed59e1c057c13e28fd368dc2592aa4628211097
38602 Author: Keith Packard <keithp@keithp.com>
38603 Date:   Sat Sep 4 17:59:11 2010 -0700
38604
38605     Add version numbers to released files. Set version to 0.7.1
38606     
38607     Instead of using git revision counts for version numbers, use explicit
38608     versions numbers configured in the configure.ac file. Expose published
38609     files with version numbers.
38610     
38611     Signed-off-by: Keith Packard <keithp@keithp.com>
38612
38613 commit 2808bba3efa1cff133cc060dabff06fab8b75388
38614 Author: Keith Packard <keithp@keithp.com>
38615 Date:   Sat Sep 4 17:58:52 2010 -0700
38616
38617     Ignore libtool files.
38618
38619 commit bc183400ab93d5902c52851319999cc77f27bc81
38620 Author: Keith Packard <keithp@keithp.com>
38621 Date:   Sat Sep 4 17:35:17 2010 -0700
38622
38623     altos: add some SDCDB config files
38624
38625 commit 887b11f6b9c81b9f15348d54017e700ca7dc5e55
38626 Author: Keith Packard <keithp@keithp.com>
38627 Date:   Sat Sep 4 17:27:17 2010 -0700
38628
38629     Use autotools for altosui and libaltos
38630     
38631     This switches from hand-written Makefiles to automake with libtool
38632     for these parts of the system.
38633     
38634     Signed-off-by: Keith Packard <keithp@keithp.com>
38635
38636 commit e844e8a0695e27af6f8e3e37a5e3bcc865b862e3
38637 Author: Keith Packard <keithp@keithp.com>
38638 Date:   Sat Sep 4 01:13:42 2010 -0700
38639
38640     altosui: Add icons to application and Windows menus.
38641     
38642     Use the altus-metrum icon for an application icon and a windows start
38643     menu/desktop icon.
38644     
38645     Signed-off-by: Keith Packard <keithp@keithp.com>
38646
38647 commit e9ea28504c646fc25791aab09b9e5faf73e0ac0c
38648 Author: Keith Packard <keithp@keithp.com>
38649 Date:   Sat Sep 4 01:08:34 2010 -0700
38650
38651     icon: add some icons for application programs
38652     
38653     altus-metrum.ico: Windows ICO file
38654     altus-metrum-16x16.jpg: 16x16 jpg image for java
38655     
38656     Signed-off-by: Keith Packard <keithp@keithp.com>
38657
38658 commit f550677df016070430ed38bfa2b2be33f1b8c40a
38659 Author: Keith Packard <keithp@keithp.com>
38660 Date:   Sat Sep 4 00:16:41 2010 -0700
38661
38662     altosui: oops. renamed the nsis file to altos-windows.nsi
38663     
38664     And forgot to change the dependency in the Makefile
38665     
38666     Signed-off-by: Keith Packard <keithp@keithp.com>
38667
38668 commit c0988ddbf104ea729090c2e7e2a28cc6dc9e90f6
38669 Author: Keith Packard <keithp@keithp.com>
38670 Date:   Sat Sep 4 00:14:15 2010 -0700
38671
38672     altosui: ignore built files
38673
38674 commit ecb4a09535b6a8da0765010489a96e605dbdeb46
38675 Author: Keith Packard <keithp@keithp.com>
38676 Date:   Sat Sep 4 00:13:11 2010 -0700
38677
38678     altosui: Add windows installer build using 'nsis'
38679     
38680     nsis happens to be packaged in debian, and it appears to build usable
38681     installers, which is all very cool.
38682     
38683     Signed-off-by: Keith Packard <keithp@keithp.com>
38684
38685 commit bf22923cd8b4f6f954718358b411b5b10d8e7b4d
38686 Author: Bdale Garbee <bdale@gag.com>
38687 Date:   Sat Sep 4 00:46:29 2010 -0400
38688
38689     update changelogs for Debian build
38690
38691 commit 59798c6fd11502a9c8b66090c23ba50eb250692e
38692 Author: Keith Packard <keithp@keithp.com>
38693 Date:   Fri Sep 3 12:43:45 2010 -0700
38694
38695     altosui: Catch I/O errors on telemetry device, report to user
38696     
38697     This catches the USB device being unplugged and makes sure the
38698     user sees an error dialog in this case.
38699     
38700     Signed-off-by: Keith Packard <keithp@keithp.com>
38701
38702 commit 16d8d6a8853d09f683b13f9cda3c3174a0aab130
38703 Author: Keith Packard <keithp@keithp.com>
38704 Date:   Fri Sep 3 12:31:05 2010 -0700
38705
38706     altosui: Must flush serial line after configuring for telemetry
38707     
38708     Without flushing the configuration commands to the serial device, it
38709     never sees them as the telemetry input thread doesn't flush.
38710     
38711     Signed-off-by: Keith Packard <keithp@keithp.com>
38712
38713 commit d4f64e95e31e2335470efc15df2ab357b7d197f3
38714 Author: Keith Packard <keithp@keithp.com>
38715 Date:   Fri Sep 3 11:48:55 2010 -0700
38716
38717     Revert "altosui: Deal with altos bug setting radio channel while monitoring"
38718     
38719     This reverts commit ba65e4aeb952a1cf49a77f1e24e235508fcea71f.
38720     
38721     Testing the old code
38722
38723 commit 71191ecef3ba0e00d0f8a7cd1a24982bfa44ec72
38724 Author: Keith Packard <keithp@keithp.com>
38725 Date:   Fri Sep 3 01:30:33 2010 -0700
38726
38727     altosui: Allow 'connect to device' when already connected
38728     
38729     Opening another serial device involves shutting down the display
38730     thread (to reset its state) and spawning another one. Shutting down
38731     the display thread normally closes the serial device as a part of the
38732     process, and if this isn't done before the new serial device is
38733     opened, then the new serial device ends up getting closed too.
38734     
38735     Interrupting the display thread and waiting for it to stop before
38736     opening the new serial device solves the problem.
38737     
38738     Signed-off-by: Keith Packard <keithp@keithp.com>
38739
38740 commit ba65e4aeb952a1cf49a77f1e24e235508fcea71f
38741 Author: Keith Packard <keithp@keithp.com>
38742 Date:   Fri Sep 3 01:21:57 2010 -0700
38743
38744     altosui: Deal with altos bug setting radio channel while monitoring
38745     
38746     If the monitoring thread is active, then setting the radio channel can
38747     sometimes cause the monitoring thread to get stuck. I'm not entirely
38748     sure why though. For now, work around the issue by making sure
38749     monitoring is off, and the monitoring thread has stopped, before
38750     changing the radio channel.
38751     
38752     Signed-off-by: Keith Packard <keithp@keithp.com>
38753
38754 commit e5ef42c2b22c6639d90631dbbb588f9fd2494385
38755 Author: Keith Packard <keithp@keithp.com>
38756 Date:   Fri Sep 3 01:12:24 2010 -0700
38757
38758     altosui: Report telemetry CRC errors in UI
38759     
38760     Telemetry CRC errors can signal problems with TeleMetrum or TeleDongle
38761     units, so report them in the UI.
38762     
38763     Signed-off-by: Keith Packard <keithp@keithp.com>
38764
38765 commit 3b3aa448f3a0f44137f7530b04b58967ba5f22f5
38766 Author: Keith Packard <keithp@keithp.com>
38767 Date:   Thu Sep 2 21:11:29 2010 -0700
38768
38769     altosui: build Mac OS .zip file to include paths
38770     
38771     Without the paths, the OS X zip file doesn't create a usable
38772     application structure.
38773     
38774     Signed-off-by: Keith Packard <keithp@keithp.com>
38775
38776 commit cff0d1ef6b338b3d5ad9450d4d5f95df934cb5e4
38777 Author: Keith Packard <keithp@keithp.com>
38778 Date:   Wed Sep 1 22:56:34 2010 -0700
38779
38780     altosui: Post error dialog on invalid ROM config values.
38781     
38782     Signed-off-by: Keith Packard <keithp@keithp.com>
38783
38784 commit 8d8980f56a4f2c7d6f2ce667130706e0f04f8ded
38785 Author: Keith Packard <keithp@keithp.com>
38786 Date:   Wed Sep 1 22:56:12 2010 -0700
38787
38788     altosui: Remove some debug printfs from AltosRomconfig class
38789     
38790     Signed-off-by: Keith Packard <keithp@keithp.com>
38791
38792 commit 5ee6cd41ed189c3166f76558ecada80917f40652
38793 Author: Keith Packard <keithp@keithp.com>
38794 Date:   Wed Sep 1 22:47:15 2010 -0700
38795
38796     altosui: Hide internal rom config UI helper function
38797     
38798     This was getting mis-used by the flash UI causing the rom dialog
38799     'cancel' button to work just like 'ok'.
38800     
38801     Signed-off-by: Keith Packard <keithp@keithp.com>
38802
38803 commit 9a690c9795e8257d2a3225f905117681668a472f
38804 Author: Keith Packard <keithp@keithp.com>
38805 Date:   Wed Sep 1 22:46:04 2010 -0700
38806
38807     altosui: allow flashing to be canceled from the rom config dialog
38808     
38809     Was using the rom config class wrong, causing cancel actions to work
38810     just like 'ok' actions. Oops.
38811     
38812     Signed-off-by: Keith Packard <keithp@keithp.com>
38813
38814 commit 2f07ad14a16dbf1b75c71784ceae303825c90ade
38815 Author: Keith Packard <keithp@keithp.com>
38816 Date:   Wed Sep 1 22:43:22 2010 -0700
38817
38818     altosui: Abort flashing if debug port isn't working
38819     
38820     Check each command going over the debug port and make sure it works as
38821     expected. This commit adds checks for initializing the clock,
38822     selecting the desired program counter and running the flash
38823     program.
38824     
38825     Signed-off-by: Keith Packard <keithp@keithp.com>
38826
38827 commit cf30343aadd5039627a85319872685f743e64b16
38828 Author: Bdale Garbee <bdale@gag.com>
38829 Date:   Thu Sep 2 00:55:41 2010 -0400
38830
38831     update changelogs for Debian build
38832
38833 commit 59a40f6d5a2159b9009a3fa0737bb679efd5b32c
38834 Author: Bdale Garbee <bdale@gag.com>
38835 Date:   Thu Sep 2 00:55:01 2010 -0400
38836
38837     another distclean fix
38838
38839 commit 59ff9180f11063c257746b895a167179b3a4ff7c
38840 Author: Bdale Garbee <bdale@gag.com>
38841 Date:   Thu Sep 2 00:53:16 2010 -0400
38842
38843     and a few more distclean fixes
38844
38845 commit 3aafd70257b70b7c11ba9c55749157979bc61ea2
38846 Author: Bdale Garbee <bdale@gag.com>
38847 Date:   Thu Sep 2 00:52:04 2010 -0400
38848
38849     more makefile distclean target work
38850
38851 commit d5a6ad87c7a9ac03b2e694bed0a54b6cc4322a6f
38852 Author: Bdale Garbee <bdale@gag.com>
38853 Date:   Thu Sep 2 00:50:16 2010 -0400
38854
38855     update changelogs for Debian build
38856
38857 commit 14fa24ed93b3b1cec08a170004c6fb7f4d74f7e5
38858 Author: Bdale Garbee <bdale@gag.com>
38859 Date:   Thu Sep 2 00:48:31 2010 -0400
38860
38861     update changelogs for Debian build
38862
38863 commit 83552dfa0d38db9cdf3efc89e64e6c7896467856
38864 Author: Bdale Garbee <bdale@gag.com>
38865 Date:   Thu Sep 2 00:47:54 2010 -0400
38866
38867     add distclean targets to libaltos and altosui to all Debian package to build
38868
38869 commit 6f24d2a476759104a10b26b54faff2b18b0e208b
38870 Author: Bdale Garbee <bdale@gag.com>
38871 Date:   Thu Sep 2 00:46:21 2010 -0400
38872
38873     update changelogs for Debian build
38874
38875 commit d079bfe86ed40ff450ece445cf5f5e3970e44cec
38876 Author: Bdale Garbee <bdale@gag.com>
38877 Date:   Thu Sep 2 00:44:30 2010 -0400
38878
38879     update changelogs for Debian build
38880
38881 commit a470315e5d822a69ef5304512cf73c604c88e481
38882 Author: Keith Packard <keithp@keithp.com>
38883 Date:   Wed Sep 1 20:14:51 2010 -0700
38884
38885     altosui: Remove Manifest.txt from git repo as it's built now
38886     
38887     This file is built with appropriate contents for each different .jar file.
38888     
38889     Signed-off-by: Keith Packard <keithp@keithp.com>
38890
38891 commit 1177e0a684328422be5adc68093d0091a218a824
38892 Author: Keith Packard <keithp@keithp.com>
38893 Date:   Wed Sep 1 19:53:24 2010 -0700
38894
38895     altos: Bounds check Skytraq GPS tracking data array
38896     
38897     Missing GPS serial data could cause the tracking array reset to
38898     get skipped, causing the array to be overrun, smashing critical data
38899     beyond the array.
38900     
38901     This was detected using the 'altosui' flash command to program a
38902     device from TM. Hitting the USB that hard caused TM to crash with a
38903     mutex error (3 beeps) after the ao_gps_task structure was overwritten
38904     with zeros.
38905     
38906     Signed-off-by: Keith Packard <keithp@keithp.com>
38907
38908 commit 775acb89660cdee2f3c54c38297baefe39f2414c
38909 Author: Keith Packard <keithp@keithp.com>
38910 Date:   Mon Aug 30 22:24:09 2010 -0700
38911
38912     altosui: missed AltosReader.class in the Makefile
38913     
38914     This caused clean builds to fail to make this file
38915     
38916     Signed-off-by: Keith Packard <keithp@keithp.com>
38917
38918 commit bd2b9d958c2b7f846031b076ed51c4fbaaf2d68f
38919 Author: Bdale Garbee <bdale@gag.com>
38920 Date:   Tue Aug 31 00:20:06 2010 -0400
38921
38922     update changelogs for Debian build
38923
38924 commit d006c5e1255433181aca4c8e6a277b2d1bc0841b
38925 Author: Bdale Garbee <bdale@gag.com>
38926 Date:   Tue Aug 31 00:19:37 2010 -0400
38927
38928     add runtime dependencies for altos binary package
38929
38930 commit c1c7d731e3774883fa0bb5538be225a59334d124
38931 Author: Bdale Garbee <bdale@gag.com>
38932 Date:   Mon Aug 30 19:52:51 2010 -0600
38933
38934     update changelogs for Debian build
38935
38936 commit c35632efb1919764e4b8581ed6fcf2bedd4bd517
38937 Author: Bdale Garbee <bdale@gag.com>
38938 Date:   Mon Aug 30 19:37:50 2010 -0600
38939
38940     update changelogs for Debian build
38941
38942 commit 2a004d17a13b4ff52d892bfdecff8ad3d0823f7c
38943 Author: Bdale Garbee <bdale@gag.com>
38944 Date:   Mon Aug 30 19:37:17 2010 -0600
38945
38946     don't build all the "fat" jar deliverables by default
38947
38948 commit 507e429db6638f82c32449e9c5ca06b46da30134
38949 Author: Bdale Garbee <bdale@gag.com>
38950 Date:   Mon Aug 30 19:09:00 2010 -0600
38951
38952     update changelogs for Debian build
38953
38954 commit 25764fcd1b65c3a5a817afdb5901ac30e8a5f0c0
38955 Author: Bdale Garbee <bdale@gag.com>
38956 Date:   Mon Aug 30 19:08:29 2010 -0600
38957
38958     update changelogs for Debian build
38959
38960 commit 4790f78aead8a816e5b247c022b2998ce3a94053
38961 Author: Bdale Garbee <bdale@gag.com>
38962 Date:   Mon Aug 30 18:48:50 2010 -0600
38963
38964     add a .gitattributes file, configuring the Mac and Windows binary library
38965     files with the export-ignore attribute, in hopes that this will prevent
38966     them showing up in source packages
38967
38968 commit 81318e5b7179b0311ab099043ecb04a25d763750
38969 Author: Bdale Garbee <bdale@gag.com>
38970 Date:   Mon Aug 30 18:15:40 2010 -0600
38971
38972     make invocation of 'install' pathless to work on more Unix variants
38973
38974 commit cbc72399a0f4d7429df0189bcdae683dd491cb9e
38975 Author: Bdale Garbee <bdale@gag.com>
38976 Date:   Mon Aug 30 17:56:56 2010 -0600
38977
38978     continue even if rm's don't have anything to do
38979
38980 commit a9a8d23c877e6f6c76857b7c85e3d43b4da1db27
38981 Author: Keith Packard <keithp@keithp.com>
38982 Date:   Mon Aug 30 05:49:11 2010 -0700
38983
38984     altosui: Devices with USB id 0x000a always get listed
38985     
38986     List 'unknown' AltusMetrum devices anytime the UI needs a device
38987     name.
38988     
38989     Signed-off-by: Keith Packard <keithp@keithp.com>
38990
38991 commit a94900b8862b99b4e317ea0ee3edd2a560f270c7
38992 Author: Keith Packard <keithp@keithp.com>
38993 Date:   Mon Aug 30 05:48:23 2010 -0700
38994
38995     altosui: build debian-style altosui too
38996     
38997     This adds the dependencies to make sure altosui and altosui.jar get built.
38998     
38999     Signed-off-by: Keith Packard <keithp@keithp.com>
39000
39001 commit 38ac388baf8125c0644b868a7aaf8eba1bdf990d
39002 Author: Keith Packard <keithp@keithp.com>
39003 Date:   Mon Aug 30 05:28:37 2010 -0700
39004
39005     altosui: Build linux, mac and windows archives on Linux
39006     
39007     This adds 'fat' archives for each target OS.
39008     
39009     Signed-off-by: Keith Packard <keithp@keithp.com>
39010
39011 commit 35d9a8214252dbe79aeb69ae47d2e5c58a654702
39012 Author: Keith Packard <keithp@keithp.com>
39013 Date:   Mon Aug 30 05:27:45 2010 -0700
39014
39015     libaltos: Use overlapped I/O on windows
39016     
39017     Otherwise, reads block writes and vice-versa. Crazy stuff.
39018     
39019     Signed-off-by: Keith Packard <keithp@keithp.com>
39020
39021 commit c7ba92317ac55272acbde12416448ebd17b983a6
39022 Author: Keith Packard <keithp@keithp.com>
39023 Date:   Mon Aug 30 04:52:00 2010 -0700
39024
39025     altos: Windows sends USB Out packets of 0 length. Ack them.
39026     
39027     This was an untested case as no other operating system sents 0-length
39028     out packets (they're not necessary). The correct response is to ACK
39029     them by clearing the OUTPKT_RDY bit so that another packet can be sent.
39030     
39031     Signed-off-by: Keith Packard <keithp@keithp.com>
39032
39033 commit 20a472cfe3369200150ea4ff067ceb28968dbcac
39034 Author: Keith Packard <keithp@keithp.com>
39035 Date:   Mon Aug 30 02:58:23 2010 -0700
39036
39037     libaltos: Add pre-built Windows .dll
39038     
39039     This lets us create the windows distribution on Linux.
39040     
39041     Signed-off-by: Keith Packard <keithp@keithp.com>
39042
39043 commit 0300fe581c949232bc52b05fe9c1f6032cad6b60
39044 Author: Keith Packard <keithp@keithp.com>
39045 Date:   Mon Aug 30 02:56:25 2010 -0700
39046
39047     libaltos: Add pre-built Mac OS X libaltos.dylib
39048     
39049     This allows the mac bits to be built on Linux.
39050     
39051     Signed-off-by: Keith Packard <keithp@keithp.com>
39052
39053 commit 5d48c494325524bbeed10e0dc7300ed44e7e208e
39054 Author: Keith Packard <keithp@keithp.com>
39055 Date:   Mon Aug 30 02:53:26 2010 -0700
39056
39057     Update telemetrum.inf to include all current USB ids.
39058     
39059     Windows 7 has 'encouraged' us to split out each product into a
39060     separate USB ID. telemetrum.inf now has all of them listed.
39061     
39062     Signed-off-by: Keith Packard <keithp@keithp.com>
39063
39064 commit df34bbe7d1c43b12ab6d610fe810b6e1683e4c21
39065 Author: Keith Packard <keithp@keithp.com>
39066 Date:   Mon Aug 30 02:49:49 2010 -0700
39067
39068     libaltos: Improve Makefile
39069     
39070     Builds Windows .dll correctly now and sample app.
39071     Moves linux install target to end so it is not default
39072     Adds .NOTPARALLEL to disable parallel gnumake.
39073     Removes -g debugging flags to shrink file size.
39074     
39075     Signed-off-by: Keith Packard <keithp@keithp.com>
39076
39077 commit dd5374b8e660012ae4f8b058454fd101e0749ca7
39078 Author: Keith Packard <keithp@keithp.com>
39079 Date:   Mon Aug 30 02:00:30 2010 -0700
39080
39081     libaltos: Fix windows build.
39082     
39083     Need stdlib.h to get calloc/free defined, remove debug printfs, fix
39084     serial timeouts.
39085     
39086     Signed-off-by: Keith Packard <keithp@keithp.com>
39087
39088 commit 63c832394a829f41b8f77d075786530536360349
39089 Author: Keith Packard <keithp@keithp.com>
39090 Date:   Sun Aug 29 23:22:27 2010 -0700
39091
39092     altos: shut down packet mode cleanly
39093     
39094     Instead of constantly bashing the packet master thread, let it shut
39095     itself down in an orderly fashion. It will shut down fairly quickly as
39096     all of the activities in that thread are bounded. Otherwise, the
39097     master packet thread might leave mutexes locked and all sorts of other
39098     horrors.
39099     
39100     Tested on Linux and Mac OS X and shown to be reliable.
39101     
39102     Signed-off-by: Keith Packard <keithp@keithp.com>
39103
39104 commit 43619c13f749b79c096d1e8fdab3d5cfb5fd85f1
39105 Author: Keith Packard <keithp@keithp.com>
39106 Date:   Sun Aug 29 22:42:23 2010 -0700
39107
39108     altos: Abort radio harder when terminating packet mode.
39109     
39110     Make sure the master radio tasks don't get stuck waiting for an
39111     incoming packet again by aborting the radio each time we poke the
39112     tasks.
39113     
39114     Signed-off-by: Keith Packard <keithp@keithp.com>
39115
39116 commit c4a8569f61eddf690d00337543462235ecbfbe54
39117 Author: Keith Packard <keithp@keithp.com>
39118 Date:   Sun Aug 29 22:41:18 2010 -0700
39119
39120     altos: flush pending output when terminating packet mode
39121     
39122     Just in case the last command sent hasn't been transmitted, hang
39123     around for up to a second waiting for the data to get across the link.
39124     
39125     Signed-off-by: Keith Packard <keithp@keithp.com>
39126
39127 commit 1acd3c7ec167b1b18e4ea493e5978c938a91cc89
39128 Author: Keith Packard <keithp@keithp.com>
39129 Date:   Sun Aug 29 21:45:19 2010 -0700
39130
39131     libaltos: cjnitest needs altos_flush now
39132
39133 commit 6527357d1f0e94faf9e7dacac10a39875131be7c
39134 Author: Keith Packard <keithp@keithp.com>
39135 Date:   Sun Aug 29 21:43:46 2010 -0700
39136
39137     libaltos: Missing OS_LDFLAGS on cjnitest build
39138
39139 commit b7fa1ea3338f63b8edcf8aacccb5e519ca0b213f
39140 Author: Keith Packard <keithp@keithp.com>
39141 Date:   Sun Aug 29 21:41:40 2010 -0700
39142
39143     libaltos: Mac OS X cannot use 'poll(2)' on serial lines.
39144     
39145     Who ships this stuff, anyway? Instead of blocking, we'll poll every 100ms now,
39146     otherwise, we won't be able to abort the read when the device is closed. Yay!
39147     
39148     Signed-off-by: Keith Packard <keithp@keithp.com>
39149
39150 commit e60c59123232915e808cee23ef89eb1a38ced34b
39151 Author: Keith Packard <keithp@keithp.com>
39152 Date:   Sun Aug 29 21:40:21 2010 -0700
39153
39154     altosui: discard invalid lines while reading Eeprom flight data
39155     
39156     This shouldn't happen, but it's easy enough to get back in sync by just
39157     skipping lines with weird contents.
39158     
39159     Signed-off-by: Keith Packard <keithp@keithp.com>
39160
39161 commit ae02b1590439d5c8dfb472cf1f83a14fdcfbaf11
39162 Author: Keith Packard <keithp@keithp.com>
39163 Date:   Sun Aug 29 21:36:47 2010 -0700
39164
39165     altosui: provide separate flush_input/flush_output for serial. deal with monitor automatically
39166     
39167     (yes, this should be two patches, but the diffs in AltosSerial were merged together).
39168     
39169     First, this replaces the existing flush/flush_reply mess with two simple functions,
39170     one to flush output to the serial device, making sure that all data written will be seen
39171     while we wait for input. The other sucks any pending input off of the serial line and
39172     discards it.
39173     
39174     Second, AltosSerial now tracks whether the serial line is being used for telemetry
39175     monitoring. If so, it enables monitoring, otherwise it disables it. Eliminates a
39176     bunch of manual state tracking elsewhere.
39177     
39178     Signed-off-by: Keith Packard <keithp@keithp.com>
39179
39180 commit edcfb1bdf64772d3b83405ccf99385b8fea5d8e4
39181 Author: Keith Packard <keithp@keithp.com>
39182 Date:   Sun Aug 29 17:33:59 2010 -0700
39183
39184     libaltos: AltusMetrum devices use more than one USB ID.
39185     
39186     List all usb devices, picking those with AltusMetrum IDs.
39187     
39188     Signed-off-by: Keith Packard <keithp@keithp.com>
39189
39190 commit 236685807b63860ad033aa0254ce8f6d8d36d4ef
39191 Author: Bdale Garbee <bdale@gag.com>
39192 Date:   Fri Aug 27 22:26:09 2010 -0600
39193
39194     update changelogs for Debian build
39195
39196 commit 1cda15fdef2d9d3e54354bd5c43a0bcc7e3240cb
39197 Author: Bdale Garbee <bdale@gag.com>
39198 Date:   Fri Aug 27 22:24:51 2010 -0600
39199
39200     fix up for an 0.7 release
39201
39202 commit 4c5c7c7f198775c398c1ad2edafb3488384cc297
39203 Author: Bdale Garbee <bdale@gag.com>
39204 Date:   Fri Aug 27 22:13:38 2010 -0600
39205
39206     update changelogs for Debian build
39207
39208 commit 42055af5c6f17d14a2f1c6a2b5e1ce6d3b45a615
39209 Author: Bdale Garbee <bdale@gag.com>
39210 Date:   Fri Aug 27 13:13:19 2010 -0600
39211
39212     update changelogs for Debian build
39213
39214 commit 0bd4cc03b3bf23aa32b5ce1921078021d1d8a9c6
39215 Author: Bdale Garbee <bdale@gag.com>
39216 Date:   Fri Aug 27 13:12:46 2010 -0600
39217
39218     fix path to installed shared library
39219
39220 commit 99c1d9b4ef10ec4ebbee058ce0bb38c954a0a3a6
39221 Author: Bdale Garbee <bdale@gag.com>
39222 Date:   Fri Aug 27 12:41:26 2010 -0600
39223
39224     update changelogs for Debian build
39225
39226 commit cf65c6b8056c4af7c26b52ec6f9fbd3400cef638
39227 Merge: 5f2f6a8 ae5eff7
39228 Author: Bdale Garbee <bdale@gag.com>
39229 Date:   Fri Aug 27 12:38:25 2010 -0600
39230
39231     Merge branch 'bdale'
39232     
39233     Conflicts:
39234         debian/control
39235
39236 commit ae5eff7bc0b63047737223423009707bedcb00f5
39237 Author: Bdale Garbee <bdale@gag.com>
39238 Date:   Fri Aug 27 12:37:36 2010 -0600
39239
39240     Revert "lose the prebuild hook for now while I'm fumbling"
39241     
39242     This reverts commit a21b6bb60ac1c07ebd161534a4ea63bfde50dcdf.
39243
39244 commit de2e71c4923a0282df74dbe37d087c34b4ddd279
39245 Author: Bdale Garbee <bdale@gag.com>
39246 Date:   Fri Aug 27 12:25:20 2010 -0600
39247
39248     fix man page delivery path
39249
39250 commit a8dbe082960dc9bdd44c6e4b1198423c4e566029
39251 Author: Bdale Garbee <bdale@gag.com>
39252 Date:   Fri Aug 27 12:18:28 2010 -0600
39253
39254     install altosui man page
39255
39256 commit 5cc933039e4763b8675611c63b6147b42878a2bb
39257 Author: Bdale Garbee <bdale@gag.com>
39258 Date:   Fri Aug 27 12:16:19 2010 -0600
39259
39260     fix permissions on installed jar file, switch from ao-view to altosui in
39261     the desktop file
39262
39263 commit 138009e9fad01f79df4c3820fbc206f78688bdce
39264 Author: Bdale Garbee <bdale@gag.com>
39265 Date:   Fri Aug 27 12:06:01 2010 -0600
39266
39267     update Debian standards version
39268
39269 commit c280071b7db4e9a7af31dc5740eb8d27f137950e
39270 Author: Bdale Garbee <bdale@gag.com>
39271 Date:   Fri Aug 27 12:04:13 2010 -0600
39272
39273     fix up the wrapper's path to the jar file
39274
39275 commit 5f2f6a8f9ba56be867888758848bc7f152ccbd47
39276 Merge: 63bd34c 9d1b27f
39277 Author: Keith Packard <keithp@keithp.com>
39278 Date:   Fri Aug 27 11:00:31 2010 -0700
39279
39280     Merge remote branch 'origin/master' into new-packet-format
39281
39282 commit 63bd34cd1b5a411489e8c3ab377f0fe0eec11f67
39283 Author: Keith Packard <keithp@keithp.com>
39284 Date:   Fri Aug 27 10:58:55 2010 -0700
39285
39286     altosui: add elevation and range information
39287     
39288     Signed-off-by: Keith Packard <keithp@keithp.com>
39289
39290 commit 72a18502e40f55cbba6418dc94315517881cd411
39291 Author: Bdale Garbee <bdale@gag.com>
39292 Date:   Fri Aug 27 11:51:24 2010 -0600
39293
39294     add an install target for altosui
39295
39296 commit 72c33a72ee105ec692dad62d6d9c1ad40b89bfe8
39297 Author: Bdale Garbee <bdale@gag.com>
39298 Date:   Fri Aug 27 11:45:19 2010 -0600
39299
39300     add install target for libaltos
39301
39302 commit a21b6bb60ac1c07ebd161534a4ea63bfde50dcdf
39303 Author: Bdale Garbee <bdale@gag.com>
39304 Date:   Fri Aug 27 11:26:29 2010 -0600
39305
39306     lose the prebuild hook for now while I'm fumbling
39307
39308 commit 9ea94411c9730f7a271366d309ab4827beeeb839
39309 Author: Bdale Garbee <bdale@gag.com>
39310 Date:   Fri Aug 27 11:17:54 2010 -0600
39311
39312     add a dummy install target
39313
39314 commit c443f43f8dee6e0fcbcecf9d09e948fd928b7af4
39315 Merge: 2950431 2923cf5
39316 Author: Bdale Garbee <bdale@gag.com>
39317 Date:   Fri Aug 27 03:08:53 2010 -0600
39318
39319     Merge branch 'new-packet-format' of ssh://git.gag.com/scm/git/fw/altos into new-package-format
39320
39321 commit 2923cf5057f9cef110dd547d8677ea5b60e00796
39322 Author: Keith Packard <keithp@keithp.com>
39323 Date:   Fri Aug 27 00:10:29 2010 -0700
39324
39325     altos: prepare for sdcc 2.9.1
39326     
39327     A few minor language changes -- non-standard keywords are now prefixed
39328     with __, such as 'at', 'interrupt', 'naked'.
39329     
39330     Signed-off-by: Keith Packard <keithp@keithp.com>
39331
39332 commit 68967157cee620ebedcc8c2ffd6fc7656532087b
39333 Author: Keith Packard <keithp@keithp.com>
39334 Date:   Thu Aug 26 23:55:44 2010 -0700
39335
39336     altosui: command line args are converted to csv format
39337     
39338     Signed-off-by: Keith Packard <keithp@keithp.com>
39339
39340 commit 7e0506dc2014b7178f52b950e8c1cb820b35f9c6
39341 Author: Keith Packard <keithp@keithp.com>
39342 Date:   Thu Aug 26 23:54:53 2010 -0700
39343
39344     altosui: Remove debug printf from AltosState.java
39345     
39346     Signed-off-by: Keith Packard <keithp@keithp.com>
39347
39348 commit 49364608b59de7421ab00d87d2685bc3b5f58411
39349 Author: Keith Packard <keithp@keithp.com>
39350 Date:   Thu Aug 26 23:53:06 2010 -0700
39351
39352     altosui: When parsing saved telem files, errors shouldn't abort file
39353     
39354     Make syntax errors in telem files just skip the current line and move
39355     on to the next one instead of abandoning the whole file.
39356     
39357     Signed-off-by: Keith Packard <keithp@keithp.com>
39358
39359 commit a16db143fc7ca72dc91e7989420049192114642d
39360 Author: Keith Packard <keithp@keithp.com>
39361 Date:   Thu Aug 26 23:50:51 2010 -0700
39362
39363     altosui: Serial line is in UTF-8 encoding. Deal with it.
39364     
39365     We read bytes from the serial line and need to convert each line into
39366     a string. So, save the bytes and at EOL, pass the whole mess to the
39367     string constructor with the appropriate encoding info.
39368     
39369     Signed-off-by: Keith Packard <keithp@keithp.com>
39370
39371 commit 0942912163255523d923140c01afbdb5da1c19b5
39372 Author: Keith Packard <keithp@keithp.com>
39373 Date:   Thu Aug 26 23:49:37 2010 -0700
39374
39375     altosui: Add support for old (version < 3) telemetry files
39376     
39377     This lets the code read telemetry files from pre-released versions of
39378     the software. Not strictly necessary for production, but useful for
39379     analysing old files.
39380     
39381     Signed-off-by: Keith Packard <keithp@keithp.com>
39382
39383 commit e383595cd281687de903fb6176564bbef270cb83
39384 Author: Keith Packard <keithp@keithp.com>
39385 Date:   Thu Aug 26 23:47:38 2010 -0700
39386
39387     altosui: AltosEepromReader was mis-setting boost tick
39388     
39389     It was supposed to use record.tick instead of the (unset) state.tick
39390     value.
39391     
39392     Signed-off-by: Keith Packard <keithp@keithp.com>
39393
39394 commit 651f6102ac79459fc8d5679d852c963dcb5bb3fc
39395 Author: Keith Packard <keithp@keithp.com>
39396 Date:   Thu Aug 26 23:44:25 2010 -0700
39397
39398     altosui: add rssi and distance/dir from pad to CSV files
39399     
39400     Just adds a couple more fields to the CSV files that might be interesting.
39401     
39402     Signed-off-by: Keith Packard <keithp@keithp.com>
39403
39404 commit 3dc67c1401976d6e9e2e942d5a4707a4810a0404
39405 Author: Keith Packard <keithp@keithp.com>
39406 Date:   Thu Aug 26 23:43:00 2010 -0700
39407
39408     altosui: Add AltosGreatCircle constructors
39409     
39410     This adds constructurs from AltosGPS pairs and also one from empty
39411     args (which defines both distance and bearing as 0).
39412     
39413     Signed-off-by: Keith Packard <keithp@keithp.com>
39414
39415 commit f0fd423d0bf83bc5c3f9d39e9c09397fbe8caed2
39416 Author: Keith Packard <keithp@keithp.com>
39417 Date:   Thu Aug 26 23:41:26 2010 -0700
39418
39419     altosui: Move number parsing code to Altos general class
39420     
39421     This moves these shared functions to the global shared class.
39422     
39423     Signed-off-by: Keith Packard <keithp@keithp.com>
39424
39425 commit 68b2b66d7574dfd0bd5e3571b8ffad32ca5d2b73
39426 Author: Keith Packard <keithp@keithp.com>
39427 Date:   Thu Aug 26 23:37:29 2010 -0700
39428
39429     altos: mark gps date written only after it gets into eeprom
39430     
39431     Data logging doesn't start until boost detect occurs. As the GPS date
39432     is only logged once, if that happens before logging is written to the
39433     flash, then the GPS date will never get saved.
39434     
39435     Signed-off-by: Keith Packard <keithp@keithp.com>
39436
39437 commit aa6c27df5db6bdae59d00affccb891854a6caa18
39438 Author: Keith Packard <keithp@keithp.com>
39439 Date:   Thu Aug 26 15:59:09 2010 -0700
39440
39441     altos: print GPS state flags in GPS 'g' command
39442     
39443     Having the GPS state information can help with GPS debugging.
39444     
39445     Signed-off-by: Keith Packard <keithp@keithp.com>
39446
39447 commit 34055129b4008f6a9833887b12dee39ffa408002
39448 Author: Keith Packard <keithp@keithp.com>
39449 Date:   Thu Aug 26 15:57:09 2010 -0700
39450
39451     altos: always rebuild ao_product.c to track git version
39452     
39453     The git version is built into ao_product.c and saved in eeprom log
39454     files, providing useful diagnostics about the firmware revision used
39455     for each flight. However, if ao_product.c isn't recompiled, then the
39456     updated version won't be included. Force recompilation of this file
39457     each time make is run to ensure that the final output contains an
39458     updated version number.
39459     
39460     Signed-off-by: Keith Packard <keithp@keithp.com>
39461
39462 commit 99400fdc0f19ef538fc362dde5c3ab5b7cdac409
39463 Author: Keith Packard <keithp@keithp.com>
39464 Date:   Tue Aug 24 16:43:38 2010 -0700
39465
39466     altosui: flush replies from serial link when entering debug mode
39467     
39468     We use replies in debug mode a lot and depend on them matching the
39469     expected parameters. The case which caused trouble was using
39470     TeleMetrum to reprogram TeleDongle -- sending the 'm 0' command (to
39471     disable telemetry monitoring on TeleDongle) to the TeleMetrum caused
39472     it to reply 'Syntax Error' which confused the subsequent flashing
39473     operation. Flushing that reply gets things back in sync.
39474     
39475     Signed-off-by: Keith Packard <keithp@keithp.com>
39476
39477 commit ba086cc77273efe5397f60dcaccd1e3771441481
39478 Author: Keith Packard <keithp@keithp.com>
39479 Date:   Tue Aug 24 04:02:27 2010 -0700
39480
39481     altosui: write USB serial number string while flashing
39482     
39483     USB serial number is encoded in UCS2 as a part of the string
39484     descriptors. Place those right after the other rom config bits so that
39485     altosui can find it. altosui is changed to write the serial number there.
39486     
39487     Signed-off-by: Keith Packard <keithp@keithp.com>
39488
39489 commit 220f3afdaa432c65f8ad45be7cdbe5c8a3616db3
39490 Author: Keith Packard <keithp@keithp.com>
39491 Date:   Tue Aug 24 04:01:47 2010 -0700
39492
39493     altosui: always display romconfig ui while flashing
39494
39495 commit f62b2aa08ebfd912b3c732397d43ff9f6162ec88
39496 Author: Keith Packard <keithp@keithp.com>
39497 Date:   Tue Aug 24 04:01:14 2010 -0700
39498
39499     altosui: fetch existing romconfig for flashing
39500
39501 commit d93787284c8e514a929edb9f944c98ae0206a33f
39502 Author: Keith Packard <keithp@keithp.com>
39503 Date:   Tue Aug 24 03:59:09 2010 -0700
39504
39505     altosui: Delay mapping Flash UI until flashing actually starts
39506     
39507     The flash operation may be abandoned before it even starts; this makes
39508     sure the UI doesn't flash up on the screen.
39509     
39510     Signed-off-by: Keith Packard <keithp@keithp.com>
39511
39512 commit 7d44cbd621d2b113ac2b802ef17e3d8a660ce7f2
39513 Author: Keith Packard <keithp@keithp.com>
39514 Date:   Tue Aug 24 03:58:00 2010 -0700
39515
39516     altosui: disable radio monitoring while using serial line for debugging
39517
39518 commit 7bd220dfd9b3fb0e42eb90c3b37eb7b4169eb21b
39519 Author: Keith Packard <keithp@keithp.com>
39520 Date:   Tue Aug 24 00:29:11 2010 -0700
39521
39522     altosui: Add ability to create CSV file from telem or eeprom files
39523     
39524     This creates a comma separated value file to export data for
39525     external programs.
39526     
39527     Signed-off-by: Keith Packard <keithp@keithp.com>
39528
39529 commit 634a550149e7c344a22a637ba484f115592b1018
39530 Author: Keith Packard <keithp@keithp.com>
39531 Date:   Mon Aug 23 23:15:05 2010 -0700
39532
39533     altosui: refactor logfile chooser dialog to share more code
39534     
39535     Move file opening logic into logfile chooser as it can be shared that way.
39536     
39537     Signed-off-by: Keith Packard <keithp@keithp.com>
39538
39539 commit afea6c264c5ebf12f1d629bd4bc724da86d11b7a
39540 Merge: 0e17853 9d1b27f
39541 Author: Anthony Towns <aj@erisian.com.au>
39542 Date:   Tue Aug 24 00:02:31 2010 -0600
39543
39544     Merge branch 'master' of git://git.gag.com/fw/altos
39545
39546 commit a55b132668a819cc26478a609cb79bd9190deb9d
39547 Author: Keith Packard <keithp@keithp.com>
39548 Date:   Mon Aug 23 23:01:36 2010 -0700
39549
39550     altosui: Separate out log file choosing dialog to share with CSV generator
39551     
39552     This dialog will be shared with the CSV file generating code, so split
39553     it out instead of duplicating it.
39554     
39555     Signed-off-by: Keith Packard <keithp@keithp.com>
39556
39557 commit 295043112ccde35092945c286596f9045ee6fa05
39558 Merge: 2007288 ef8376c
39559 Author: Bdale Garbee <bdale@gag.com>
39560 Date:   Mon Aug 23 23:11:22 2010 -0600
39561
39562     Merge branch 'new-packet-format' of ssh://git.gag.com/scm/git/fw/altos into new-package-format
39563
39564 commit ef8376c4dd8262a34e02b6bb9e19e907ac2f4330
39565 Author: Keith Packard <keithp@keithp.com>
39566 Date:   Mon Aug 23 22:08:30 2010 -0700
39567
39568     altosui: make default Manifest look for built-in freetts
39569
39570 commit 56b906f535ac2f86bcab71addbbcd376d74f6a73
39571 Author: Keith Packard <keithp@keithp.com>
39572 Date:   Mon Aug 23 22:03:36 2010 -0700
39573
39574     altos: Place rom config variables in fixed location
39575     
39576     The device serial number and radio calibration values are stored in
39577     flash, mostly so that TeleDongle gets them saved.
39578     
39579     Placing them in well-known locations (starting at 0xa0) makes it
39580     possible to find the previous configuration and to re-write it
39581     easily, without requiring the .map file.
39582     
39583     altosui doesn't have the .map file parsing code, so it relies upon
39584     this new technique. As a benefit, it reads the old values from the
39585     device before reprogramming it.
39586     
39587     Signed-off-by: Keith Packard <keithp@keithp.com>
39588
39589 commit 4c0c099716197ef7539be0cf55bbb164f6804958
39590 Author: Keith Packard <keithp@keithp.com>
39591 Date:   Mon Aug 23 22:02:21 2010 -0700
39592
39593     altosui: Finish device programming code
39594     
39595     Altosui can now reprogram Altusmetrum devices.
39596     
39597     Signed-off-by: Keith Packard <keithp@keithp.com>
39598
39599 commit bd2b44ddd61fadd8bf8ee6bf783ce019b1be7cc0
39600 Author: Keith Packard <keithp@keithp.com>
39601 Date:   Mon Aug 23 22:01:38 2010 -0700
39602
39603     altosui: Remove debug printf from AltosRomconfig
39604
39605 commit c3f57ffdb6c74de90d982eacd604e658ce9b00a5
39606 Author: Keith Packard <keithp@keithp.com>
39607 Date:   Mon Aug 23 22:01:11 2010 -0700
39608
39609     altosui: flush serial output before waiting for reply
39610
39611 commit 8857ac5e43eac6db8d5594b8864df497a712242b
39612 Author: Keith Packard <keithp@keithp.com>
39613 Date:   Mon Aug 23 22:00:16 2010 -0700
39614
39615     altosui: remove debug printf from AltosHexfile
39616
39617 commit b1758be01397fd49c441f40852f3558fe9343a2d
39618 Author: Keith Packard <keithp@keithp.com>
39619 Date:   Mon Aug 23 21:58:50 2010 -0700
39620
39621     altosui: Add lots more cc1111 debug interface functions
39622     
39623     These are sufficient to program the flash.
39624     
39625     Signed-off-by: Keith Packard <keithp@keithp.com>
39626
39627 commit f9e80f39bc39e5882bfe75f959b6501cb3277cd2
39628 Author: Keith Packard <keithp@keithp.com>
39629 Date:   Mon Aug 23 21:55:49 2010 -0700
39630
39631     libaltos: use pipe to wake up getchar on close. use mutexes
39632
39633 commit 86f7b9314b042f2e512fdf35067817e68532867b
39634 Author: Keith Packard <keithp@keithp.com>
39635 Date:   Mon Aug 23 21:54:47 2010 -0700
39636
39637     altosui: pad TM config dialog values to avoid clipping descenders
39638
39639 commit b8519b8669ff54741dd738ac343fbd2424451247
39640 Author: Keith Packard <keithp@keithp.com>
39641 Date:   Mon Aug 23 21:53:37 2010 -0700
39642
39643     ao-dumplog: Fix --remote and --channel options to actually work
39644
39645 commit ebeb13688a9a5442c838641ede6ba0dc92c9a1a4
39646 Author: Keith Packard <keithp@keithp.com>
39647 Date:   Mon Aug 23 14:32:58 2010 -0700
39648
39649     altosui: Add debug dongle API, split flash UI out
39650     
39651     Create an API to talk through the debug port on another AltOS
39652     device. Split the flash UI out from the flash implementation so that a
39653     command line flash utility can be written.
39654     
39655     Signed-off-by: Keith Packard <keithp@keithp.com>
39656
39657 commit 7f8d7978606abe544b1b9b6065c5480ed813b8ec
39658 Author: Keith Packard <keithp@keithp.com>
39659 Date:   Mon Aug 23 11:53:19 2010 -0700
39660
39661     altosui: Add .ihx file reading code and stub out flashing UI
39662     
39663     Signed-off-by: Keith Packard <keithp@keithp.com>
39664
39665 commit 2007288da8a83e3aa925e11cc196f1c65aab2e5c
39666 Author: Bdale Garbee <bdale@gag.com>
39667 Date:   Thu Aug 5 15:00:15 2010 -0400
39668
39669     working on java packaging details
39670
39671 commit 44b26dd550eef789e70082ccaa46d7d430c67bce
39672 Author: Bdale Garbee <bdale@gag.com>
39673 Date:   Thu Aug 5 15:15:04 2010 -0400
39674
39675     add freetts as a build dep
39676
39677 commit 0e17853c08f77debef3e8cf82e9cdb6a5079fc9b
39678 Author: Keith Packard <keithp@keithp.com>
39679 Date:   Sun Aug 22 23:06:15 2010 -0700
39680
39681     altosui: Set callsign when fetching eeprom data over the air
39682     
39683     The updated firmware places the callsign in each packet to comply with
39684     regulations, this ensures that TeleDongle has the current callsign
39685     configured.
39686     
39687     Signed-off-by: Keith Packard <keithp@keithp.com>
39688
39689 commit 953bc3438b10b21f3d65d292356c4ab2de23cddd
39690 Author: Keith Packard <keithp@keithp.com>
39691 Date:   Sun Aug 22 23:05:20 2010 -0700
39692
39693     altosui: Add TeleMetrum configuration
39694     
39695     This presents a dialog with all of the user-settable options in the
39696     TeleMetrum set for editing. Combo boxes are used for everything except
39697     the callsign.
39698     
39699     Signed-off-by: Keith Packard <keithp@keithp.com>
39700
39701 commit e1463d8e265dfd42c824d90088cd2a51b4cf8131
39702 Author: Keith Packard <keithp@keithp.com>
39703 Date:   Sat Aug 21 17:57:31 2010 -0700
39704
39705     altosui: Make teledongle callsign configurable
39706     
39707     Teledongle uses the callsign in packet mode; this provides a way to
39708     set that.
39709     
39710     Signed-off-by: Keith Packard <keithp@keithp.com>
39711
39712 commit 09252ec22d58e946494e4ca2cf367bf3bbe1cc50
39713 Author: Keith Packard <keithp@keithp.com>
39714 Date:   Sat Aug 21 17:09:41 2010 -0700
39715
39716     altos: Define USB product ID in per-product Makefile.defs file
39717     
39718     This allows Win7 to tell which kind of device is connected purely by
39719     USB id as it doesn't expose the USB product ID string to user space.
39720     
39721     Signed-off-by: Keith Packard <keithp@keithp.com>
39722
39723 commit 22800dc094797e1e0ad99124198809d0360f7556
39724 Author: Keith Packard <keithp@keithp.com>
39725 Date:   Tue Aug 17 18:22:28 2010 -0700
39726
39727     altosui: Select devices by USB vendor/product ID.
39728     
39729     Because Win7 doesn't expose the product name, we're swtiching to using
39730     the USB idProduct/idVendor values. This patch adds support for
39731     selecting devices by those new IDs.
39732     
39733     Signed-off-by: Keith Packard <keithp@keithp.com>
39734
39735 commit d14c96663a1027164fa30ed89b53f5a9d3fdb82b
39736 Author: Keith Packard <keithp@keithp.com>
39737 Date:   Tue Aug 17 18:19:43 2010 -0700
39738
39739     libaltos: integrate Windows support.
39740     
39741     This adds Windows support for discovery and I/O.
39742     
39743     The API to the library is mostly unchanged, except that it now exports
39744     product and vendor USB IDs as Win7 doesn't expose the product name
39745     anywhere that we've been able to find, so we'll be updating the
39746     firmware to use unique idProduct values for each product.
39747     
39748     Signed-off-by: Keith Packard <keithp@keithp.com>
39749
39750 commit 9d1b27fa147fc8b765d5be165ebef7ee0f85bd37
39751 Author: Bdale Garbee <bdale@gag.com>
39752 Date:   Wed Aug 11 22:11:50 2010 -0400
39753
39754     update changelogs for Debian build
39755
39756 commit b6da90b4627dde1fe88240c38c51559d8f781dd0
39757 Author: Bdale Garbee <bdale@gag.com>
39758 Date:   Wed Aug 11 17:15:39 2010 -0400
39759
39760     update changelogs for Debian build
39761
39762 commit 4918f73fd0a0f3f5d52907f95a0ec385e901d447
39763 Author: Bdale Garbee <bdale@gag.com>
39764 Date:   Wed Aug 11 08:50:27 2010 -0400
39765
39766     update changelogs for Debian build
39767
39768 commit f63f16a70e4d0535667a6364cafcbff026ee6a8c
39769 Author: Bdale Garbee <bdale@gag.com>
39770 Date:   Wed Aug 11 08:36:59 2010 -0400
39771
39772     update changelogs for Debian build
39773
39774 commit 294d9c7db21eaf1e71504dbcca5040371abcce55
39775 Author: Keith Packard <keithp@keithp.com>
39776 Date:   Sat Aug 7 22:30:55 2010 -0400
39777
39778     ao-dumplog: add --channel option (for use with -R option)
39779     
39780     Sets the channel when downloading data with the -R option.
39781     
39782     Signed-off-by: Keith Packard <keithp@keithp.com>
39783
39784 commit f317f1324b69b4241f4bb192e164b33d712d5a43
39785 Author: Keith Packard <keithp@keithp.com>
39786 Date:   Sat Aug 7 00:42:25 2010 -0400
39787
39788     altosui: Start adding code to write csv files from eeprom/telem files
39789     
39790     This is a start to code which can write out a csv file full of flight
39791     data from either an eeprom or telem input file. It's not hooked up,
39792     but the restructuring necessary is finished and the output is started.
39793     
39794     Signed-off-by: Keith Packard <keithp@keithp.com>
39795
39796 commit 4738cb2fc639adb1d9237e6c903479f0690dd81a
39797 Author: Keith Packard <keithp@keithp.com>
39798 Date:   Sat Aug 7 00:40:59 2010 -0400
39799
39800     altos: add callsign to packet mode, increase payload to 64 bytes
39801     
39802     Untested, but it 'should' work. Need to add callsign setting to packet
39803     mode users.
39804     
39805     Signed-off-by: Keith Packard <keithp@keithp.com>
39806
39807 commit b7699a5907e64bc7547fcc27e73f4a35bbaabfff
39808 Author: Keith Packard <keithp@keithp.com>
39809 Date:   Fri Aug 6 13:09:21 2010 -0400
39810
39811     altosui: Add comments to Eeprom reader
39812
39813 commit 0e917f3ff822616adb147517ac961422e5fedbfd
39814 Author: Keith Packard <keithp@keithp.com>
39815 Date:   Thu Aug 5 22:49:53 2010 -0400
39816
39817     altosui: Compute flight state from eeprom data
39818     
39819     This lets eeprom files be used to replay flights.
39820     
39821     Signed-off-by: Keith Packard <keithp@keithp.com>
39822
39823 commit a0a9b445a4d379730b67720f8d7b682d5206a582
39824 Author: Bdale Garbee <bdale@gag.com>
39825 Date:   Thu Aug 5 15:16:48 2010 -0400
39826
39827     update changelogs for Debian build
39828
39829 commit e075b8623533965b1b77b77d38c2df32f5f77fce
39830 Author: Bdale Garbee <bdale@gag.com>
39831 Date:   Thu Aug 5 15:16:24 2010 -0400
39832
39833     update changelogs for Debian build
39834
39835 commit 410de62715a0830f03b0a65d6c7730dff51e6ef4
39836 Author: Bdale Garbee <bdale@gag.com>
39837 Date:   Thu Aug 5 15:15:04 2010 -0400
39838
39839     add freetts as a build dep
39840
39841 commit 0b85160c44d934f3d1352c1c07c296d01ceffc32
39842 Author: Bdale Garbee <bdale@gag.com>
39843 Date:   Thu Aug 5 15:02:17 2010 -0400
39844
39845     update changelogs for Debian build
39846
39847 commit d091099753d9cae01c4805812425ebea19ec09cf
39848 Author: Bdale Garbee <bdale@gag.com>
39849 Date:   Thu Aug 5 15:00:46 2010 -0400
39850
39851     update changelogs for Debian build
39852
39853 commit aed55ef1ce45b0f6e6fefeebf50be97607b31d65
39854 Author: Bdale Garbee <bdale@gag.com>
39855 Date:   Thu Aug 5 15:00:15 2010 -0400
39856
39857     working on java packaging details
39858
39859 commit d8bf05f7ad55964c9bce0551e58f4ef6c9f721ad
39860 Author: Keith Packard <keithp@keithp.com>
39861 Date:   Thu Aug 5 13:50:18 2010 -0400
39862
39863     altosui: Split flight record out of telemetry class
39864     
39865     This will permit either telemetry or eeprom data to be used to
39866     construct the sequence of flight events for reply or data generation.
39867     
39868     Signed-off-by: Keith Packard <keithp@keithp.com>
39869
39870 commit 85a670b5a904d6750d0f179ae307baeb8fc7cbd2
39871 Author: Keith Packard <keithp@keithp.com>
39872 Date:   Thu Aug 5 13:40:17 2010 -0400
39873
39874     altosui: Explicitly initialize Altos class
39875     
39876     Because the Altos class is never instantiated, the static initializers
39877     are never called, leaving the string to state mapping empty. Hand-code
39878     the call to the initialer instead.
39879     
39880     Signed-off-by: Keith Packard <keithp@keithp.com>
39881
39882 commit 02f17f2cd26189e2676a9dc0d86bd959ed0bc3f4
39883 Author: Bdale Garbee <bdale@gag.com>
39884 Date:   Thu Aug 5 00:54:05 2010 -0400
39885
39886     move to science menu
39887
39888 commit 9e8f7f75442303f9bfa99a0435984f5d36863ae6
39889 Author: Keith Packard <keithp@keithp.com>
39890 Date:   Sat Jul 31 10:34:21 2010 -0700
39891
39892     altosui: Split status and info panels into separate files
39893     
39894     This moves some code out of AltosUI.java into separate files
39895     
39896     Signed-off-by: Keith Packard <keithp@keithp.com>
39897
39898 commit 9c9b35254c693b3ade42b24d1e29eaf31e6ba2aa
39899 Author: Keith Packard <keithp@keithp.com>
39900 Date:   Sat Jul 31 10:24:56 2010 -0700
39901
39902     altosui: Clear displayed data rows as needed.
39903     
39904     Signed-off-by: Keith Packard <keithp@keithp.com>
39905
39906 commit 88e0137a60d7a13ddb7781befa76650e13ad44ae
39907 Author: Keith Packard <keithp@keithp.com>
39908 Date:   Sat Jul 31 10:07:38 2010 -0700
39909
39910     altosui: Merge gps date and time classes into gps class
39911     
39912     No reason to split out the date and time information from the other gps info.
39913     
39914     Signed-off-by: Keith Packard <keithp@keithp.com>
39915
39916 commit 1c3b2fe357d6acf28f48aeddd91693f10381be51
39917 Author: Keith Packard <keithp@keithp.com>
39918 Date:   Sat Jul 31 10:05:15 2010 -0700
39919
39920     altosui: Capture config and version info in .eeprom files
39921     
39922     Instead of only writing the serial number to the .eeprom file, write
39923     all of the config values and all of the version reply to the .eeprom
39924     file. The config values, in particular, contain the accelerometer
39925     calibration data which is needed to correctly compute acceleration
39926     from the captured accelerometer data.
39927     
39928     Signed-off-by: Keith Packard <keithp@keithp.com>
39929
39930 commit e286eb61ad2a90746c1c31f95d26d5edb48738d3
39931 Author: Keith Packard <keithp@keithp.com>
39932 Date:   Sat Jul 31 09:57:49 2010 -0700
39933
39934     altosui: rename AltosEeprom -> AltosEepromDownload, split out Altos constants
39935     
39936     Renames the eeprom downloading code and adds a new file to share the
39937     flight data constants across the various UI modules.
39938     
39939     Signed-off-by: Keith Packard <keithp@keithp.com>
39940
39941 commit e3a9e3815db3f290e28b40ae02aa654f515cfc37
39942 Author: Bdale Garbee <bdale@gag.com>
39943 Date:   Sat Jul 31 10:55:27 2010 -0600
39944
39945     update changelogs for Debian build
39946
39947 commit 8fc261c2b77bb8aab201a0649a84b5ffa236ce26
39948 Author: Bdale Garbee <bdale@gag.com>
39949 Date:   Sat Jul 31 10:55:07 2010 -0600
39950
39951     see if my new freetts package works
39952
39953 commit 2f114c7ff6b0deddb790d34139bb11ac37f8c0da
39954 Author: Bdale Garbee <bdale@gag.com>
39955 Date:   Thu Jul 29 13:30:36 2010 -0600
39956
39957     update changelogs for Debian build
39958
39959 commit 7877496d47ce6d25210c0e1c6500666dbfc0876c
39960 Merge: c71061a 4cf39b1
39961 Author: Keith Packard <keithp@keithp.com>
39962 Date:   Thu Jul 29 12:07:49 2010 -0700
39963
39964     Merge remote branch 'origin/master'
39965
39966 commit c71061a37d3d3be2855b61cde33d2371989d7681
39967 Author: Keith Packard <keithp@keithp.com>
39968 Date:   Thu Jul 29 12:06:06 2010 -0700
39969
39970     Make altosui test script executable
39971
39972 commit 4cf39b13a574cb656999cf329f5b08e7f910604b
39973 Author: Bdale Garbee <bdale@gag.com>
39974 Date:   Thu Jul 29 12:57:31 2010 -0600
39975
39976     update changelogs for Debian build
39977
39978 commit d1848193d8208388e4ccdfbed4e5663a9ba04dd3
39979 Author: Bdale Garbee <bdale@gag.com>
39980 Date:   Thu Jul 29 12:56:59 2010 -0600
39981
39982     add a jdk to the build deps
39983
39984 commit 9ad4984124b6c05114feac4c4ac078dc248ce16a
39985 Author: Keith Packard <keithp@keithp.com>
39986 Date:   Thu Jul 29 11:56:24 2010 -0700
39987
39988     altosui: remove option to install to alternate volume
39989
39990 commit 2e797b18f0724caf7aaf96f45997998c7416f34e
39991 Author: Bdale Garbee <bdale@gag.com>
39992 Date:   Thu Jul 29 12:50:57 2010 -0600
39993
39994     update changelogs for Debian build
39995
39996 commit 89109f9dff3ce855d80da166e3362375282f745d
39997 Author: Bdale Garbee <bdale@gag.com>
39998 Date:   Thu Jul 29 12:47:37 2010 -0600
39999
40000     ugh, fixing failure due to aborted build
40001
40002 commit 6fb8546575f6d99676dbb1dce190b0b7cf24b657
40003 Author: Keith Packard <keithp@keithp.com>
40004 Date:   Thu Jul 29 11:45:56 2010 -0700
40005
40006     Moved Mac OS packaging to altosui dir
40007
40008 commit 865d5cdf8931ffc796f608e3e12d7c5a70832825
40009 Author: Bdale Garbee <bdale@gag.com>
40010 Date:   Thu Jul 29 12:45:18 2010 -0600
40011
40012     add swig as a build dep
40013
40014 commit 91d75fb3919f606a1956bf8c6423a8012d99a56a
40015 Author: Keith Packard <keithp@keithp.com>
40016 Date:   Thu Jul 29 11:45:12 2010 -0700
40017
40018     altosui: Switch eeprom extension back to .eeprom
40019
40020 commit 33ffd89d5a64c991d28bd7369b61e1faa18f605b
40021 Author: Bdale Garbee <bdale@gag.com>
40022 Date:   Thu Jul 29 12:40:52 2010 -0600
40023
40024     update changelogs for Debian build
40025
40026 commit 62b4cc51a0f54ef363cbff46caef80a0afecdea2
40027 Author: Bdale Garbee <bdale@gag.com>
40028 Date:   Thu Jul 29 12:40:25 2010 -0600
40029
40030     update changelogs for Debian build
40031
40032 commit 6f86db5e0360bef26b21336769b7635e3a11e160
40033 Author: Keith Packard <keithp@keithp.com>
40034 Date:   Thu Jul 29 11:24:47 2010 -0700
40035
40036     Add Mac OS X packaging bits
40037     
40038     Signed-off-by: Keith Packard <keithp@keithp.com>
40039
40040 commit 950f0a8c54e5835ee5d8b0aea360bd8362c21bc5
40041 Author: Keith Packard <keithp@keithp.com>
40042 Date:   Thu Jul 29 11:09:19 2010 -0700
40043
40044     altosui: construct Darwin application directory
40045     
40046     This adds the necessary files and build steps to construct
40047     AltosUI.app on a Darwin system.
40048     
40049     Signed-off-by: Keith Packard <keithp@keithp.com>
40050
40051 commit 669c5f52abb972a82ed6efbee7a8c7d20afb5cd0
40052 Author: Keith Packard <keithp@keithp.com>
40053 Date:   Thu Jul 29 10:48:52 2010 -0700
40054
40055     libaltos: build with java src encoding UTF8
40056     
40057     Signed-off-by: Keith Packard <keithp@keithp.com>
40058
40059 commit efa0e034a161f4852947cbac06537d6ba4422a0e
40060 Author: Keith Packard <keithp@keithp.com>
40061 Date:   Thu Jul 29 10:48:25 2010 -0700
40062
40063     altosui: remove debug printf
40064     
40065     Signed-off-by: Keith Packard <keithp@keithp.com>
40066
40067 commit 53c279b9e96da8b69837ae84038a78ca5707f2a5
40068 Author: Keith Packard <keithp@keithp.com>
40069 Date:   Thu Jul 29 10:45:02 2010 -0700
40070
40071     altosui: Close serial, join reader thread, free altos_file
40072     
40073     Separating out the close and free actions ensures that the reader thread will not
40074     access freed memory or dereference a null pointer while shutting down the
40075     connection to the serial device. Otherwise, a race condition exists between the
40076     serial close and the thread join.
40077     
40078     Signed-off-by: Keith Packard <keithp@keithp.com>
40079
40080 commit b8bc9994d8bfde6116c8a509e70ddf45fc4decce
40081 Author: Keith Packard <keithp@keithp.com>
40082 Date:   Thu Jul 29 10:24:59 2010 -0700
40083
40084     altosui: Remove unnecessary freetts .jar files
40085     
40086     Signed-off-by: Keith Packard <keithp@keithp.com>
40087
40088 commit e33dbbba94ce42295e9fed9f4ba7e46f9eff1517
40089 Author: Keith Packard <keithp@keithp.com>
40090 Date:   Thu Jul 29 10:24:09 2010 -0700
40091
40092     altosui: check for closed serial device before reading
40093     
40094     Signed-off-by: Keith Packard <keithp@keithp.com>
40095
40096 commit 27a2d0c00acf78628428c20ab68e2bfba06340da
40097 Author: Bdale Garbee <bdale@gag.com>
40098 Date:   Thu Jul 29 11:02:38 2010 -0600
40099
40100     update changelogs for Debian build
40101
40102 commit 537492dc961ee6a1945b1041ee3cc0d3f519a42c
40103 Author: Bdale Garbee <bdale@gag.com>
40104 Date:   Thu Jul 29 11:01:21 2010 -0600
40105
40106     update changelogs for Debian build
40107
40108 commit adf6cbcba23e24a3824f7e242ec37baa2750ab94
40109 Author: Bdale Garbee <bdale@gag.com>
40110 Date:   Thu Jul 29 10:59:18 2010 -0600
40111
40112     update changelogs for Debian build
40113
40114 commit d0fd53bdab2f480cd43b6d7010c2094f4fccda91
40115 Author: Keith Packard <keithp@keithp.com>
40116 Date:   Wed Jul 28 21:49:23 2010 -0700
40117
40118     Reset GPS ready status when GPS comes unlocked on the pad
40119     
40120     If GPS becomes unlocked, then report that in the UI and via
40121     voice.
40122     
40123     Signed-off-by: Keith Packard <keithp@keithp.com>
40124
40125 commit 5fd225c3a52445ecdc7c04fac5e3d9a0db177c66
40126 Author: Keith Packard <keithp@keithp.com>
40127 Date:   Wed Jul 28 21:01:41 2010 -0700
40128
40129     altosui: report rocket ground bearing at landing only if known
40130     
40131     if state.from_pad is null, then there isn't any data to report.
40132     
40133     Signed-off-by: Keith Packard <keithp@keithp.com>
40134
40135 commit d2d772164af95a35ea0f5d2413a5be67de9a210f
40136 Author: Keith Packard <keithp@keithp.com>
40137 Date:   Wed Jul 28 20:18:36 2010 -0700
40138
40139     altosui: Replace device dialog. Center eeprom monitor.
40140     
40141     This adds a custom dialog for selecting device, which makes it look
40142     much nicer on the screen and allows the user to double-click on an
40143     entry to select it.
40144     
40145     Signed-off-by: Keith Packard <keithp@keithp.com>
40146
40147 commit ea32290704a8ca468f01172166b561833b20c954
40148 Author: Keith Packard <keithp@keithp.com>
40149 Date:   Wed Jul 28 19:37:02 2010 -0700
40150
40151     altosui: Fix Save flight data monitor layout, add cancel
40152     
40153     Use GridBagLayout to improve the appearance of the flight data monitor
40154     widget, add a cancel button to stop loading data (useful if the
40155     connection is wedged).
40156     
40157     Signed-off-by: Keith Packard <keithp@keithp.com>
40158
40159 commit ce90f3fe2aa6e23695ccccb36a8e6e614a08ba31
40160 Author: Keith Packard <keithp@keithp.com>
40161 Date:   Wed Jul 28 17:08:42 2010 -0700
40162
40163     altosui: Add progress bar for eeprom downloading status
40164     
40165     This has a progress bar tracking the state and block count while
40166     downloading stuff from telemetrum.
40167     
40168     Signed-off-by: Keith Packard <keithp@keithp.com>
40169
40170 commit 6599e9576c3da9325a1731144c1b8bc4943184c0
40171 Author: Keith Packard <keithp@keithp.com>
40172 Date:   Wed Jul 28 15:41:34 2010 -0700
40173
40174     altosui: Add eeprom data capture function. No UI yet.
40175     
40176     Signed-off-by: Keith Packard <keithp@keithp.com>
40177
40178 commit 8a6040e143ecc7830cc1c0114de85f3b72c067eb
40179 Merge: 024d077 554a97e
40180 Author: Keith Packard <keithp@keithp.com>
40181 Date:   Wed Jul 28 13:29:51 2010 -0700
40182
40183     Merge remote branch 'keithp/macos'
40184
40185 commit 024d077302f91bdb17abe70d3211ab0949dab8b9
40186 Author: Keith Packard <keithp@keithp.com>
40187 Date:   Wed Jul 28 13:29:21 2010 -0700
40188
40189     Remove debug printf
40190     
40191     Signed-off-by: Keith Packard <keithp@keithp.com>
40192
40193 commit 826061eaca88c0dd75051a6006ef6703c91af595
40194 Author: Keith Packard <keithp@keithp.com>
40195 Date:   Wed Jul 28 13:10:11 2010 -0700
40196
40197     Add voice test command for help in adjusting volume.
40198     
40199     Signed-off-by: Keith Packard <keithp@keithp.com>
40200
40201 commit 71da54a5ce255395376a44586782ab8b6f3b289f
40202 Author: Keith Packard <keithp@keithp.com>
40203 Date:   Wed Jul 28 13:01:52 2010 -0700
40204
40205     Make voice and channel menus work.
40206     
40207     Stores voice and channel data to preferences.
40208     
40209     Signed-off-by: Keith Packard <keithp@keithp.com>
40210
40211 commit e76b9cc32bbcc5176d9bdd6f8d79778024627382
40212 Author: Keith Packard <keithp@keithp.com>
40213 Date:   Wed Jul 28 12:24:53 2010 -0700
40214
40215     altosui: Catch errors opening USB devices. Limit list to relevant devices
40216     
40217     Avoids a segfault when failing to open a device. Limit listed telemetry
40218     devices to just TeleDongle units.
40219     
40220     Signed-off-by: Keith Packard <keithp@keithp.com>
40221
40222 commit 172a2817dde6718724f2b5fad5a7761801446fa0
40223 Merge: f2a006f 81bf204
40224 Author: Keith Packard <keithp@keithp.com>
40225 Date:   Wed Jul 28 11:20:22 2010 -0700
40226
40227     Merge branch 'macos'
40228
40229 commit f2a006fd98045066bdf429cc142d033e9feb0a8f
40230 Author: Keith Packard <keithp@keithp.com>
40231 Date:   Wed Jul 28 09:31:09 2010 -0700
40232
40233     Make ao_log_data re-entrant as it is used for both sensor and GPS logs
40234     
40235     Because ao_log_data is called from two different threads, failing to
40236     make it re-entrant would cause the 'log' pointer parameter to get
40237     overwritten if another thread asked to log data while the eeprom was
40238     busy writing out a block.
40239     
40240     This would cause the second thread to re-writing data from the first
40241     thread's address, but without re-checksumming the data as the checksum
40242     is computed before the log mutex is taken.
40243     
40244     The bug can be seen by log blocks with invalid checksums.
40245     
40246     Here's what happens with the ao_gps_tracking_report and ao_log threads:
40247     
40248       ao_gps_tracking_report            ao_log
40249     
40250        Writes a bunch of records
40251        *blocks* in the eeprom flush
40252                                         sets ao_log_data 'log' to global 'log'
40253                                         computes checksum for 'log' block
40254                                         *blocks* on ao_log_mutex
40255        Wakes up
40256        sets ao_log_data 'log' to 'gps_log'
40257        writes remaining records
40258        'gps_log' is left with svid = 0
40259        *blocks* on ao_gps_tracking_data
40260                                         writes data, reading from
40261                                         the current ao_log_data 'log'
40262                                         pointer which points at 'gps_log'
40263     
40264     Making ao_log_data re-entrant fixes this by ensuring that the 'ao_log'
40265     thread has its own copy of the ao_log_data 'log' parameter.
40266     
40267     I made this function take an __xdata restricted pointer so that it
40268     could be passed in the dptr register instead of needing to go on the stack.
40269     
40270     Signed-off-by: Keith Packard <keithp@keithp.com>
40271
40272 commit 554a97ef455c801dcab825815f44520f96f4c3f3
40273 Author: Keith Packard <keithp@keithp.com>
40274 Date:   Tue Jul 27 19:29:38 2010 -0700
40275
40276     Force java source encoding to UTF-8
40277
40278 commit 81bf2042ca39eb106b789e5a08647c3114669358
40279 Author: Keith Packard <keithp@keithp.com>
40280 Date:   Tue Jul 27 15:29:28 2010 -0700
40281
40282     Java voice reporting cleanups.
40283     
40284     Make sure it says something at the end of a log file replay.
40285     Make sure it reports max speed after motor burn out, and max height
40286     after apogee.
40287     
40288     Signed-off-by: Keith Packard <keithp@keithp.com>
40289
40290 commit 8f2f38f2a9fb0c106e2c6b60cdc205292ce329ea
40291 Author: Keith Packard <keithp@keithp.com>
40292 Date:   Tue Jul 27 10:18:20 2010 -0700
40293
40294     Java clean ups -- use varargs where possible, remove AltosSerialReader
40295     
40296     Add methods that format stuff using String.format for voice and serial
40297     link, remove AltosSerialReader class and just embed that in the
40298     AltosSerial class directly.
40299     
40300     Signed-off-by: Keith Packard <keithp@keithp.com>
40301
40302 commit 734cd15ccff691f851359518ce6118f29dc9f88d
40303 Author: Keith Packard <keithp@keithp.com>
40304 Date:   Tue Jul 27 10:18:09 2010 -0700
40305
40306     Remove directories as .class file dependencies; it makes them get rebuilt all the time
40307
40308 commit 809feb75e2155e84aebfcc431867edcfd9054670
40309 Author: Keith Packard <keithp@keithp.com>
40310 Date:   Tue Jul 27 01:22:56 2010 -0700
40311
40312     Clean up altosui build a bit
40313
40314 commit 3784578a40dcc61f447435cfdf22e13c409cb9c0
40315 Author: Keith Packard <keithp@keithp.com>
40316 Date:   Tue Jul 27 00:16:15 2010 -0700
40317
40318     Add application icons for Mac OS X
40319
40320 commit 2c273710ea9b76ebee4101893f9fe84be8a02354
40321 Author: Keith Packard <keithp@keithp.com>
40322 Date:   Tue Jul 27 00:11:58 2010 -0700
40323
40324     Add Mac OS X packaging files for altosui
40325
40326 commit a58c44cd904e5429b807e5c23913051ed6484edc
40327 Author: Keith Packard <keithp@keithp.com>
40328 Date:   Tue Jul 27 00:09:41 2010 -0700
40329
40330     libaltos: build fat 10.5-compatible library
40331     
40332     Signed-off-by: Keith Packard <keithp@keithp.com>
40333
40334 commit 4e3285575e0c7d029e799258587e965779990099
40335 Author: Keith Packard <keithp@keithp.com>
40336 Date:   Tue Jul 27 00:09:18 2010 -0700
40337
40338     libaltos: make clean remove all built files
40339     
40340     Signed-off-by: Keith Packard <keithp@keithp.com>
40341
40342 commit fb8507975c6e081de2e909eca6faaa8f868b609e
40343 Author: Keith Packard <keithp@keithp.com>
40344 Date:   Tue Jul 27 00:08:38 2010 -0700
40345
40346     libaltos needs -I. on all systems
40347     
40348     Signed-off-by: Keith Packard <keithp@keithp.com>
40349
40350 commit 0a782026f6b19e84ffd44f1ae1b466363474bd30
40351 Author: Keith Packard <keithp@keithp.com>
40352 Date:   Mon Jul 26 18:10:07 2010 -0700
40353
40354     Darwin doesn't have strndup.
40355     
40356     This provides a private version of this GNU extension.
40357     
40358     Signed-off-by: Keith Packard <keithp@keithp.com>
40359
40360 commit b51497597868a40df039dd3ca11b35a6258bbbb3
40361 Author: Keith Packard <keithp@keithp.com>
40362 Date:   Mon Jul 26 18:04:10 2010 -0700
40363
40364     Re-enable Linux support for altosui.
40365     
40366     This steals code from cc-usbdev for scanning the USB tree and uses the
40367     same tty code as on Darwin
40368     
40369     Signed-off-by: Keith Packard <keithp@keithp.com>
40370
40371 commit e9153c4f2c71ed965822fcfe5112d2bc38506baf
40372 Author: Keith Packard <keithp@keithp.com>
40373 Date:   Mon Jul 26 17:04:04 2010 -0700
40374
40375     Re-enable freetts
40376
40377 commit 17188f36fe18c23bc2eb877ac9a01b7693f4b863
40378 Author: Keith Packard <keithp@keithp.com>
40379 Date:   Mon Jul 26 17:03:47 2010 -0700
40380
40381     Present list of altos devices in nice format
40382
40383 commit 005e2d6a7bb3b0546b0c1273296875621632ec6d
40384 Author: Keith Packard <keithp@keithp.com>
40385 Date:   Mon Jul 26 15:42:48 2010 -0700
40386
40387     Switch AltosUI to libaltos for device access
40388     
40389     Signed-off-by: Keith Packard <keithp@keithp.com>
40390
40391 commit c726d8f6eb861801d7543552beab6ee2c920c96f
40392 Author: Keith Packard <keithp@keithp.com>
40393 Date:   Mon Jul 26 15:41:39 2010 -0700
40394
40395     Add libaltos which talks to USB connected altos devices
40396
40397 commit 05111d5be4d37bedaaee6415d6ee27347e6a112c
40398 Author: Keith Packard <keithp@keithp.com>
40399 Date:   Mon Jul 26 12:52:17 2010 -0700
40400
40401     When the EP0 IN buffer is full, don't panic, just skip sending another
40402     
40403     If the host doesn't pull the IN packet out of EP0 before sending
40404     another SETUP command along, the IN buffer will still be busy when we
40405     try to reply to the SETUP command. While I don't quite understand why
40406     this would ever happen, there's no need to panic about it, just drop
40407     the reply packet on the floor.
40408     
40409     Signed-off-by: Keith Packard <keithp@keithp.com>
40410
40411 commit d0647950b76bfa9942e4f8cf87353f2b724099f4
40412 Author: Bdale Garbee <bdale@gag.com>
40413 Date:   Wed Jul 21 14:26:36 2010 -0600
40414
40415     fix text since TM only has one led to blink
40416
40417 commit 8eda9fe94a7fd40cb84f50e17e64956f1584ebdc
40418 Author: Bdale Garbee <bdale@gag.com>
40419 Date:   Tue Jul 20 22:24:32 2010 -0600
40420
40421     update changelogs for Debian build
40422
40423 commit cd8aa79de72b8b6b3a26d0c2522e94c621b70f13
40424 Author: Bdale Garbee <bdale@gag.com>
40425 Date:   Tue Jul 20 22:24:01 2010 -0600
40426
40427     update to latest Debian standards version
40428
40429 commit 3284c7516e302e6db403d18866924ad926ffb2a7
40430 Author: Bdale Garbee <bdale@gag.com>
40431 Date:   Tue Jul 20 22:20:08 2010 -0600
40432
40433     update changelogs for Debian build
40434
40435 commit 8f1933717e3acfbcb09191da6e79a7944f91f9d9
40436 Author: Bdale Garbee <bdale@gag.com>
40437 Date:   Tue Jul 20 22:19:27 2010 -0600
40438
40439     reflect documentation file name change
40440
40441 commit 2cf1ef555a7feceeb1c333b273c19dd848e8d03f
40442 Author: Bdale Garbee <bdale@gag.com>
40443 Date:   Tue Jul 20 22:15:47 2010 -0600
40444
40445     update changelogs for Debian build
40446
40447 commit 74c67fc466118b86b4eb5173f7a6886ae220a985
40448 Author: Bdale Garbee <bdale@gag.com>
40449 Date:   Tue Jul 20 22:14:27 2010 -0600
40450
40451     add build dep for sndfile
40452
40453 commit 0794ab1e13313fa49b7caf01aef20b052ad78a88
40454 Author: Bdale Garbee <bdale@gag.com>
40455 Date:   Tue Jul 20 22:10:01 2010 -0600
40456
40457     update changelogs for Debian build
40458
40459 commit 15a6791ba8f8313b6b55752c3fa7dc254d56dd5c
40460 Author: Bdale Garbee <bdale@gag.com>
40461 Date:   Tue Jul 20 22:08:56 2010 -0600
40462
40463     update changelogs for Debian build
40464
40465 commit e747954b6a9e71705f619684df8a118a909b1039
40466 Merge: bd40a5b 695879d
40467 Author: Bdale Garbee <bdale@gag.com>
40468 Date:   Tue Jul 20 22:07:22 2010 -0600
40469
40470     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
40471
40472 commit bd40a5b431847c071f5c486d754eca5627e5e3b9
40473 Author: Bdale Garbee <bdale@gag.com>
40474 Date:   Tue Jul 20 02:12:03 2010 -0600
40475
40476     significant update
40477
40478 commit 695879dbccfc5ec6b79698653c58814158f91686
40479 Author: Keith Packard <keithp@keithp.com>
40480 Date:   Wed Jul 14 19:07:02 2010 -0700
40481
40482     Switch DBG pins to GPIO when using any debug commands. Reboot to restore.
40483     
40484     If you want to use TeleMetrum as a debug dongle, you need to flip the
40485     three pins used to talk to the remote debug port from SPI mode to GPIO
40486     mode.
40487     
40488     This patch doesn't provide any way to get back to SPI mode, so you'll
40489     have to reboot the TeleMetrum to write out config parameters or log
40490     flight data after using any debug commands.
40491     
40492     Signed-off-by: Keith Packard <keithp@keithp.com>
40493
40494 commit a9ec6be0e92dee01f7aac006ef6f7779c1da1b36
40495 Author: Keith Packard <keithp@keithp.com>
40496 Date:   Sat Jul 3 17:42:36 2010 -0400
40497
40498     Telemetry code was mis-computing RSSI
40499     
40500     The RSSI data from the hardware reports in 1/2 dBm increments, and so
40501     must be divided to report plain RSSI numbers.
40502     
40503     Signed-off-by: Keith Packard <keithp@keithp.com>
40504
40505 commit 62294ea3830d3ea261a8761edc9fa6f98201d321
40506 Author: Bdale Garbee <bdale@gag.com>
40507 Date:   Thu Jun 24 12:38:23 2010 -0700
40508
40509     update changelogs for Debian build
40510
40511 commit 4766b13d1241fa585907c6f77707d2d4b3ccff75
40512 Author: Bdale Garbee <bdale@gag.com>
40513 Date:   Thu Jun 24 12:37:55 2010 -0700
40514
40515     update changelogs for Debian build
40516
40517 commit 52834517c0706b1f16fb81643a42dc1c1997e00a
40518 Author: Keith Packard <keithp@keithp.com>
40519 Date:   Mon Jun 21 15:53:33 2010 -0700
40520
40521     Abort any in-progress radio operation when changing radio channel
40522     
40523     In monitor mode, the current receive operation must be aborted so that
40524     the radio channel change can take effect without receiving a
40525     telemetry packet on the old channel. Aborting any in-progress radio
40526     operation will make sure that happens.
40527     
40528     Signed-off-by: Keith Packard <keithp@keithp.com>
40529
40530 commit 5933eaa44fe45027b856f1303dd657b974eb53e7
40531 Author: Keith Packard <keithp@keithp.com>
40532 Date:   Mon Jun 21 11:44:32 2010 -0700
40533
40534     ao-postflight: was walking off state.data array
40535
40536 commit 11d155d558d0b121b66f089adee0a47d71f65a78
40537 Merge: 544003a 24393ea
40538 Author: Keith Packard <keithp@keithp.com>
40539 Date:   Wed Jun 16 21:54:06 2010 -0700
40540
40541     Merge remote branch 'mjb/master'
40542
40543 commit 544003a8da0248fd6f3c62ded86af74ab7cdadf6
40544 Merge: 267923e 93c1e29
40545 Author: Keith Packard <keithp@keithp.com>
40546 Date:   Wed Jun 16 21:52:23 2010 -0700
40547
40548     Merge remote branch 'origin/master'
40549
40550 commit 267923e56e22b3635a21f42ef77a3a36158bc273
40551 Author: Keith Packard <keithp@keithp.com>
40552 Date:   Wed Jun 16 21:49:43 2010 -0700
40553
40554     Add special code for USB panic's.
40555     
40556     The USB system may panic if the hardware isn't ready for IN data when
40557     the driver thinks it should be. This adds a special panic code to make
40558     figuring this out easier.
40559     
40560     Signed-off-by: Keith Packard <keithp@keithp.com>
40561
40562 commit 50ae347bf9de49ccfc92d26888f36e155fb406a3
40563 Author: Keith Packard <keithp@keithp.com>
40564 Date:   Wed Jun 16 21:48:04 2010 -0700
40565
40566     ao-view: disable radio telemetry monitoring during channel change
40567     
40568     This makes ao-view disable the radio so that the channel change has an
40569     immediate effect rather than waiting for a packet on the old channel.
40570     
40571     Note that this should also be fixed in the TM code itself so that this
40572     change wouldn't be required.
40573     
40574     Signed-off-by: Keith Packard <keithp@keithp.com>
40575
40576 commit 24393eab0ea085f2d0224b59fdc3c00693e5d3a9
40577 Author: Mike Beattie <mike@ethernal.org>
40578 Date:   Thu Jun 17 14:04:01 2010 +1200
40579
40580     Extension to KML output format, and minor bug fix
40581     
40582     Extended KML output by breaking flight into coloured segments representing
40583     flight state. Add extra statistical information to description bubbles
40584     visible in Google Earth when clicking on links in My Places.
40585     
40586     Fix Bugs:
40587     * output kml to file provided as argument.
40588     * move kml coordinate output code to take advantage of nsat calculation
40589     * remove superfluous %9.2f format specifier from raw_file output.
40590     
40591     Signed-off-by: Mike Beattie <mike@ethernal.org>
40592
40593 commit 93c1e29b07c331a5ca6e0f647b9d2e9266ed3014
40594 Author: Bdale Garbee <bdale@gag.com>
40595 Date:   Tue May 18 23:12:45 2010 -0600
40596
40597     updates from Bob
40598
40599 commit bb46c9a1da5788a082e4483e576a5a6d3963507b
40600 Author: Bdale Garbee <bdale@gag.com>
40601 Date:   Tue May 18 00:26:28 2010 -0600
40602
40603     update changelogs for Debian build
40604
40605 commit 16c4cae7ebed7bd3ee0f12b8872bf950574f17e8
40606 Author: Bdale Garbee <bdale@gag.com>
40607 Date:   Tue May 18 00:26:00 2010 -0600
40608
40609     update changelogs for Debian build
40610
40611 commit bc89d962c87b50e5487628f8ca25e4443ac4823d
40612 Author: Bdale Garbee <bdale@gag.com>
40613 Date:   Tue May 18 00:24:03 2010 -0600
40614
40615     merge the altusmetrum-themes package
40616
40617 commit 0c6cf621dfd8339b8bc3915750a3147235f1331b
40618 Merge: 32e430b 563a9dc
40619 Author: Bdale Garbee <bdale@gag.com>
40620 Date:   Mon May 17 23:59:43 2010 -0600
40621
40622     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
40623
40624 commit 32e430b8a5f93b312f6359b4d553bad92ed37b19
40625 Author: Bdale Garbee <bdale@gag.com>
40626 Date:   Mon May 17 22:43:19 2010 -0600
40627
40628     merge in a derivative of Bob Finch's mere mortals guide as a getting started
40629     chapter
40630
40631 commit 563a9dcdfef42718370c49f16cc2271642b3e055
40632 Author: Keith Packard <keithp@keithp.com>
40633 Date:   Mon May 17 21:30:57 2010 -0700
40634
40635     Finish basic flight monitoring UI with voice using FreeTTS
40636     
40637     This captures telemetry data to log files and presents flight status
40638     information in audio form using FreeTTS.
40639     
40640     Signed-off-by: Keith Packard <keithp@keithp.com>
40641
40642 commit 69092ffd23ac1928d5c84413fd00c2423f313fc2
40643 Merge: 3c2211a cc002c0
40644 Author: Bdale Garbee <bdale@gag.com>
40645 Date:   Mon May 17 20:10:46 2010 -0600
40646
40647     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
40648
40649 commit cc002c0a43a02845ba67d1a61828be382f307b2e
40650 Author: Keith Packard <keithp@keithp.com>
40651 Date:   Sun May 16 22:31:23 2010 -0700
40652
40653     Fix telemetrum.inf, tested by Adrian and Keithp
40654
40655 commit 3c2211ad7877d622435bc9e8c9c0b01d62be6ff0
40656 Author: Bdale Garbee <bdale@gag.com>
40657 Date:   Thu May 13 15:37:37 2010 -0600
40658
40659     typo fix from Bob
40660
40661 commit f0433c83d76e90d78fb86a1f4a2f145f3c57fb25
40662 Author: Bdale Garbee <bdale@gag.com>
40663 Date:   Thu May 13 01:27:39 2010 -0600
40664
40665     updates from Bob
40666
40667 commit 0f05cf06e3f1ec510b11d993d9038211ac66c97b
40668 Author: Bdale Garbee <bdale@gag.com>
40669 Date:   Wed May 12 19:54:04 2010 -0600
40670
40671     update changelogs for Debian build
40672
40673 commit 6bd85138c1bfbc1d8b78dce1501870a65a64db36
40674 Author: Bdale Garbee <bdale@gag.com>
40675 Date:   Wed May 12 19:53:40 2010 -0600
40676
40677     lose the quotes since they apparently aren't necessary
40678
40679 commit d639144b9bb840fbbced199738787ec054eddf12
40680 Author: Bdale Garbee <bdale@gag.com>
40681 Date:   Wed May 12 17:04:41 2010 -0600
40682
40683     update changelogs for Debian build
40684
40685 commit ae6854df00579ea1c3486f1bf8f19443d5ac9498
40686 Author: Bdale Garbee <bdale@gag.com>
40687 Date:   Wed May 12 17:04:13 2010 -0600
40688
40689     update desktop file for conformance with current standards
40690
40691 commit 7191d74e680a63728f5eb139069a674fef969e6c
40692 Author: Bdale Garbee <bdale@gag.com>
40693 Date:   Wed May 12 16:45:00 2010 -0600
40694
40695     update changelogs for Debian build
40696
40697 commit 68eaaa694bb7bf20642ad11eac8a13c1c8e21b7d
40698 Author: Bdale Garbee <bdale@gag.com>
40699 Date:   Wed May 12 16:44:14 2010 -0600
40700
40701     add desktop file
40702
40703 commit 9d3d09578381bb6e6f88c39b0e945371bbc22c5a
40704 Author: Bdale Garbee <bdale@gag.com>
40705 Date:   Wed May 12 16:34:49 2010 -0600
40706
40707     add desktop file provided by Bob Finch
40708
40709 commit 3cc1dad3b497524ffef61190dd68908cb19e8c35
40710 Author: Bdale Garbee <bdale@gag.com>
40711 Date:   Wed May 12 16:28:35 2010 -0600
40712
40713     add initial package build scripts for Arch Linux from Bob Finch
40714
40715 commit 1b8671bd0a00cec6ae4ccf442cd007b18af82fb0
40716 Author: Bdale Garbee <bdale@gag.com>
40717 Date:   Sun May 9 01:41:00 2010 -0600
40718
40719     lots of updates
40720
40721 commit 53b9a9bc28a9278249ff37f92110c21380e93cda
40722 Author: Bdale Garbee <bdale@gag.com>
40723 Date:   Thu May 6 13:59:23 2010 -0600
40724
40725     update changelogs for Debian build
40726
40727 commit cde60f16f6ab2cdd5010a0e106ae312d144947cf
40728 Author: Bdale Garbee <bdale@gag.com>
40729 Date:   Thu May 6 13:58:31 2010 -0600
40730
40731     Revert "Merge remote branch 'remotes/origin/fix-reset'"
40732     
40733     This reverts commit 314d27a73c903fef2968dabac3d5313573713460, reversing
40734     changes made to fa77db2ffd8a749c93767db5a6311131e00473ae.
40735     
40736     For whatever reason, this is utterly not doing the right things today!
40737
40738 commit 8be04df7e1e0a369ffb1137c6e2ec63585e3c935
40739 Author: Bdale Garbee <bdale@gag.com>
40740 Date:   Thu May 6 12:48:00 2010 -0600
40741
40742     update changelogs for Debian build
40743
40744 commit 314d27a73c903fef2968dabac3d5313573713460
40745 Merge: fa77db2 823fc0a
40746 Author: Bdale Garbee <bdale@gag.com>
40747 Date:   Thu May 6 12:47:30 2010 -0600
40748
40749     Merge remote branch 'remotes/origin/fix-reset'
40750
40751 commit 823fc0ac27b8df9b4ba1ca0f229b431baf5b46dd
40752 Author: Keith Packard <keithp@keithp.com>
40753 Date:   Wed May 5 12:50:39 2010 -0700
40754
40755     Don't change dbg clock while changing reset_n. Use 20ms everywhere
40756     
40757     This changes the reset code to be more conservative about changing
40758     things at the same time, and also sets all timings to 20ms to make
40759     debugging with the scope easier.
40760     
40761     Signed-off-by: Keith Packard <keithp@keithp.com>
40762
40763 commit fa77db2ffd8a749c93767db5a6311131e00473ae
40764 Author: Bdale Garbee <bdale@gag.com>
40765 Date:   Wed May 5 02:34:41 2010 -0600
40766
40767     update changelogs for Debian build
40768
40769 commit 8b6767e24a88482dbd3d4c4c969a0be08917d22b
40770 Author: Keith Packard <keithp@keithp.com>
40771 Date:   Wed May 5 01:32:46 2010 -0700
40772
40773     Use ao_delay to sleep for 2 seconds instead of trying ao_sleep
40774     
40775     ao_sleep doesn't delay for a specified time interval as much as one
40776     might want it to.
40777
40778 commit e6bb80975fde20928a830170f0821d59a8c72690
40779 Author: Keith Packard <keithp@keithp.com>
40780 Date:   Wed May 5 01:31:57 2010 -0700
40781
40782     Fix all stdio reading functions to be __critical
40783     
40784     Oh, right SDCC has '__critical' to mark sections of code that need to
40785     run with interrupts disabled; no need to use EA = 0 and EA = 1.
40786     
40787     Signed-off-by: Keith Packard <keithp@keithp.com>
40788
40789 commit ff03cdf746b83542ebcca00d32e6cc69ccfc122d
40790 Author: Bdale Garbee <bdale@gag.com>
40791 Date:   Wed May 5 01:57:54 2010 -0600
40792
40793     update changelogs for Debian build
40794
40795 commit 8702f497c4278648303eced1aed5bd76d559521a
40796 Author: Bdale Garbee <bdale@gag.com>
40797 Date:   Wed May 5 01:57:11 2010 -0600
40798
40799     initial attempt at a telemetrum turn on script .. needs work
40800
40801 commit 01cefa181b04e53c20109ef8f3ffff633744da73
40802 Author: Bdale Garbee <bdale@gag.com>
40803 Date:   Wed May 5 01:56:51 2010 -0600
40804
40805     update changelogs for Debian build
40806
40807 commit 45a1c2d2dfb69e5269ef2756fcd0f734b48d41cb
40808 Author: Bdale Garbee <bdale@gag.com>
40809 Date:   Wed May 5 01:54:33 2010 -0600
40810
40811     update changelogs for Debian build
40812
40813 commit f7ff3278bb670df59d7425a014cfe8e3718fea3f
40814 Author: Keith Packard <keithp@keithp.com>
40815 Date:   Wed May 5 00:44:42 2010 -0700
40816
40817     Disable interrupts while reading from stdin
40818     
40819     With multiple input source support, there is a lag between asking a
40820     device if it has data and then waiting for more data to appear. If an
40821     interrupt signalling additional input arrives in this interval, we'll
40822     go to sleep with input available.
40823     
40824     This patch uses a big hammer by just disabling interrupts for the
40825     whole process.
40826     
40827     Signed-off-by: Keith Packard <keithp@keithp.com>
40828
40829 commit aa9ff021d683764a43800eaa18ea0c9be5134939
40830 Author: Keith Packard <keithp@keithp.com>
40831 Date:   Tue May 4 21:42:54 2010 -0700
40832
40833     Revert "Add optional 's' command to packet slave to enable/disable slave mode"
40834     
40835     This reverts commit e7dc7fab787df63a4de72c8450e94092eb04d7db.
40836     
40837     This patch didn't work, and magically appears to break flashing TM
40838     from TD.
40839
40840 commit 8c95f33686f69da717013ec2c25dbcd99c03aa45
40841 Author: Bdale Garbee <bdale@gag.com>
40842 Date:   Thu Apr 29 17:48:44 2010 -0600
40843
40844     more text created during SFO->DEN flight
40845
40846 commit af0613ffc178b9b1f011c315923f92f2581fe53e
40847 Author: Bdale Garbee <bdale@gag.com>
40848 Date:   Tue Apr 27 00:18:43 2010 -0600
40849
40850     update changelogs for Debian build
40851
40852 commit 99094f02bf4849ba1f6b9842ded6c39d894320f7
40853 Merge: 641e76c 75d8ffd
40854 Author: Bdale Garbee <bdale@gag.com>
40855 Date:   Tue Apr 27 00:17:37 2010 -0600
40856
40857     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
40858
40859 commit 641e76c5d419dab057298541b3a7546877643198
40860 Author: Bdale Garbee <bdale@gag.com>
40861 Date:   Tue Apr 27 00:17:15 2010 -0600
40862
40863     add some RF usage information from an email reply sent today, and re-indent
40864
40865 commit 75d8ffd4eadf31d50b2f58c021530c17ff1bdc66
40866 Author: Keith Packard <keithp@keithp.com>
40867 Date:   Fri Apr 23 13:53:25 2010 -0700
40868
40869     Autodetect flite voice registration function
40870     
40871     Old versions of flite exported the function 'register_cmu_us_kal'
40872     while new ones export 'register_cmu_us_kal16'. This patch just checks
40873     which one is available and uses that.
40874     
40875     Signed-off-by: Keith Packard <keithp@keithp.com>
40876
40877 commit 97f4874d19ec05c81a04a3ecd06abffcf7fbfafc
40878 Author: Keith Packard <keithp@keithp.com>
40879 Date:   Thu Apr 22 16:25:35 2010 -0700
40880
40881     More ALtosUI changes
40882
40883 commit e7dc7fab787df63a4de72c8450e94092eb04d7db
40884 Author: Keith Packard <keithp@keithp.com>
40885 Date:   Thu Apr 22 14:53:44 2010 -0700
40886
40887     Add optional 's' command to packet slave to enable/disable slave mode
40888     
40889     This option has been selected for teledongle so that you can use slave
40890     mode and hook two teledongles together over the RF link.
40891     
40892     Signed-off-by: Keith Packard <keithp@keithp.com>
40893
40894 commit f4383394b5d2b275b21e3ce8040d8cb9e48bb375
40895 Merge: 5f93cf8 c879b17
40896 Author: Bdale Garbee <bdale@gag.com>
40897 Date:   Sun Apr 18 08:36:07 2010 -0600
40898
40899     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
40900
40901 commit 5f93cf8c73555f43c14b1b0757f264bde69e9b8a
40902 Author: Bdale Garbee <bdale@gag.com>
40903 Date:   Sun Apr 18 08:35:43 2010 -0600
40904
40905     capture work done on SFO->DEN flight
40906
40907 commit c879b178d83c9a9a521f42a960b10e19b11cee92
40908 Author: Keith Packard <keithp@keithp.com>
40909 Date:   Sat Apr 10 22:09:57 2010 -0700
40910
40911     Increase reset switch time to 100ms
40912     
40913     Signed-off-by: Keith Packard <keithp@keithp.com>
40914
40915 commit b3a2e1221735d54dc3f2b97b4e75ed6f33ab8227
40916 Author: Bdale Garbee <bdale@gag.com>
40917 Date:   Sat Apr 10 15:01:14 2010 -0600
40918
40919     update changelogs for Debian build
40920
40921 commit 9394393c24c0a96b94319f2d0aa78fb498a121c9
40922 Author: Keith Packard <keithp@keithp.com>
40923 Date:   Fri Apr 9 17:51:01 2010 -0700
40924
40925     Only have the slave return a packet if it received one.
40926     
40927     When the receive is aborted to switch modes, it's important to not
40928     immediately re-acquire the radio and try to send a packet as the
40929     aborting thread won't know to kick the receiver again.
40930     
40931     This prevents the 'C' command from locking up as it tries to stop the
40932     packet slave before turning on the transmitter.
40933     
40934     Signed-off-by: Keith Packard <keithp@keithp.com>
40935
40936 commit ce39372a3aeffff1a08d609e63164a00cf974663
40937 Author: Bdale Garbee <bdale@gag.com>
40938 Date:   Fri Apr 9 13:50:49 2010 -0600
40939
40940     wrong Yaesu model
40941
40942 commit a832c7e9d9e9e420e1281136188bd53b34c56464
40943 Author: Bdale Garbee <bdale@gag.com>
40944 Date:   Fri Apr 9 00:10:03 2010 -0600
40945
40946     update changelogs for Debian build
40947
40948 commit c0ee1ae25e1d18138d8372f47085de48ffada344
40949 Author: Bdale Garbee <bdale@gag.com>
40950 Date:   Fri Apr 9 00:09:21 2010 -0600
40951
40952     file changed by auto tools
40953
40954 commit 25e69ebfec94560e0714cf2cc623dc9697b4ea99
40955 Author: Bdale Garbee <bdale@gag.com>
40956 Date:   Fri Apr 9 00:08:32 2010 -0600
40957
40958     update changelogs for Debian build
40959
40960 commit ea5d4f01d18d93d032f05933041b7b6881289780
40961 Author: Keith Packard <keithp@keithp.com>
40962 Date:   Thu Apr 8 22:45:04 2010 -0700
40963
40964     libflite may forget to reference libasound
40965
40966 commit 4b02f293e9c32a568fad89558274f21157e7d473
40967 Author: Bdale Garbee <bdale@gag.com>
40968 Date:   Thu Apr 8 20:08:07 2010 -0600
40969
40970     update changelogs for Debian build
40971
40972 commit 5c3b6e2d1989bcaa19ae3e294f297ec3e5648a53
40973 Author: Bdale Garbee <bdale@gag.com>
40974 Date:   Thu Apr 8 19:56:40 2010 -0600
40975
40976     update changelogs for Debian build
40977
40978 commit 01e524f11a67390a8ea1f20aa2d611909b4da363
40979 Author: Bdale Garbee <bdale@gag.com>
40980 Date:   Thu Apr 8 19:55:05 2010 -0600
40981
40982     choose a better set of docbook xsl files
40983
40984 commit f93c9bf3695862db31f2c3b3bc5a7bb24ef3766c
40985 Author: Keith Packard <keithp@keithp.com>
40986 Date:   Thu Apr 8 17:28:17 2010 -0700
40987
40988     When changing RESET line, delay 20ms
40989     
40990     The GPS data sheet suggests a 1uF cap on the reset line to ensure it
40991     is held low long enough for the power supply to come up to voltage. TM
40992     v1.0 loads a 0.001uF cap there, but in case that isn't large enough,
40993     it could be replaced with the larger one. This change makes sure that
40994     even with that larger value, the debugging link will be able to reset
40995     the target.
40996     
40997     Signed-off-by: Keith Packard <keithp@keithp.com>
40998
40999 commit baaaac499cfbc1286ae55374cfdc796d32983b92
41000 Merge: a4356b9 dec9971
41001 Author: Keith Packard <keithp@keithp.com>
41002 Date:   Thu Apr 8 13:31:23 2010 -0700
41003
41004     Merge remote branch 'origin/master'
41005
41006 commit a4356b9bcf679c4d7b88fbbad77a98ecb0f80098
41007 Author: Keith Packard <keithp@keithp.com>
41008 Date:   Thu Apr 8 13:30:16 2010 -0700
41009
41010     Use 16-bit flite voice (which appears to have changed symbols recently)
41011
41012 commit 447c121fc1ceb878e45718ad1364a5349965a59a
41013 Merge: 10330d2 53ca3f9
41014 Author: Keith Packard <keithp@keithp.com>
41015 Date:   Thu Apr 8 11:46:56 2010 -0700
41016
41017     Merge remote branch 'origin/master' into altosui
41018
41019 commit dec9971d70f17067ba0051206851b49c7604ac85
41020 Author: Bdale Garbee <bdale@gag.com>
41021 Date:   Thu Apr 8 12:43:03 2010 -0600
41022
41023     update changelogs for Debian build
41024
41025 commit 6629ec52def8917ad033847812a1adc4c3e9c947
41026 Author: Bdale Garbee <bdale@gag.com>
41027 Date:   Thu Apr 8 12:42:47 2010 -0600
41028
41029     lose the url entirely for now
41030
41031 commit a1539a075a0cc79c9122fea878d9a20ee722a18c
41032 Author: Bdale Garbee <bdale@gag.com>
41033 Date:   Thu Apr 8 12:41:42 2010 -0600
41034
41035     update changelogs for Debian build
41036
41037 commit 934434ffb3514fe9ff95692784750d7c5217a5d3
41038 Author: Bdale Garbee <bdale@gag.com>
41039 Date:   Thu Apr 8 12:41:28 2010 -0600
41040
41041     fix typo in url
41042
41043 commit 8a067cd0eebbec313fc39086747ef618f2d1cf37
41044 Author: Bdale Garbee <bdale@gag.com>
41045 Date:   Thu Apr 8 12:36:18 2010 -0600
41046
41047     update changelogs for Debian build
41048
41049 commit 05ad58389fa3814ecb56344bf4ec3a3e025920a2
41050 Author: Bdale Garbee <bdale@gag.com>
41051 Date:   Thu Apr 8 12:34:54 2010 -0600
41052
41053     need another build dep
41054
41055 commit 6fbdc7037db185f03bd5ff96b9d9320646572df7
41056 Author: Bdale Garbee <bdale@gag.com>
41057 Date:   Thu Apr 8 12:28:49 2010 -0600
41058
41059     update changelogs for Debian build
41060
41061 commit 8f1d47e9cd61738e516d15fc97d5730d80611e87
41062 Author: Bdale Garbee <bdale@gag.com>
41063 Date:   Thu Apr 8 12:28:20 2010 -0600
41064
41065     update changelogs for Debian build
41066
41067 commit 10330d23518c94a8b791193a97a6cc07b1c9a97c
41068 Author: Keith Packard <keithp@keithp.com>
41069 Date:   Tue Apr 6 00:58:00 2010 -0700
41070
41071     Enable telemetry monitoring
41072     
41073     Signed-off-by: Keith Packard <keithp@keithp.com>
41074
41075 commit 9e10e43eff9de3f034da49c4f88728fb933f5035
41076 Author: Keith Packard <keithp@keithp.com>
41077 Date:   Tue Apr 6 00:56:57 2010 -0700
41078
41079     Tasks may move in task structure as a result of ao_exit
41080     
41081     Signed-off-by: Keith Packard <keithp@keithp.com>
41082
41083 commit a7fc7901cd591c93d9d0cffeec2977ebb17554d4
41084 Author: Keith Packard <keithp@keithp.com>
41085 Date:   Tue Apr 6 00:55:19 2010 -0700
41086
41087     TD reports "not-connected" when GPS has 0 sats
41088
41089 commit e064d05da87926c19fb665b40fb280fb59328183
41090 Author: Keith Packard <keithp@keithp.com>
41091 Date:   Tue Apr 6 00:54:52 2010 -0700
41092
41093     serial port read function cannot be interrupted. poll every 1 second
41094
41095 commit c099a67d9ea37e731e0eca318102560281ac240f
41096 Author: Keith Packard <keithp@keithp.com>
41097 Date:   Mon Apr 5 22:42:05 2010 -0700
41098
41099     Interrupt running replay thread when starting another replay
41100     
41101     Signed-off-by: Keith Packard <keithp@keithp.com>
41102
41103 commit cc600a0389720bc7e435dbda8bec080ef19e0c58
41104 Author: Keith Packard <keithp@keithp.com>
41105 Date:   Mon Apr 5 22:21:46 2010 -0700
41106
41107     Add Linux device discovery
41108     
41109     AltosDeviceLinux.java scans /proc to locate suitable devices. This
41110     will be hooked up to the UI shortly.
41111
41112 commit c28646d72005daeadb70b95fd3b0050bd752cc55
41113 Author: Keith Packard <keithp@keithp.com>
41114 Date:   Sun Apr 4 20:55:30 2010 -0700
41115
41116     Switch TeleMetrum from v0.2 to v1.0
41117     
41118     Signed-off-by: Keith Packard <keithp@keithp.com>
41119
41120 commit d22ba55ae0e056530a727df50f14ad853d79a2c8
41121 Author: Keith Packard <keithp@keithp.com>
41122 Date:   Sun Apr 4 20:55:18 2010 -0700
41123
41124     Clean up some altosui comments
41125
41126 commit 6251e89c6eea655769f77bc18e98e79c99cf3cad
41127 Author: Keith Packard <keithp@keithp.com>
41128 Date:   Sun Apr 4 19:54:46 2010 -0700
41129
41130     Don't abort the radio when enabling telemetry monitoring
41131     
41132     If telemetry monitoring is already on, then there isn't any point, and
41133     if it's not on, then presumably there isn't any radio work to abort.
41134     
41135     Signed-off-by: Keith Packard <keithp@keithp.com>
41136
41137 commit b0b99f30c4e00689e9faceb363a5c7284541c6be
41138 Author: Keith Packard <keithp@keithp.com>
41139 Date:   Sun Apr 4 19:48:50 2010 -0700
41140
41141     Make ao_radio_idle keep trying to get the radio to idle.
41142     
41143     Attempting to abort a radio operation could lead to a hang if the user
41144     of the radio jumped in and started using it again before the task
41145     attempting to abort woke up. This change just keeps smacking the radio
41146     until the radio goes idle long enough to detect it.
41147
41148 commit 0e7abc9fedec568b431c983d3df1b0b29f4f10e3
41149 Author: Keith Packard <keithp@keithp.com>
41150 Date:   Sun Apr 4 16:32:04 2010 -0700
41151
41152     Use RXTX for serial comm. Add logdir preference saving
41153
41154 commit c66eebad323e4572bb7cc23bc476ee144f03e9b8
41155 Author: Bdale Garbee <bdale@gag.com>
41156 Date:   Sat Apr 3 08:02:44 2010 -0600
41157
41158     rewrite urls in docbook format
41159
41160 commit 3d34c488c5b71020d86f83156fd821fd860bf214
41161 Author: Keith Packard <keithp@keithp.com>
41162 Date:   Sat Apr 3 00:02:44 2010 -0700
41163
41164     Make .jar file
41165
41166 commit 4bea4c327e002ce8f88218f0d840af7c1521bc35
41167 Author: Keith Packard <keithp@keithp.com>
41168 Date:   Fri Apr 2 23:25:02 2010 -0700
41169
41170     Remove unused cell renderer class
41171
41172 commit 4ad062969ae8a608b8428620579bbe114e580a11
41173 Author: Keith Packard <keithp@keithp.com>
41174 Date:   Fri Apr 2 23:20:38 2010 -0700
41175
41176     Remove GPS data missing from skytraq. Save max height/accel/speed
41177
41178 commit ebd49d4ec6b0b60c85b2de45cfe2e36add8fe9bf
41179 Author: Keith Packard <keithp@keithp.com>
41180 Date:   Fri Apr 2 23:05:40 2010 -0700
41181
41182     Report current gps nsat, not last locked nsat
41183
41184 commit 3f9b66b307ee88172151e3bee58e50f5acbde109
41185 Author: Keith Packard <keithp@keithp.com>
41186 Date:   Fri Apr 2 23:00:30 2010 -0700
41187
41188     Clean up GPS data formatting
41189
41190 commit 9cc48698ec14c34d437baad7b6540edc31e9741c
41191 Author: Keith Packard <keithp@keithp.com>
41192 Date:   Fri Apr 2 22:47:40 2010 -0700
41193
41194     Fix state updates
41195
41196 commit 6d523ee4dad3b9890d3cf05852459101fe7e26ea
41197 Author: Keith Packard <keithp@keithp.com>
41198 Date:   Fri Apr 2 21:48:41 2010 -0700
41199
41200     Fix status update
41201
41202 commit caa0bf49668344937483190d1c258bfa32971d19
41203 Author: Keith Packard <keithp@keithp.com>
41204 Date:   Fri Apr 2 21:44:00 2010 -0700
41205
41206     Fix up table formatting
41207
41208 commit a579402f428dd6a0529505069d1846f70b83ab5d
41209 Author: Keith Packard <keithp@keithp.com>
41210 Date:   Fri Apr 2 18:10:59 2010 -0700
41211
41212     Display table of flight info. gps is not working yet though
41213
41214 commit 65079f84ea64220fa928c3ad96652fed159bf74b
41215 Author: Keith Packard <keithp@keithp.com>
41216 Date:   Fri Apr 2 16:07:40 2010 -0700
41217
41218     Steal C code from ao-view
41219
41220 commit 02f2be90879b682b6e648cf2debc83223d127b9d
41221 Author: Keith Packard <keithp@keithp.com>
41222 Date:   Fri Apr 2 13:37:52 2010 -0700
41223
41224     Add telem parsing code
41225
41226 commit 8c600abf87c95f8f214b5e56ff6eab955795dff5
41227 Author: Bdale Garbee <bdale@gag.com>
41228 Date:   Thu Apr 1 23:56:47 2010 -0600
41229
41230     crudely incorporate "day in the life" info from web page
41231
41232 commit 53ca3f98aeb70cb780031fee788de950e4388cf6
41233 Author: Bdale Garbee <bdale@gag.com>
41234 Date:   Thu Apr 1 23:39:42 2010 -0600
41235
41236     tweak copyright assertion
41237
41238 commit 6454e309858aeef7912e862de8632618d89b4205
41239 Author: Keith Packard <keithp@keithp.com>
41240 Date:   Thu Apr 1 18:31:14 2010 -0700
41241
41242     Fix windows install file
41243
41244 commit 584ab100640a07dec6e06829e73b7260d17d2232
41245 Author: Keith Packard <keithp@keithp.com>
41246 Date:   Thu Apr 1 18:30:56 2010 -0700
41247
41248     Add Windows install .inf file
41249
41250 commit a06bee96e648d9ded8776f3d6cba9505e7be1a60
41251 Author: Keith Packard <keithp@keithp.com>
41252 Date:   Wed Mar 31 23:05:03 2010 -0700
41253
41254     Add telemetry data parsing code
41255
41256 commit 7f233369e32c3254165ee251df0a3dbc21ea5a29
41257 Author: Keith Packard <keithp@keithp.com>
41258 Date:   Wed Mar 31 13:49:54 2010 -0700
41259
41260     Start adding java-based UI
41261
41262 commit 76768804e68ed09421d7a48cb0b390f102ce2d76
41263 Author: Bdale Garbee <bdale@gag.com>
41264 Date:   Tue Mar 30 23:26:35 2010 -0600
41265
41266     make lintian happy
41267
41268 commit eb3cc3e9b60ec23acbb7d797affa743d671801ab
41269 Author: Bdale Garbee <bdale@gag.com>
41270 Date:   Tue Mar 30 23:19:48 2010 -0600
41271
41272     update changelogs for Debian build
41273
41274 commit 00f49c8fb0aa38331360bdb85c32bcebe60dcdc3
41275 Author: Bdale Garbee <bdale@gag.com>
41276 Date:   Tue Mar 30 23:19:07 2010 -0600
41277
41278     fix typo
41279
41280 commit f03ed0876c67b58624abf0c14bf73444b0322d3c
41281 Author: Bdale Garbee <bdale@gag.com>
41282 Date:   Tue Mar 30 23:18:37 2010 -0600
41283
41284     update changelogs for Debian build
41285
41286 commit b41e617080fe825f7810ee5eee52ea37f7618ec6
41287 Merge: 28e40cc df7bda1
41288 Author: Bdale Garbee <bdale@gag.com>
41289 Date:   Tue Mar 30 23:15:32 2010 -0600
41290
41291     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
41292     
41293     Conflicts:
41294         ChangeLog
41295
41296 commit 28e40ccfcd80ab8764d4aa235257cea4d193a0c1
41297 Author: Bdale Garbee <bdale@gag.com>
41298 Date:   Tue Mar 30 23:14:47 2010 -0600
41299
41300     update changelogs for Debian build
41301
41302 commit 20d4d410e0fc04fe192e309811eed6c0194fa5a8
41303 Author: Bdale Garbee <bdale@gag.com>
41304 Date:   Tue Mar 30 23:11:40 2010 -0600
41305
41306     initial harness for documentation
41307
41308 commit 9801ff7de21027935f52ccabaa3ff157e22d21ce
41309 Author: Bdale Garbee <bdale@gag.com>
41310 Date:   Mon Mar 15 12:04:18 2010 -0600
41311
41312     move gbp.conf into debian/
41313
41314 commit df7bda1f32b0049c3878c325ea0b55999f3980e3
41315 Merge: 23da4f3 a7042fe
41316 Author: Keith Packard <keithp@keithp.com>
41317 Date:   Fri Mar 12 10:38:26 2010 -0800
41318
41319     Merge remote branch 'origin/master'
41320
41321 commit 23da4f3bcdd1d780c9e1f6b68ad2fb309fcae6ba
41322 Author: Keith Packard <keithp@keithp.com>
41323 Date:   Fri Mar 12 10:37:32 2010 -0800
41324
41325     Document the ao-dumplog '--remote' flag for radio-link downloads
41326     
41327     The --remote (or -R) flag uses TeleDongle to fetch data over the radio
41328     command link from TeleMetrum. It's been there for a while, but the man
41329     page failed to mention it.
41330     
41331     Signed-off-by: Keith Packard <keithp@keithp.com>
41332
41333 commit 93df98898f8cd199ae13158bc4f65e3494c954ad
41334 Author: Keith Packard <keithp@keithp.com>
41335 Date:   Fri Mar 12 10:35:12 2010 -0800
41336
41337     Round radio calibration value instead of truncating
41338     
41339     The radio calibration function in the bring-up code was truncating the
41340     radio calibration value which caused the resulting frequency to
41341     always measure above the target frequency, instead of trying to get as
41342     close as possible. This change will result in a closer frequency
41343     match, but may sometimes be below the target frequency.
41344     
41345     Signed-off-by: Keith Packard <keithp@keithp.com>
41346
41347 commit a7042fe7d065d1da1252be5ad43e3c9856214dc8
41348 Author: Bdale Garbee <bdale@Deborah.(none)>
41349 Date:   Fri Mar 5 19:11:11 2010 -0800
41350
41351     update changelogs for Debian build
41352
41353 commit eda5e1166a97766aa22561beaa1086ba4e19ee16
41354 Author: Bdale Garbee <bdale@gag.com>
41355 Date:   Thu Mar 4 17:33:39 2010 -0700
41356
41357     update changelogs for Debian build
41358
41359 commit 6e61170d42936c18cd6efba6f4c14af616a30745
41360 Author: Keith Packard <keithp@keithp.com>
41361 Date:   Sun Feb 28 18:24:46 2010 -0800
41362
41363     Need to duplicate new altitude conversion code in aoview.
41364     
41365     Altitude conversion is now done with a smaller table and interpolation
41366     instead of a giant table.
41367     
41368     Signed-off-by: Keith Packard <keithp@keithp.com>
41369
41370 commit e4e17e6d3844ae682a0e7a9469a522359bac77b6
41371 Author: Bdale Garbee <bdale@gag.com>
41372 Date:   Sat Feb 27 17:36:13 2010 -0700
41373
41374     update changelogs for Debian build
41375
41376 commit a1478f65538fdaac7b58ffbd958a035b74956099
41377 Merge: 901fce5 bbf8c9f
41378 Author: Keith Packard <keithp@keithp.com>
41379 Date:   Sat Feb 27 15:19:33 2010 -0800
41380
41381     Merge remote branch 'origin/master'
41382
41383 commit 901fce5fe3e2762406079ecaa787612b5ed4b34a
41384 Author: Keith Packard <keithp@keithp.com>
41385 Date:   Sat Feb 27 15:18:47 2010 -0800
41386
41387     Add .gitignore for ao-bringup
41388     
41389     Signed-off-by: Keith Packard <keithp@keithp.com>
41390
41391 commit 7aab73a265841aac817ea34235dd1eb819debf76
41392 Author: Keith Packard <keithp@keithp.com>
41393 Date:   Sat Feb 27 15:14:04 2010 -0800
41394
41395     Fix up LED colors for each product.
41396     
41397     Different products assign different color LEDs to the two available
41398     LED drivers (P1_0, P1_1). Make the LED color pin assignments
41399     per-product (in ao_pins.h), then deal with not always having a green LED.
41400     
41401     Signed-off-by: Keith Packard <keithp@keithp.com>
41402
41403 commit 1d6d8d76ec65373ffee70add75d183f5c4168f61
41404 Author: Keith Packard <keithp@keithp.com>
41405 Date:   Sat Feb 27 15:11:44 2010 -0800
41406
41407     Eliminate deadlock when writing config from radio link
41408     
41409     Writing the 'Saved\r\n' string would fill the packet buffer and cause
41410     a flush to occur, which would need to wait for the radio link to
41411     receive and transmit a packet. The radio link always re-fetches the
41412     radio channel number when lighting up the radio, so it need to look in
41413     the config space. If the config mutex was held by the config writing
41414     process while the radio was trying to get the channel number, then
41415     we'd get a deadlock.
41416     
41417     Signed-off-by: Keith Packard <keithp@keithp.com>
41418
41419 commit f1956ebadd7bf46b84a05a0c383b6404ca26b344
41420 Author: Keith Packard <keithp@keithp.com>
41421 Date:   Sat Feb 27 15:10:16 2010 -0800
41422
41423     Leave .ihx files in the build directory too - easier to debug that way
41424     
41425     sdcdb wants the .ihx and .cdb files in the same directory, so humor it
41426     by copying the .ihx files to the src directory instead of moving them.
41427     
41428     Signed-off-by: Keith Packard <keithp@keithp.com>
41429
41430 commit bbf8c9f1748af3f1fac08ddf80ae98da2e9b5727
41431 Author: Bdale Garbee <bdale@gag.com>
41432 Date:   Fri Feb 26 15:21:12 2010 -0700
41433
41434     create a turn on script for lighting up TeleDongle v0.2 boards
41435
41436 commit 461d4a1948e112ec7353caf88967391d876469dd
41437 Author: Keith Packard <keithp@keithp.com>
41438 Date:   Fri Feb 26 10:33:13 2010 -0800
41439
41440     Add LED test
41441
41442 commit 5d7a3a5fbc0af4621c67a6fd51a9c9d5ae688fa5
41443 Author: Keith Packard <keithp@keithp.com>
41444 Date:   Thu Feb 25 16:40:13 2010 -0800
41445
41446     Fix and document the ao-rawload --run flag
41447     
41448     This allows ram-based programs to be loaded and executed easily.
41449     
41450     Signed-off-by: Keith Packard <keithp@keithp.com>
41451
41452 commit 1e60deca147c85a064719dfad14ccabd1049bbbd
41453 Author: Keith Packard <keithp@keithp.com>
41454 Date:   Thu Feb 25 16:33:34 2010 -0800
41455
41456     Allow product names to have suffixes (like board revisions)
41457     
41458     When looking for a board by product name, just look at the prefix of
41459     the name instead of requiring an exact match. This will allow products
41460     to have board version suffixes.
41461     
41462     Signed-off-by: Keith Packard <keithp@keithp.com>
41463
41464 commit f4d5790a284e2d02dd7568fbca90402fa5ed1aea
41465 Author: Keith Packard <keithp@keithp.com>
41466 Date:   Thu Feb 25 16:32:57 2010 -0800
41467
41468     Add ao_radio_xmit to help test boards without flashing them.
41469     
41470     Signed-off-by: Keith Packard <keithp@keithp.com>
41471
41472 commit d7d551b0078acb1596a9b9023c3df6dbfa46213c
41473 Author: Bdale Garbee <bdale@gag.com>
41474 Date:   Wed Feb 24 17:30:23 2010 -0700
41475
41476     update changelogs for Debian build
41477
41478 commit 2f45953ee54034209a23c254e65da36e44cf075f
41479 Author: Bdale Garbee <bdale@gag.com>
41480 Date:   Wed Feb 24 17:29:47 2010 -0700
41481
41482     un-muck changelog
41483
41484 commit 540f86678853e7ea80ae91f3f2ec0ec88c5b1ca7
41485 Author: Bdale Garbee <bdale@gag.com>
41486 Date:   Wed Feb 24 17:27:51 2010 -0700
41487
41488     debugging
41489
41490 commit cdccd92f6ed97be7385e84de5694064cb8f43946
41491 Author: Bdale Garbee <bdale@gag.com>
41492 Date:   Wed Feb 24 17:25:28 2010 -0700
41493
41494     conditionalize use of git on executability of /usr/bin/git binary
41495
41496 commit 54dd7a200e6956aace5a580d4c4d6a10a13c654b
41497 Author: Bdale Garbee <bdale@gag.com>
41498 Date:   Wed Feb 24 17:22:45 2010 -0700
41499
41500     update changelogs for Debian build
41501
41502 commit 4b6b28530206c6fdbe46699b81746fbbcab5b148
41503 Author: Bdale Garbee <bdale@gag.com>
41504 Date:   Wed Feb 24 17:22:20 2010 -0700
41505
41506     see if this works
41507
41508 commit c74958d3e8c5ce8006a9f9f6853238fce0c77432
41509 Author: Bdale Garbee <bdale@gag.com>
41510 Date:   Wed Feb 24 17:13:29 2010 -0700
41511
41512     move git-using variable declaration into the prebuild target
41513
41514 commit cf091a7252eba09902a42a3cfe7b4d6a343907ce
41515 Author: Bdale Garbee <bdale@gag.com>
41516 Date:   Wed Feb 24 16:44:44 2010 -0700
41517
41518     update changelogs for Debian build
41519
41520 commit deccc10f0305c0cd02bf6317d6dc9d2ae38c3dac
41521 Author: Bdale Garbee <bdale@gag.com>
41522 Date:   Wed Feb 24 16:43:32 2010 -0700
41523
41524     add gawk as a build dependency since strtonum is a gawk extension
41525
41526 commit ac45da6e61597dcdb119b976f7301b2cc7fdced4
41527 Author: Bdale Garbee <bdale@gag.com>
41528 Date:   Wed Feb 24 14:57:26 2010 -0700
41529
41530     update changelogs for Debian build
41531
41532 commit 24912821b3230b8357b9e0094cd69fa0bccc5513
41533 Author: Bdale Garbee <bdale@gag.com>
41534 Date:   Wed Feb 24 14:53:27 2010 -0700
41535
41536     update changelogs for Debian build
41537
41538 commit 82fdbfe1229d1ea5e6906ea240d54b3da73d9a69
41539 Author: Keith Packard <keithp@keithp.com>
41540 Date:   Sat Feb 20 21:35:43 2010 -0800
41541
41542     Must install .map files for ao-load to work
41543     
41544     ao-load uses the .map files to rewrite the serial number and other
41545     config parameters into the program flash.
41546     
41547     Signed-off-by: Keith Packard <keithp@keithp.com>
41548
41549 commit a5215c2bd9249a285fc834db0c453fb3e7daed87
41550 Author: Keith Packard <keithp@keithp.com>
41551 Date:   Sat Feb 20 21:20:05 2010 -0800
41552
41553     Add back stack size checking to altos linking phase
41554     
41555     This verifies that the stack start specified during the compile
41556     will work with the resulting program
41557     
41558     Signed-off-by: Keith Packard <keithp@keithp.com>
41559
41560 commit 18eeb79026f7e5c54bf99435537c024427011a36
41561 Author: Keith Packard <keithp@keithp.com>
41562 Date:   Sat Feb 20 21:05:45 2010 -0800
41563
41564     Quiet make output.
41565     
41566     This borrows ideas from the notmuch project to reduce the command line
41567     clutter seen when compiling or linking stuff.
41568     
41569     Signed-off-by: Keith Packard <keithp@keithp.com>
41570
41571 commit 004c2a9b7a4b44ef71ca60482573e8e9d8c6ce93
41572 Author: Keith Packard <keithp@keithp.com>
41573 Date:   Sat Feb 20 20:36:08 2010 -0800
41574
41575     Update .gitignore files
41576
41577 commit 84c93bb2fc4558a5e4654794ba90e730a84eaf67
41578 Author: Keith Packard <keithp@keithp.com>
41579 Date:   Sat Feb 20 20:22:16 2010 -0800
41580
41581     Change altos build process to support per-product compile-time changes
41582     
41583     This creates per-product subdirectories and recompiles everything for
41584     each product, allowing per-product compile-time changes for things
41585     like peripheral pin assignments and attached serial devices.
41586     
41587     Signed-off-by: Keith Packard <keithp@keithp.com>
41588
41589 commit fd0a42e0e96dcb8ecc9e999f70bcf70692692af9
41590 Author: Keith Packard <keithp@keithp.com>
41591 Date:   Sat Feb 20 20:21:07 2010 -0800
41592
41593     Change barometer conversion code to shrink conversion table
41594
41595 commit 876e9a10b9096ead85fbe08ec9a6a0329cf7cbd4
41596 Author: Keith Packard <keithp@keithp.com>
41597 Date:   Sat Feb 13 16:42:27 2010 -0800
41598
41599     Log GPS data on pad after boost detect.
41600     
41601     This wakes up the two GPS reporting tasks and gets them to report out
41602     any existing GPS data to the log file. To make sure the timestamps in
41603     that GPS data are accurate, this also records GPS time on receipt of
41604     the GPS data instead of when that is logged.
41605     
41606     Signed-off-by: Keith Packard <keithp@keithp.com>
41607
41608 commit c83615567b4567f3dc45a7f7b894943b45fbb65c
41609 Author: Keith Packard <keithp@keithp.com>
41610 Date:   Sun Feb 7 00:25:22 2010 -0800
41611
41612     Pull in a bit more data for filtering the start of the boost
41613
41614 commit f8967607b3dda0c0ce7afe8bb077da2da5ed3dcd
41615 Author: Keith Packard <keithp@keithp.com>
41616 Date:   Sun Feb 7 00:24:56 2010 -0800
41617
41618     Compute daytime using GPS as time base
41619
41620 commit 2a6350149407c7d2e7d143906c40c5e331248aeb
41621 Author: Keith Packard <keithp@keithp.com>
41622 Date:   Thu Feb 11 18:48:56 2010 -0800
41623
41624     Missing ao_mutex_put in gps_dump
41625
41626 commit 9856b7c4397afcecc8f541af9a83824e817b3612
41627 Author: Keith Packard <keithp@keithp.com>
41628 Date:   Sun Jan 10 16:31:50 2010 -0800
41629
41630     Switch to using internal cc1111 temperature sensor
41631     
41632     v0.2 has no temperature sensor, and several of the v0.1 boards didn't
41633     get a temperature sensor loaded. Use the internal temperature sensor
41634     on the cc1111 in all cases instead.
41635     
41636     Signed-off-by: Keith Packard <keithp@keithp.com>
41637
41638 commit 0c2533be15858774ef9381aa8c8344356fd5b971
41639 Author: Keith Packard <keithp@keithp.com>
41640 Date:   Sat Jan 9 22:06:19 2010 -0800
41641
41642     Force idle mode by shorting the SPI clock to ground at boot time.
41643     
41644     This allows you to override the flight mode detection code in case the
41645     accelerometer calibration is broken somehow. Hold the SPI clock shoted
41646     to ground until the LED comes on, then remove it.
41647     
41648     Signed-off-by: Keith Packard <keithp@keithp.com>
41649
41650 commit 28346736a7799c0767e54511d9949cd61d35e471
41651 Author: Keith Packard <keithp@keithp.com>
41652 Date:   Sat Jan 9 20:57:48 2010 -0800
41653
41654     Add simple gps dump command 'g'
41655     
41656     This just dumps out the data in a very simple format to verify the GPS
41657     receiver.
41658     
41659     Signed-off-by: Keith Packard <keithp@keithp.com>
41660
41661 commit a6082a8b4501ac4cb18584ace1f0c40e088e5484
41662 Author: Keith Packard <keithp@keithp.com>
41663 Date:   Sat Jan 9 20:57:29 2010 -0800
41664
41665     Remove flash debugging printfs
41666     
41667     Signed-off-by: Keith Packard <keithp@keithp.com>
41668
41669 commit 05bb953830604721c9a49dd56256b86f3666b5ff
41670 Author: Keith Packard <keithp@keithp.com>
41671 Date:   Sat Jan 9 20:42:57 2010 -0800
41672
41673     Don't set ao_flash_setup_done until we're actually done.
41674     
41675     Because we're accessing this variable outside of the mutex, we need to
41676     make sure it isn't set until the data it covers has been initialized.
41677     
41678     Signed-off-by: Keith Packard <keithp@keithp.com>
41679
41680 commit 327e5e782958e516a7b7a786ab6c176b0decb8b8
41681 Author: Keith Packard <keithp@keithp.com>
41682 Date:   Sat Jan 9 20:04:42 2010 -0800
41683
41684     Dump config block from read/write config and flash_status commands
41685
41686 commit 05e5bb2d330b755967d06fb859585c81f5f5fbb5
41687 Author: Keith Packard <keithp@keithp.com>
41688 Date:   Sat Jan 9 19:46:46 2010 -0800
41689
41690     Dump more flash parameters for the flash_status command
41691
41692 commit d4c8895b349998e02e03ed83466a0ca7afb3d99b
41693 Author: Keith Packard <keithp@keithp.com>
41694 Date:   Sat Jan 9 17:57:52 2010 -0800
41695
41696     Add 'f' command to display flash status register contents
41697     
41698     Signed-off-by: Keith Packard <keithp@keithp.com>
41699
41700 commit c1334f712f01543adb10809bc1a3ca120e27290b
41701 Author: Keith Packard <keithp@keithp.com>
41702 Date:   Sat Jan 9 09:55:04 2010 -0800
41703
41704     Add at45db161d.h header file for new flash part.
41705     
41706     Forgot to add this when I added the driver.
41707     
41708     Signed-off-by: Keith Packard <keithp@keithp.com>
41709
41710 commit a0d4c1b06d27e850d233f8ddf8fe32912bf0ec8f
41711 Author: Keith Packard <keithp@keithp.com>
41712 Date:   Sat Jan 9 01:29:41 2010 -0800
41713
41714     Remove green LED and temp sensor from v0.2 code
41715     
41716     Signed-off-by: Keith Packard <keithp@keithp.com>
41717
41718 commit dc8d18736239b14c2ec48a40a01515912c5c25e6
41719 Author: Keith Packard <keithp@keithp.com>
41720 Date:   Sat Jan 9 01:22:06 2010 -0800
41721
41722     Add AT45DBxx1D driver
41723     
41724     This driver supports the AT45DB011D through AT45DB321D DataFlash
41725     parts as found in TeleMetrum v0.2
41726     
41727     Signed-off-by: Keith Packard <keithp@keithp.com>
41728
41729 commit 3bab7e66d25988f5d63ec139c8814a85b983f8f3
41730 Author: Keith Packard <keithp@keithp.com>
41731 Date:   Sat Dec 19 20:32:18 2009 -0800
41732
41733     Remove dbg driver code from telemetrum/teledongle
41734     
41735     The only board with debug outputs is the TI dongle at this point, so
41736     the debug modules were disabled in TM and TD some time
41737     ago. Unfortunately, the code was not removed then.
41738     
41739     Signed-off-by: Keith Packard <keithp@keithp.com>
41740
41741 commit eddb82390a0ecb07ef83c04861993842906b03ab
41742 Author: Keith Packard <keithp@keithp.com>
41743 Date:   Sat Dec 19 15:31:36 2009 -0800
41744
41745     Ensure that ao_alarm waits at least the specified time
41746     
41747     Because the timer tick may happen soon, it's important to delay by
41748     another tick to ensure that we don't wake up early.
41749     
41750     Signed-off-by: Keith Packard <keithp@keithp.com>
41751
41752 commit 598d168bd6552c3756e4b0267de44147eadab9f6
41753 Author: Keith Packard <keithp@keithp.com>
41754 Date:   Sat Dec 19 14:03:11 2009 -0800
41755
41756     Disable monitor mode before attempting radio test.
41757     
41758     If monitor mode is left active, then the radio lock will not be able
41759     to be acquired for the radio test.
41760     
41761     Signed-off-by: Keith Packard <keithp@keithp.com>
41762
41763 commit d4cf1446680d8b47396bcda338e8df7af395d102
41764 Author: Bdale Garbee <bdale@gag.com>
41765 Date:   Sat Dec 19 13:53:38 2009 -0700
41766
41767     update changelogs for Debian build
41768
41769 commit 10d1bbcd9709a5eee8d50989215242b16feb7232
41770 Author: Keith Packard <keithp@keithp.com>
41771 Date:   Sat Dec 19 11:34:16 2009 -0800
41772
41773     Use ao_radio_get/ao_radio_put in packet code.
41774     
41775     The ao_radio_get function both acquires the mutex *and* configures the
41776     radio channel and frequency. Failing to use this in the packet code
41777     would leave the radio frequency unconfigured.
41778     
41779     Signed-off-by: Keith Packard <keithp@keithp.com>
41780
41781 commit a15abc1882a3bdd2c980eed169f3b80337528390
41782 Author: Bdale Garbee <bdale@gag.com>
41783 Date:   Sat Dec 19 12:15:29 2009 -0700
41784
41785     update changelogs for Debian build
41786
41787 commit bbb152c712801653374a8f82869e2e8bf41f7279
41788 Author: Bdale Garbee <bdale@gag.com>
41789 Date:   Sat Dec 19 12:05:40 2009 -0700
41790
41791     update changelogs for Debian build
41792
41793 commit 7ac8efea5d60b81adccdc1e38ac4c13facfae7c9
41794 Author: Keith Packard <keithp@keithp.com>
41795 Date:   Tue Dec 15 23:58:29 2009 -0800
41796
41797     Add --cal to man page
41798
41799 commit 5481082b18226a0de6b377215b3b330bdbc4a6c6
41800 Author: Keith Packard <keithp@keithp.com>
41801 Date:   Sat Dec 5 19:50:38 2009 -0800
41802
41803     Allow radio calibration to be set from ao-load
41804     
41805     This moves the initial radio calibration value into const memory where
41806     it will be used if no eeprom configuration value is available, either
41807     on an unprogrammed board with eeprom or a device without an eeprom.
41808     
41809     Signed-off-by: Keith Packard <keithp@keithp.com>
41810
41811 commit 46f03ab3145a61139c8ca6fc99e8f2798728b5a9
41812 Author: Keith Packard <keithp@keithp.com>
41813 Date:   Sat Dec 5 15:36:12 2009 -0800
41814
41815     Re-order config values. Change frequency to cal
41816     
41817     Place more often used values at top, and consistently call the radio
41818     value 'calibration' instead of 'frequency'.
41819     
41820     Signed-off-by: Keith Packard <keithp@keithp.com>
41821
41822 commit bf29a62532fec12e6af2d2f3a6624882c863e933
41823 Author: Bdale Garbee <bdale@gag.com>
41824 Date:   Sat Dec 5 11:03:42 2009 -0700
41825
41826     update changelogs for Debian build
41827
41828 commit cd49847f3125df1733f298b56a43e8027ab5ce05
41829 Author: Keith Packard <keithp@keithp.com>
41830 Date:   Fri Dec 4 23:38:26 2009 -0800
41831
41832     Add radio calibration configuration.
41833     
41834     The crystal we use is only good for 20ppm, which generates a fairly
41835     significant error bounds at our RF frequency. This commit adds a
41836     configuration variable that sets the RF frequency control variable so
41837     that the output frequency can be adjusted.
41838     
41839     Signed-off-by: Keith Packard <keithp@keithp.com>
41840
41841 commit c671a3f31f54715284beef5baa4a72ca922e4018
41842 Author: Keith Packard <keithp@keithp.com>
41843 Date:   Fri Dec 4 23:36:54 2009 -0800
41844
41845     Make ao_cmd_decimal produce both 32 and 16 bit values.
41846     
41847     ao_cmd_lex_u32 is produced in addition to ao_cmd_lex_i so that
41848     functions can easily read 32-bit values from the command line.
41849     
41850     Signed-off-by: Keith Packard <keithp@keithp.com>
41851
41852 commit e6d6ad66ce177eb6e49eaa04b1ecc6426f4bbdbf
41853 Author: Keith Packard <keithp@keithp.com>
41854 Date:   Fri Dec 4 23:35:40 2009 -0800
41855
41856     Remove send_serial and serial_baud commands.
41857     
41858     No longer useful, and they take up space.
41859     
41860     Signed-off-by: Keith Packard <keithp@keithp.com>
41861
41862 commit ce7325cefbbe91054c1e8174cf40a6c687f6694b
41863 Author: Bdale Garbee <bdale@gag.com>
41864 Date:   Fri Dec 4 21:02:07 2009 -0700
41865
41866     update changelogs for Debian build
41867
41868 commit 9a1d7dd78c07d18954ef620b6ed25d6701df21e2
41869 Author: Keith Packard <keithp@keithp.com>
41870 Date:   Fri Dec 4 14:35:39 2009 -0800
41871
41872     Change default callsign to "N0CALL"
41873
41874 commit 291e2004e77debdc1543912cf11043c849305de8
41875 Author: Bdale Garbee <bdale@gag.com>
41876 Date:   Thu Nov 26 11:18:37 2009 -0700
41877
41878     update changelogs for Debian build
41879
41880 commit 40533095a96b6c6364eebdc4b7d53c4eabe72e9a
41881 Author: Bdale Garbee <bdale@gag.com>
41882 Date:   Thu Nov 26 11:16:04 2009 -0700
41883
41884     update changelogs for Debian build
41885
41886 commit ab1075e7219b02258c1613d93379582be4168947
41887 Author: Bdale Garbee <bdale@gag.com>
41888 Date:   Thu Nov 26 11:15:13 2009 -0700
41889
41890     change home URL in control file to be the AltOS page
41891
41892 commit d34dcc5f3616e59ee90ed172770fe2a3eb1e0cac
41893 Author: Bdale Garbee <bdale@gag.com>
41894 Date:   Thu Nov 26 10:40:07 2009 -0700
41895
41896     fix absolute path in debian/dirs, add Suggests for slim-altusmetrum
41897
41898 commit ea40561b36519a5dcabedabe18672b79ea5e9993
41899 Author: Bdale Garbee <bdale@gag.com>
41900 Date:   Sun Nov 22 10:18:44 2009 -0700
41901
41902     update changelogs for Debian build
41903
41904 commit d6ba07e885bdc62ba64719c9d8cc42fcecbcb09d
41905 Author: Keith Packard <keithp@keithp.com>
41906 Date:   Sun Nov 22 01:10:44 2009 -0800
41907
41908     Automatically extract flight number for eeprom and telem filenames.
41909     
41910     Extract flight number from either telemetry or eeprom files and use
41911     that in the resulting filenames. To ensure that files remain unique,
41912     add a new field, -seq-%03d. This is appended only when the sequence
41913     number is non-zero as it shouldn't occur in normal usage.
41914     
41915     This also eliminates some duplicate filename creation code in the
41916     library and aoview sources.
41917     
41918     Signed-off-by: Keith Packard <keithp@keithp.com>
41919
41920 commit 06cebd1026dc1bd6ee51526fa2d02905df3b3b37
41921 Author: Keith Packard <keithp@keithp.com>
41922 Date:   Sun Nov 22 00:52:58 2009 -0800
41923
41924     ao-postflight: don't try to use missing gps sat data
41925     
41926     Signed-off-by: Keith Packard <keithp@keithp.com>
41927
41928 commit a9ada1b538af3308e1b22bd024d9204521184173
41929 Author: Keith Packard <keithp@keithp.com>
41930 Date:   Sat Nov 21 22:12:21 2009 -0800
41931
41932     ao-postflight: compute barometric alt for each GPS position
41933     
41934     Print that to the --gps file, and use that in the --kml file for the
41935     altitude. Gives a very different picture of our flight tracks,
41936     presumably far more accurate (at least in altitude).
41937     
41938     Signed-off-by: Keith Packard <keithp@keithp.com>
41939
41940 commit b84b634d9ae8ce6ab1c02833a3ed8514404e1ca3
41941 Author: Keith Packard <keithp@keithp.com>
41942 Date:   Sat Nov 21 22:11:45 2009 -0800
41943
41944     Don't crash if --plot isn't passed on ao-postflight command line
41945     
41946     Crashing is not nice.
41947     
41948     Signed-off-by: Keith Packard <keithp@keithp.com>
41949
41950 commit 2d77c18b15834046b7b79d49d87211828f2409e9
41951 Author: Keith Packard <keithp@keithp.com>
41952 Date:   Sat Nov 21 21:10:09 2009 -0800
41953
41954     Convert telemetry file GPS satellite information in cc_log_read
41955     
41956     The satellite info wasn't being correctly converted from telemetry
41957     files to the data log structure, so ao-postflight was not seeing it.
41958     
41959     Signed-off-by: Keith Packard <keithp@keithp.com>
41960
41961 commit 1e7fb61700f1f6f2ed5fdbc4380d7187b0cd187b
41962 Author: Keith Packard <keithp@keithp.com>
41963 Date:   Sat Nov 21 21:09:03 2009 -0800
41964
41965     Fix --plot arg handling. Add -all option.
41966     
41967     The --plot file name handing is special as the library wants a
41968     filename instead of a stdio file pointer.
41969     
41970     Add a --all option that just creates all of the possible outputs.
41971     
41972     Signed-off-by: Keith Packard <keithp@keithp.com>
41973
41974 commit 199f0cecae22645140185238682b9e1aba0e5715
41975 Author: Keith Packard <keithp@keithp.com>
41976 Date:   Sat Nov 21 20:36:20 2009 -0800
41977
41978     Make TD print 0000-00-00 for invalid dates.
41979     
41980     This 'shouldn't' happen, but in case it does, I want to know about it.
41981     
41982     Signed-off-by: Keith Packard <keithp@keithp.com>
41983
41984 commit 238d03462a56dc1b7c871608cb00f961a88c1b97
41985 Author: Keith Packard <keithp@keithp.com>
41986 Date:   Sat Nov 21 20:35:22 2009 -0800
41987
41988     Make ao-postflight create filenames using input filenames.
41989     
41990     Instead of requiring the user to provide names for the various output
41991     options, just create them from the input name by replacing the extension.
41992     
41993     Signed-off-by: Keith Packard <keithp@keithp.com>
41994
41995 commit 1a3b4c02a01187f8b7b9a9c97712476d0007ab35
41996 Author: Keith Packard <keithp@keithp.com>
41997 Date:   Sat Nov 21 19:52:26 2009 -0800
41998
41999     Document ao-postflight --gps and --kml options.
42000     
42001     These were missing from the man page, but included in the --help output.
42002     
42003     Signed-off-by: Keith Packard <keithp@keithp.com>
42004
42005 commit 80b23f3044a654d61212891a61fadb8a3a4e5572
42006 Author: Keith Packard <keithp@keithp.com>
42007 Date:   Sat Nov 21 18:57:45 2009 -0800
42008
42009     Decode HDOP data from skytraq GPS
42010     
42011     The hdop data was getting dropped on the floor, but is rather useful
42012     when deciding if the GPS position is crazy or not. This reports HDOP *
42013     5 (giving a useful range of .2-50).
42014     
42015     Signed-off-by: Keith Packard <keithp@keithp.com>
42016
42017 commit 8f036ee7cd30ce3ed2e5cc8501914a4c19b73875
42018 Author: Bdale Garbee <bdale@gag.com>
42019 Date:   Fri Nov 20 13:19:02 2009 -0700
42020
42021     update changelogs for Debian build
42022
42023 commit 87e6f3e5c1688503ab8595912d8d6eb7139830b7
42024 Author: Keith Packard <keithp@keithp.com>
42025 Date:   Fri Nov 20 12:16:37 2009 -0800
42026
42027     Eliminate SiRF state values from ao-view.
42028     
42029     With Skytraq not having any visible GPS state information, just
42030     remove this from the display.
42031     
42032     Signed-off-by: Keith Packard <keithp@keithp.com>
42033
42034 commit 8065b8146a31438e66f83c13b99281ec47439a73
42035 Author: Keith Packard <keithp@keithp.com>
42036 Date:   Fri Nov 20 11:56:48 2009 -0800
42037
42038     Add GPS date/time output to ao-postflight.
42039     
42040     GPS date/time information was already being stored in the log, it just
42041     wasn't getting displayed by ao-postflight.
42042     
42043     Signed-off-by: Keith Packard <keithp@keithp.com>
42044
42045 commit 6894541e0ee144bfc689cc02d4ed333711d3b500
42046 Author: Keith Packard <keithp@keithp.com>
42047 Date:   Fri Nov 20 11:55:28 2009 -0800
42048
42049     Reduce igniter firing time from 500ms to 50ms.
42050     
42051     Given that the system will brown-out with the longer pulse, it doesn't
42052     make sense to even try; failure at 50ms probably indicates a short.
42053     
42054     Signed-off-by: Keith Packard <keithp@keithp.com>
42055
42056 commit b75aa1c825b84bd7fa1578320fbc7e904c373a7d
42057 Author: Bdale Garbee <bdale@gag.com>
42058 Date:   Thu Nov 19 21:43:13 2009 -0700
42059
42060     fix typo in comment
42061
42062 commit c2f661b75ec035f6a3f700962290ef297f9ab0af
42063 Author: Bdale Garbee <bdale@gag.com>
42064 Date:   Fri Nov 20 11:44:06 2009 -0700
42065
42066     update changelogs for Debian build
42067
42068 commit b0d7e3f9c9322542e9b649bb6ad7f7e5bb99dffa
42069 Author: Keith Packard <keithp@keithp.com>
42070 Date:   Sun Nov 15 16:20:18 2009 -0800
42071
42072     Stop using SiRF state info.
42073     
42074     With the switch to the skytraq GPS unit, we don't have the same level
42075     of detail in the GPS stream, so stop reporting that in the telemetry
42076     stream, in the UI and writing it to eeprom.
42077     
42078     Signed-off-by: Keith Packard <keithp@keithp.com>
42079
42080 commit 524665fc221b0d483453c67b7211e282cebc8980
42081 Author: Keith Packard <keithp@keithp.com>
42082 Date:   Sun Nov 15 16:04:41 2009 -0800
42083
42084     Add date to GPS data, captured from GPRMC packet.
42085     
42086     Pull the date out of the GPS stream and send it over the telemetry
42087     link and write it to the eeprom.
42088     
42089     Signed-off-by: Keith Packard <keithp@keithp.com>
42090
42091 commit 3ee279ba76c2a79d142c466f19ef758cf4c01d70
42092 Author: Keith Packard <keithp@keithp.com>
42093 Date:   Sun Nov 15 15:59:01 2009 -0800
42094
42095     Add flight number to telemetry stream.
42096     
42097     This makes it easier to tie the telemetry and eeprom files together as
42098     they're now both labeled with serial and flight numbers, which should
42099     be unique.
42100     
42101     Signed-off-by: Keith Packard <keithp@keithp.com>
42102
42103 commit 6391c89bd5b89f5f46255b8365c658a873e5959a
42104 Author: Keith Packard <keithp@keithp.com>
42105 Date:   Sun Nov 15 15:53:01 2009 -0800
42106
42107     Switch order of serial/flight in ao-postflight summary
42108
42109 commit 9b06e294e2777f69bcf5e98789c3f5477097d53b
42110 Author: Keith Packard <keithp@keithp.com>
42111 Date:   Sun Nov 15 15:51:58 2009 -0800
42112
42113     Enable telemetry receive in ao_view
42114
42115 commit 4cffc9c4b079e39c8196ddbaf91129cda6df7f8b
42116 Author: Keith Packard <keithp@keithp.com>
42117 Date:   Sat Nov 14 22:24:37 2009 -0800
42118
42119     Share telemetry parsing code in cc library.
42120     
42121     ao-view had a private copy of the telemetry parsing code which
42122     included the ability to parse the newer version of that file. Those
42123     changes have been moved to the library version and the private copy removed.
42124     
42125     Signed-off-by: Keith Packard <keithp@keithp.com>
42126
42127 commit 0e0db8ca3af4c07bae909938486766c646bf580b
42128 Author: Keith Packard <keithp@keithp.com>
42129 Date:   Sat Nov 14 22:24:09 2009 -0800
42130
42131     Provide a dummy 'uninstall' target in the src directory.
42132     
42133     Signed-off-by: Keith Packard <keithp@keithp.com>
42134
42135 commit 1c654a9369294c9b8066c33f91161d8005b96680
42136 Author: Keith Packard <keithp@keithp.com>
42137 Date:   Sat Nov 14 22:17:24 2009 -0800
42138
42139     Loosen tolerances for main->landed transition
42140     
42141     Detecting that the rocket has landed is required for the system to
42142     flush the eeprom log and re-enable the RDF beacon. This patch changes
42143     the landed state entry requirements for the accelerometer to require
42144     only that the accelerometer stay within a quarter of a g (down from
42145     1/10g) and changes the testing interval from 20 seconds to 5
42146     seconds.
42147     
42148     The requirement that the barometric altitude be within 1000m of the
42149     launch altitude and that the barometer change by no more than 0.05kPa
42150     are unchanged.
42151     
42152     Signed-off-by: Keith Packard <keithp@keithp.com>
42153
42154 commit 03092d1a72a9651711e22c58dca6d6aba5705c5e
42155 Author: Keith Packard <keithp@keithp.com>
42156 Date:   Sat Nov 14 16:35:12 2009 -0800
42157
42158     ao-postflight: fix sloppy gps sat data realloc code (was crashing).
42159     
42160     Realloc'ing the wrong data, and failing to set the realloc'ed size was
42161     causing ao-postflight to crash while reading long logs.
42162     
42163     Signed-off-by: Keith Packard <keithp@keithp.com>
42164
42165 commit adf656192441eb7f44792955c86e469145477e29
42166 Author: Keith Packard <keithp@keithp.com>
42167 Date:   Thu Nov 5 22:11:59 2009 -0800
42168
42169     Return radio to telemetry settings when packet system closed.
42170     
42171     To receive telemetry after disabling the packet system, the radio must
42172     be reconfigured for telemetry mode.
42173     
42174     Signed-off-by: Keith Packard <keithp@keithp.com>
42175
42176 commit 83afdbdc154fe013bfe35ce5ecf1d61570b04ed6
42177 Author: Keith Packard <keithp@keithp.com>
42178 Date:   Thu Nov 5 21:45:00 2009 -0800
42179
42180     Add reboot command.
42181     
42182     This resets the processor using the watchdog timer.
42183     
42184     Signed-off-by: Keith Packard <keithp@keithp.com>
42185
42186 commit 0358988ac0ee25a564d48af79b1c3fb0c0fe0a88
42187 Author: Keith Packard <keithp@keithp.com>
42188 Date:   Thu Nov 5 21:44:31 2009 -0800
42189
42190     Add Watchdog Timer Control register definitions
42191     
42192     Signed-off-by: Keith Packard <keithp@keithp.com>
42193
42194 commit 4114210e0b813f4af99d0cb7755ad2ac2c4b120e
42195 Author: Keith Packard <keithp@keithp.com>
42196 Date:   Thu Nov 5 21:43:21 2009 -0800
42197
42198     Move ao_match_word from ao_ignite.c to ao_cmd.c
42199     
42200     This is a generally useful command line utility.
42201     
42202     Signed-off-by: Keith Packard <keithp@keithp.com>
42203
42204 commit 5a79a04ddb0b3ee64de34e366f71a0f6db509c01
42205 Author: Keith Packard <keithp@keithp.com>
42206 Date:   Wed Nov 4 21:59:51 2009 -0800
42207
42208     Stop recording in ao-dumplog after receiving an invalid block
42209     
42210     If no samples in a block are valid, assume the flight log is over.
42211     
42212     Signed-off-by: Keith Packard <keithp@keithp.com>
42213
42214 commit 843ee489aac34ad6d81f55f1c85fb9eecc42d86b
42215 Author: Keith Packard <keithp@keithp.com>
42216 Date:   Wed Nov 4 21:59:12 2009 -0800
42217
42218     Flush pending input when switching to remote packet mode
42219     
42220     Any pending input would just confuse the application, so pull it off
42221     the link and dump it.
42222     
42223     Signed-off-by: Keith Packard <keithp@keithp.com>
42224
42225 commit 036400a2db303f3db3be7cc0426f88359c6bd2b1
42226 Author: Keith Packard <keithp@keithp.com>
42227 Date:   Wed Nov 4 21:42:51 2009 -0800
42228
42229     Explicitly use USB I/O routines in packet code
42230     
42231     Using the implicit stdio functions (putchar/getchar/flush) would
42232     result in essentially random redirection of each, depending on whether
42233     the packet code had characters available when getchar was called. This
42234     would cause lockups in putchar.
42235     
42236     Signed-off-by: Keith Packard <keithp@keithp.com>
42237
42238 commit 3ece984f4d72b4f720a5efdfaad7cff77a93d676
42239 Author: Keith Packard <keithp@keithp.com>
42240 Date:   Wed Nov 4 21:32:07 2009 -0800
42241
42242     In USB pollchar, wait for packet before re-checking USB out len
42243     
42244     This probably wouldn't actually cause a problem, but it seems more
42245     reliable to wait for a packet interrupt before re-reading the packet
42246     OUT len register. This could avoid spinning while waiting for a USB
42247     packet, which seems like a good thing.
42248     
42249     Signed-off-by: Keith Packard <keithp@keithp.com>
42250
42251 commit bc62bb254085cc705203b57260c04ac5e14c6611
42252 Author: Keith Packard <keithp@keithp.com>
42253 Date:   Wed Nov 4 21:29:37 2009 -0800
42254
42255     In packet master, move USB flush from packet thread to echo thread
42256     
42257     This keeps the packet thread from blocking on USB and also makes the
42258     flush happen after every packet (slightly more USB traffic, but
42259     packets are slow anyway).
42260     
42261     Signed-off-by: Keith Packard <keithp@keithp.com>
42262
42263 commit 27ebaf8e13aed06bb1ea6e770f767495a02be6c5
42264 Author: Keith Packard <keithp@keithp.com>
42265 Date:   Tue Nov 3 01:27:37 2009 -0800
42266
42267     Add ability to dump eeprom data over radio link.
42268     
42269     This adds a '-R' option to ao-dumplog to redirect the connection
42270     through a USB attached TeleDongle over the radio link to a remote
42271     TeleMetrum device.
42272     
42273     Signed-off-by: Keith Packard <keithp@keithp.com>
42274
42275 commit 1de322b960005c9a16051afa1881fadb00f4bcd6
42276 Author: Keith Packard <keithp@keithp.com>
42277 Date:   Tue Nov 3 00:40:38 2009 -0800
42278
42279     Pass accel calibration over telemetry stream. Telemetry data format change.
42280     
42281     This allows the ground station to convert the accelerometer sensor
42282     values into acceleration and speed data. This requires a new telemetry
42283     data structure, and so TeleMetrum and TeleDongle units must be updated
42284     synchronously. ao-view will parse either telemetry stream, and the
42285     serial format from TeleDongle now has a version number to allow for
42286     future changes.
42287     
42288     Signed-off-by: Keith Packard <keithp@keithp.com>
42289
42290 commit b529e5e8998702986909111a457f3ce9932e1ccf
42291 Author: Keith Packard <keithp@keithp.com>
42292 Date:   Mon Nov 2 23:48:29 2009 -0800
42293
42294     ao_flight_test was using accel value for pressure too
42295
42296 commit f57bea012d4fbca097df0d98fcd30eb4abd9701a
42297 Author: Keith Packard <keithp@keithp.com>
42298 Date:   Mon Nov 2 21:47:41 2009 -0800
42299
42300     Reformat ADC values to show all 16 bits
42301
42302 commit 79718e798e96567f0ba11c61f187e432fdcf95ee
42303 Author: Keith Packard <keithp@keithp.com>
42304 Date:   Mon Nov 2 21:48:16 2009 -0800
42305
42306     Remove "f" command
42307
42308 commit a4137263b69864c524d39c6ff88a0225fd06e79b
42309 Author: Keith Packard <keithp@keithp.com>
42310 Date:   Mon Nov 2 21:47:15 2009 -0800
42311
42312     Remove "d" command
42313
42314 commit 47f510464907d2b9488109c96ade87a41d878842
42315 Author: Keith Packard <keithp@keithp.com>
42316 Date:   Mon Nov 2 21:46:39 2009 -0800
42317
42318     Remove "l" command as ao-dumplong no longer uses it
42319
42320 commit 144db05f6b286a0450d486f69ce192632a2c0656
42321 Author: Keith Packard <keithp@keithp.com>
42322 Date:   Mon Nov 2 21:38:18 2009 -0800
42323
42324     Add two-point accelerometer calibration.
42325     
42326     Calibration now uses two values, one upside right and the other upside
42327     down instead of a single horizontal value. This allows the use of
42328     other accelerometers and compensates for variations in the divider
42329     circuit to provide more accurate data.
42330
42331 commit 17611788aadc9460287145a340a7c18bf63766aa
42332 Author: Bdale Garbee <bdale@gag.com>
42333 Date:   Mon Nov 2 16:54:06 2009 -0700
42334
42335     update changelogs for Debian build
42336
42337 commit 7db9d86178ecfd58cc1c17ac9fcbdcfd2f13aaec
42338 Merge: b219801 f9de200
42339 Author: Keith Packard <keithp@keithp.com>
42340 Date:   Mon Nov 2 15:47:40 2009 -0800
42341
42342     Merge remote branch 'origin/master'
42343
42344 commit b219801fb0e5eaff7778d21701da977104522da3
42345 Author: Keith Packard <keithp@keithp.com>
42346 Date:   Mon Nov 2 15:45:58 2009 -0800
42347
42348     Add ao_usb_pollchar to ao.h
42349
42350 commit b92333ff5e75bf96804359e9fbf464d3b518bd95
42351 Author: Keith Packard <keithp@keithp.com>
42352 Date:   Mon Nov 2 15:45:42 2009 -0800
42353
42354     Disable interrupts while removing tasks from task list
42355
42356 commit d519564fd08d2defe1211de83ccbdfa3c7cfe702
42357 Author: Keith Packard <keithp@keithp.com>
42358 Date:   Mon Nov 2 15:45:07 2009 -0800
42359
42360     Add more docs to the README file
42361
42362 commit f9de20000794c97a04d5bc2476191864bd2af371
42363 Author: Bdale Garbee <bdale@gag.com>
42364 Date:   Mon Nov 2 16:00:11 2009 -0700
42365
42366     update changelogs for Debian build
42367
42368 commit 127c3125e5a4b86b8f304bc2889e313688c3d83e
42369 Author: Bdale Garbee <bdale@gag.com>
42370 Date:   Mon Nov 2 15:59:12 2009 -0700
42371
42372     update changelogs for Debian build
42373
42374 commit 6b1e77569e2fed3c44606ed268421df5d3ed4020
42375 Author: Bdale Garbee <bdale@gag.com>
42376 Date:   Mon Nov 2 15:57:41 2009 -0700
42377
42378     update changelogs for Debian build
42379
42380 commit 8203bfa58af32a1d07a44c1c151b200df0b65f15
42381 Author: Bdale Garbee <bdale@gag.com>
42382 Date:   Mon Nov 2 15:56:42 2009 -0700
42383
42384     de-version the libreadline-dev build dependency
42385
42386 commit 0b483233118673cbc2cda1be6acd379df82bc95a
42387 Merge: ca5d323 550482d
42388 Author: Keith Packard <keithp@keithp.com>
42389 Date:   Sun Nov 1 20:59:02 2009 -0800
42390
42391     Merge remote branch 'origin/master' into skytraq
42392
42393 commit ca5d323a3d206050d95f52a61e92c69e1f54e7b5
42394 Author: Keith Packard <keithp@keithp.com>
42395 Date:   Sun Nov 1 20:57:03 2009 -0800
42396
42397     Enable packet-based communcation to command processor
42398     
42399     This splits the packet code into master/slave halves and hooks the
42400     slave side up to the getchar/putchar/flush logic in ao_stdio.c
42401     
42402     Signed-off-by: Keith Packard <keithp@keithp.com>
42403
42404 commit 6c1a9ce16b966a21c885bf3be31cbcb85368b3fa
42405 Author: Keith Packard <keithp@keithp.com>
42406 Date:   Sat Oct 31 01:30:22 2009 -0700
42407
42408     No need to wakeup &ao_tick_count now
42409
42410 commit cd0d495d7ef276956e730196476daa70a4359918
42411 Author: Keith Packard <keithp@keithp.com>
42412 Date:   Sat Oct 31 01:20:26 2009 -0700
42413
42414     Poke master to speed up packet rate when things are busy
42415
42416 commit 442b1ef18c8320d4e5329dc92bb5268a36058fc5
42417 Author: Keith Packard <keithp@keithp.com>
42418 Date:   Sat Oct 31 01:19:41 2009 -0700
42419
42420     Use ao_alarm for ao_delay so it can be easily interrupted
42421
42422 commit 4f7ed9ff484778381db647c27d2a34d0cadec41e
42423 Author: Keith Packard <keithp@keithp.com>
42424 Date:   Fri Oct 30 23:53:03 2009 -0700
42425
42426     Do more flushing in packet test code
42427
42428 commit 6a7aa1810a90a9216160aec55ec4bd02b3240e1b
42429 Author: Keith Packard <keithp@keithp.com>
42430 Date:   Fri Oct 30 23:52:44 2009 -0700
42431
42432     Add RFIM register
42433
42434 commit bf65e0b2a1299b49adc2d339ab9d9c7599aded9e
42435 Author: Keith Packard <keithp@keithp.com>
42436 Date:   Fri Oct 30 23:52:22 2009 -0700
42437
42438     Send SYN packet to set sequence numbers
42439
42440 commit d46797e5c08d4955d516458185e2cfb51ee2d567
42441 Author: Keith Packard <keithp@keithp.com>
42442 Date:   Fri Oct 30 23:51:38 2009 -0700
42443
42444     Use ao_radio_done to wait for TX to completely finish with packet
42445
42446 commit c5ec6fcfa1bd17aad0f85d2fbe603f1d125836e6
42447 Author: Keith Packard <keithp@keithp.com>
42448 Date:   Fri Oct 30 23:50:54 2009 -0700
42449
42450     Switch packet code from timer thread to ao_alarm
42451
42452 commit b428faf74ae145126ec1da972028fcfe0b4b2b18
42453 Author: Keith Packard <keithp@keithp.com>
42454 Date:   Fri Oct 30 23:48:36 2009 -0700
42455
42456     Remove reason from ao_dma_abort
42457
42458 commit 73db30b2f9128c37dc7fa075793a8862814ce044
42459 Author: Keith Packard <keithp@keithp.com>
42460 Date:   Fri Oct 30 23:46:21 2009 -0700
42461
42462     Add ao_alarm
42463
42464 commit 251b0971f049cbf2f8db79a32729d47441ce65f3
42465 Author: Keith Packard <keithp@keithp.com>
42466 Date:   Fri Oct 30 23:45:43 2009 -0700
42467
42468     Wait for TX to finish sending data
42469
42470 commit 9b31f07fe3556896b3e997bba156e30ef5777a80
42471 Author: Keith Packard <keithp@keithp.com>
42472 Date:   Fri Oct 30 23:43:52 2009 -0700
42473
42474     Add radio carrier command
42475
42476 commit 7b14c3e609749f4fc00dbd660541375048535218
42477 Author: Keith Packard <keithp@keithp.com>
42478 Date:   Fri Oct 30 16:39:15 2009 -0700
42479
42480     Initial packet bits. Just testing transmission
42481
42482 commit 690fc263516d8beb6b24e86fbcd6588f42ce4e5c
42483 Author: Keith Packard <keithp@keithp.com>
42484 Date:   Wed Oct 21 17:18:49 2009 +0900
42485
42486     Add keyhole-markup generation for ao-postflight.
42487     
42488     This lets you see the flight path in googleearth.
42489     
42490     Signed-off-by: Keith Packard <keithp@keithp.com>
42491
42492 commit b657aa209b9ea3b3efd33a940283b3ba60a169af
42493 Author: Keith Packard <keithp@keithp.com>
42494 Date:   Fri Oct 16 12:59:53 2009 +0900
42495
42496     Add ao_wake_task and ao_exit
42497     
42498     ao_wake_task signals a specific task to wake up.
42499     ao_exit terminates the current task.
42500     
42501     Signed-off-by: Keith Packard <keithp@keithp.com>
42502
42503 commit d709a0688eff84e25e24d755850ef045d6b0c3de
42504 Author: Keith Packard <keithp@keithp.com>
42505 Date:   Fri Oct 16 12:56:45 2009 +0900
42506
42507     Save some DSEG space by marking cmd functions __reentrant
42508     
42509     __reentrant causes the compiler to place args and locals on the stack
42510     instead of in the data segment.
42511     
42512     Signed-off-by: Keith Packard <keithp@keithp.com>
42513
42514 commit 550482d953c491a5ede9f2d243493afb13289898
42515 Author: Bdale Garbee <bdale@gag.com>
42516 Date:   Mon Oct 12 16:58:46 2009 -0600
42517
42518     update changelogs for Debian build
42519
42520 commit 2de548f45d0f50b558acc83f57e1e2fc1223ab92
42521 Author: Bdale Garbee <bdale@gag.com>
42522 Date:   Mon Oct 12 16:58:19 2009 -0600
42523
42524     oops, forgot to specify the repo to push to
42525
42526 commit 68008ac11c2735ca53a1b474324df43f2f1d5cdd
42527 Author: Bdale Garbee <bdale@gag.com>
42528 Date:   Mon Oct 12 16:57:33 2009 -0600
42529
42530     update changelogs for Debian build
42531
42532 commit 513328ac5f7c25f9ee144ab6befbea60d69eed1a
42533 Author: Bdale Garbee <bdale@gag.com>
42534 Date:   Mon Oct 12 16:56:50 2009 -0600
42535
42536     automate push of updated and tagged master branch during debian/rules prebuild
42537
42538 commit 67bf7d388a6dd2dbf65575bf4f0423ad355b4f2f
42539 Author: Bdale Garbee <bdale@gag.com>
42540 Date:   Mon Oct 12 16:54:44 2009 -0600
42541
42542     update changelogs for Debian build
42543
42544 commit 23bc21a93ccb9f35917f283ac5df6ce0870df71a
42545 Author: Bdale Garbee <bdale@gag.com>
42546 Date:   Mon Oct 12 16:54:16 2009 -0600
42547
42548     undue damage from partial build
42549
42550 commit 7da56ad8576ef212ffb6cb573bdaf578453e3fe0
42551 Author: Bdale Garbee <bdale@gag.com>
42552 Date:   Mon Oct 12 16:52:52 2009 -0600
42553
42554     add support for tagging git repository on each Debian package build
42555
42556 commit 8d4aa4ee54f85f4951cdd7293d58aaa405cfcdc5
42557 Author: Bdale Garbee <bdale@gag.com>
42558 Date:   Mon Oct 12 16:49:34 2009 -0600
42559
42560     update changelogs for Debian build
42561
42562 commit 241a860fe856b1dfad6e792736313648300d5c24
42563 Author: Bdale Garbee <bdale@gag.com>
42564 Date:   Mon Oct 12 16:48:43 2009 -0600
42565
42566     flush repetitive junk out of debian/changelog, and update the prebuild target
42567     in debian/rules to put git commit details into the Debian changelog
42568
42569 commit 6c4cdc927b43736b39be29d23ac3dc723f69e4d6
42570 Author: Bdale Garbee <bdale@gag.com>
42571 Date:   Mon Oct 12 15:57:19 2009 -0600
42572
42573     update changelogs for Debian build
42574
42575 commit c57bd7fd2f80e50b0b4c87fccb024ab07c93773d
42576 Merge: adf8764 2b76572
42577 Author: Bdale Garbee <bdale@gag.com>
42578 Date:   Mon Oct 12 15:57:08 2009 -0600
42579
42580     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42581
42582 commit 69b6f6bb465163cf767bb68e0e4a716d8ad2b39c
42583 Merge: bc77da6 2b76572
42584 Author: Keith Packard <keithp@keithp.com>
42585 Date:   Sat Oct 10 17:16:21 2009 -0700
42586
42587     Merge branch 'master' into skytraq
42588
42589 commit 2b765728ce177e26899f6feef00bfdf6aeaf2678
42590 Author: Keith Packard <keithp@keithp.com>
42591 Date:   Sat Oct 10 17:15:38 2009 -0700
42592
42593     Add apogee igniter delay.
42594     
42595     Provide for a delay after apogee before the drogue charge is
42596     fired. This allows TM to be used as a back-up altimeter.
42597     
42598     Signed-off-by: Keith Packard <keithp@keithp.com>
42599
42600 commit bc77da68c9cb7d4cca483eadbbb7e9ccf71c0060
42601 Merge: 46cccf6 8f7ea3d
42602 Author: Keith Packard <keithp@keithp.com>
42603 Date:   Sat Oct 10 15:09:48 2009 -0700
42604
42605     Merge branch 'master' into skytraq
42606
42607 commit 8f7ea3de7037f40b0ff462b60d503c19431ae62b
42608 Author: Keith Packard <keithp@keithp.com>
42609 Date:   Sat Oct 10 15:08:14 2009 -0700
42610
42611     Report igniter continuity in pad/idle mode via beeper
42612     
42613     one short beep = drogue
42614     two short beeps = main
42615     three short beeps = both
42616     one long warble = neither
42617     
42618     In idle mode, it does this just once. In pad mode, it keeps testing
42619     and reporting.
42620     
42621     Signed-off-by: Keith Packard <keithp@keithp.com>
42622
42623 commit adf8764bc4591795ba4e618ccbd6393fc6ce6450
42624 Author: Bdale Garbee <bdale@gag.com>
42625 Date:   Sat Oct 10 15:11:23 2009 -0600
42626
42627     update changelogs for Debian build
42628
42629 commit 541da6f3bbf81be93dfe3c01f7c8cfd757b28a2b
42630 Merge: dfc73cb 5f26ad6
42631 Author: Bdale Garbee <bdale@gag.com>
42632 Date:   Sat Oct 10 15:05:50 2009 -0600
42633
42634     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42635
42636 commit 46cccf62fb40514b5930fcb2ffdaf2735415c764
42637 Merge: fb8f3fe 5f26ad6
42638 Author: Keith Packard <keithp@keithp.com>
42639 Date:   Sat Oct 10 14:00:03 2009 -0700
42640
42641     Merge branch 'master' into skytraq
42642
42643 commit 5f26ad663b3f60dddc9d967206e365f45dc4acd1
42644 Author: Keith Packard <keithp@keithp.com>
42645 Date:   Sat Oct 10 13:58:16 2009 -0700
42646
42647     ao-dumplog: switch to 'e' command, display progress
42648     
42649     Using the 'e' command allows additional checking of the data,
42650     including end-to-end checksums and detection of missing data.
42651     
42652     Progress is displayed by showing the recorded flight state along with
42653     a '.' for each eeprom block read.
42654     
42655     Signed-off-by: Keith Packard <keithp@keithp.com>
42656
42657 commit fb8f3fee6a1bab1e46d782e84405845cee2dadb4
42658 Merge: 22856cf b8fc397
42659 Author: Keith Packard <keithp@keithp.com>
42660 Date:   Sat Oct 10 13:41:00 2009 -0700
42661
42662     Merge branch 'master' into skytraq
42663
42664 commit b8fc3975bd92037a0cf53b0ff2b0e05ce0ba668f
42665 Author: Keith Packard <keithp@keithp.com>
42666 Date:   Sat Oct 10 13:39:01 2009 -0700
42667
42668     Send 0-length IN packet to flush USB after full packet
42669     
42670     USB bulk transfers are a sequence of maximum-sized packets followed by
42671     a short packet, which signals the end of the transfer. When the last
42672     packet of the transfer would be a full-sized packet, an additional
42673     packet of zero length is sent to signal the transfer end.
42674     
42675     Signed-off-by: Keith Packard <keithp@keithp.com>
42676
42677 commit 22856cf8bb0f5e1f37c9b774132d9ef6934526ed
42678 Merge: 2f76034 e29961f
42679 Author: Keith Packard <keithp@keithp.com>
42680 Date:   Sat Oct 10 11:44:20 2009 -0700
42681
42682     Merge branch 'master' into skytraq
42683
42684 commit e29961fdb2a48874c895829880eadbf13e094c0c
42685 Author: Keith Packard <keithp@keithp.com>
42686 Date:   Sat Oct 10 11:43:31 2009 -0700
42687
42688     Add channel menu to ao-view.
42689     
42690     Sets radio channel when TD is connected, saves selected channel in
42691     gconf database.
42692     
42693     Signed-off-by: Keith Packard <keithp@keithp.com>
42694
42695 commit 2f7603490a169df8f18b565db4fa967832ffc9bd
42696 Author: Keith Packard <keithp@keithp.com>
42697 Date:   Fri Oct 9 22:48:29 2009 -0700
42698
42699     Build two versions of TM, one for SiRF, one for SkyTraq
42700     
42701     This creates two separate images, depending on which GPS unit is
42702     connected.
42703     
42704     Signed-off-by: Keith Packard <keithp@keithp.com>
42705
42706 commit 33b0b6f2f2e07de105619a7b463226d2813152ab
42707 Author: Keith Packard <keithp@keithp.com>
42708 Date:   Fri Oct 9 22:02:40 2009 -0700
42709
42710     Add support for the SkyTraq GPS unit
42711     
42712     This is a build-time option selected by hacking the Makefile at present.
42713     
42714     Signed-off-by: Keith Packard <keithp@keithp.com>
42715
42716 commit a3771bfc5ce740f9d89193e9f8b1d7987aa57264
42717 Author: Keith Packard <keithp@keithp.com>
42718 Date:   Tue Oct 6 20:06:00 2009 -0700
42719
42720     ao-view: fix snd_pcm_open return checking
42721     
42722     I don't know how this code was supposed to work before...
42723     
42724     Signed-off-by: Keith Packard <keithp@keithp.com>
42725
42726 commit ac4b8a73848f434999a532eab4665253c267c597
42727 Author: Keith Packard <keithp@keithp.com>
42728 Date:   Tue Oct 6 20:05:36 2009 -0700
42729
42730     ao-postflight: dump out GPS signal data
42731     
42732     Signed-off-by: Keith Packard <keithp@keithp.com>
42733
42734 commit dfc73cba1bee8b121e00e8cba45e7dfaaf79e9d8
42735 Author: Bdale Garbee <bdale@gag.com>
42736 Date:   Mon Sep 21 22:46:59 2009 -0700
42737
42738     update changelogs for Debian build
42739
42740 commit 459ff3d377297f80ee2fba0df0a29ff6603467a1
42741 Author: Bdale Garbee <bdale@gag.com>
42742 Date:   Mon Sep 21 11:00:32 2009 -0700
42743
42744     update changelogs for Debian build
42745
42746 commit 327c64305a59f48ababf19875874a550af6b9cef
42747 Merge: c8a81a4 74f0fb4
42748 Author: Bdale Garbee <bdale@gag.com>
42749 Date:   Mon Sep 21 11:00:22 2009 -0700
42750
42751     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42752
42753 commit 74f0fb4dd189abc1d5027c64fa5a648a6003285a
42754 Author: Keith Packard <keithp@keithp.com>
42755 Date:   Sun Sep 20 13:33:59 2009 -0700
42756
42757     make bit-banging reset script actually reset
42758
42759 commit 7ea371a09385e2a93199f78685e8cb86793ed104
42760 Author: Keith Packard <keithp@keithp.com>
42761 Date:   Sun Sep 20 13:33:26 2009 -0700
42762
42763     Add --gps option to ao-postflight
42764
42765 commit bc7ccb339e538a0e6120db0e5c0d9130c565e0dd
42766 Author: Keith Packard <keithp@keithp.com>
42767 Date:   Sun Sep 20 13:32:59 2009 -0700
42768
42769     ao_rawload: Don't reset after we finish loading
42770
42771 commit c8a81a419f7f2331624f90bd6c107a86f6b04451
42772 Author: Bdale Garbee <bdale@gag.com>
42773 Date:   Sun Sep 20 09:21:00 2009 -0600
42774
42775     update changelogs for Debian build
42776
42777 commit df42ccaaf468cdc5d93cbd1c001f58df58419722
42778 Merge: 0b24e40 078e9cd
42779 Author: Bdale Garbee <bdale@gag.com>
42780 Date:   Sun Sep 20 09:19:28 2009 -0600
42781
42782     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42783
42784 commit 078e9cdbdb388b22c6151f76ff0660fc14b8ef55
42785 Author: Keith Packard <keithp@keithp.com>
42786 Date:   Thu Sep 10 11:53:06 2009 -0700
42787
42788     Plot raw accel data for the motor accel section.
42789     
42790     This shows a short sequence of accelerometer data without any filtering.
42791     
42792     Signed-off-by: Keith Packard <keithp@keithp.com>
42793
42794 commit 8b485d937ff148848ebda7f9ca6be29bb1de1f16
42795 Author: Keith Packard <keithp@keithp.com>
42796 Date:   Sun Sep 6 21:02:48 2009 -0700
42797
42798     Show acceleration only during boost phase.
42799     
42800     We're interested in motor performance; the rest of the flight is
42801     boring, after all.
42802     
42803     Signed-off-by: Keith Packard <keithp@keithp.com>
42804
42805 commit 9e660315e1bd2bf71ab1c0574e895e1f7608a58f
42806 Author: Keith Packard <keithp@keithp.com>
42807 Date:   Sun Sep 6 21:01:44 2009 -0700
42808
42809     Fix cc_period_make to not get stuck on samples with matching time
42810     
42811     When two samples have matching times, step to the second one;
42812     otherwise, we'll get stuck forever.
42813     
42814     Signed-off-by: Keith Packard <keithp@keithp.com>
42815
42816 commit 932f1539b38567e565fd484171c13539b1467308
42817 Author: Keith Packard <keithp@keithp.com>
42818 Date:   Sun Sep 6 20:26:17 2009 -0700
42819
42820     Color plots, integrate only flight portion of data.
42821     
42822     Telemetry files have piles of pad data which shouldn't be integrated
42823     into the velocity data as it tends to generate huge values from the
42824     noise of the sensor.
42825     
42826     Also make the data lines colored to keep them visually distinct from
42827     the rest of the plot image.
42828     
42829     Signed-off-by: Keith Packard <keithp@keithp.com>
42830
42831 commit 9177f5f4e9d832558ddd9ab227c4511f6201e7e5
42832 Author: Keith Packard <keithp@keithp.com>
42833 Date:   Sun Sep 6 18:11:24 2009 -0700
42834
42835     Update usage and man page for ao-postflight
42836
42837 commit 0b24e4034f93010372a3d084668d10f0e4a2c2e1
42838 Author: Bdale Garbee <bdale@gag.com>
42839 Date:   Sun Sep 6 18:01:20 2009 -0600
42840
42841     update changelogs for Debian build
42842
42843 commit a5e94aa0677070a051714443cf7fd7e2b5e90269
42844 Author: Bdale Garbee <bdale@gag.com>
42845 Date:   Sun Sep 6 17:59:47 2009 -0600
42846
42847     need a run-time dependency to pull in the cairo module
42848
42849 commit 97acef95cc9843998963921459fdd71dd7eaa6b4
42850 Author: Bdale Garbee <bdale@gag.com>
42851 Date:   Sun Sep 6 17:48:23 2009 -0600
42852
42853     update changelogs for Debian build
42854
42855 commit 3f95a5abbf8ada70328ced45fbb2781ed1cb3d29
42856 Author: Bdale Garbee <bdale@gag.com>
42857 Date:   Sun Sep 6 17:48:10 2009 -0600
42858
42859     more build deps for plotting lib
42860
42861 commit 9d7e96e323d652de08b2f2a73e0eb3c321080185
42862 Author: Bdale Garbee <bdale@gag.com>
42863 Date:   Sun Sep 6 17:47:56 2009 -0600
42864
42865     update changelogs for Debian build
42866
42867 commit ae4e131b61244e06020b82919e31e05dd7dba88f
42868 Author: Bdale Garbee <bdale@gag.com>
42869 Date:   Sun Sep 6 17:46:39 2009 -0600
42870
42871     update changelogs for Debian build
42872
42873 commit 37e6c9a492a1d51373bf9333fb3172e0c377720f
42874 Merge: d256f82 2e6686b
42875 Author: Bdale Garbee <bdale@gag.com>
42876 Date:   Sun Sep 6 17:46:10 2009 -0600
42877
42878     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42879
42880 commit 2e6686b1e183c66188ea447b8a54e4c29402443b
42881 Author: Keith Packard <keithp@keithp.com>
42882 Date:   Sun Sep 6 16:45:47 2009 -0700
42883
42884     Use plplotd instead of plplotd-gnome2
42885
42886 commit d256f8204e9fce53ae4309562bb4c0cde1fae43e
42887 Merge: 0fc344d 32d3536
42888 Author: Bdale Garbee <bdale@gag.com>
42889 Date:   Sun Sep 6 17:34:08 2009 -0600
42890
42891     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42892
42893 commit 32d3536706324808df6cd02248a236302b831571
42894 Author: Keith Packard <keithp@keithp.com>
42895 Date:   Sun Sep 6 16:24:35 2009 -0700
42896
42897     Add plots to ao-postflight using the plplot library
42898     
42899     It's not perfect, but it generates .svg plot output.
42900     
42901     Signed-off-by: Keith Packard <keithp@keithp.com>
42902
42903 commit 0fc344dfc031a8b1eef7cc40efb1d5ba7782269d
42904 Author: Bdale Garbee <bdale@gag.com>
42905 Date:   Sun Sep 6 14:15:57 2009 -0600
42906
42907     update changelogs for Debian build
42908
42909 commit 4b0de757874c0ecaf38e3dfd3beefc398150e3d5
42910 Merge: 773c4ff d0eac98
42911 Author: Bdale Garbee <bdale@gag.com>
42912 Date:   Sun Sep 6 14:15:53 2009 -0600
42913
42914     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42915
42916 commit d0eac989b1ffc8ae30ba12da403eb4bf1ad42d6b
42917 Author: Keith Packard <keithp@keithp.com>
42918 Date:   Sun Sep 6 13:15:10 2009 -0700
42919
42920     Don't look at NULL strings (summary_name)
42921     
42922     Signed-off-by: Keith Packard <keithp@keithp.com>
42923
42924 commit 73f4a57239f770aff603b961169c0e2cfe2c276b
42925 Author: Keith Packard <keithp@keithp.com>
42926 Date:   Sun Sep 6 13:08:54 2009 -0700
42927
42928     Use pressure speed for drogue and beyond states. Fix differentiation time.
42929     
42930     Drogue state should always use pressure speeds.
42931     
42932     Differentiation code was using centi-seconds instead of seconds.
42933     
42934     Signed-off-by: Keith Packard <keithp@keithp.com>
42935
42936 commit 773c4ffbc1d2e02eb02cfa543a077a408986da30
42937 Author: Bdale Garbee <bdale@gag.com>
42938 Date:   Sun Sep 6 14:05:55 2009 -0600
42939
42940     update changelogs for Debian build
42941
42942 commit 45ede4a4b203ef9da5bf05c49cb9c5a2e6382ec5
42943 Merge: 45e2938 e35e485
42944 Author: Bdale Garbee <bdale@gag.com>
42945 Date:   Sun Sep 6 14:05:51 2009 -0600
42946
42947     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42948
42949 commit e35e485ffe6b26034788ab295121bc2693b7eec1
42950 Author: Keith Packard <keithp@keithp.com>
42951 Date:   Sun Sep 6 13:04:31 2009 -0700
42952
42953     Initialize summary_name and detail_name so stuff appears on stdout.
42954     
42955     Uninitialized variables lead to mysterious results.
42956     
42957     Signed-off-by: Keith Packard <keithp@keithp.com>
42958
42959 commit 45e2938121411d1fc9b3aec3fdeaaeb3c90db5ed
42960 Author: Bdale Garbee <bdale@gag.com>
42961 Date:   Sun Sep 6 14:02:14 2009 -0600
42962
42963     update changelogs for Debian build
42964
42965 commit d42ebf0661ecf15455e5051de1e16ae66f8dd857
42966 Merge: 384dbe9 7a19aac
42967 Author: Bdale Garbee <bdale@gag.com>
42968 Date:   Sun Sep 6 14:02:09 2009 -0600
42969
42970     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42971
42972 commit 7a19aac5e881e635962a64fff73027ca2143b96f
42973 Author: Keith Packard <keithp@keithp.com>
42974 Date:   Sun Sep 6 12:51:48 2009 -0700
42975
42976     Add DSP code to filter data, allowing for integration/differentiation
42977     
42978     This adds the computation of speed from both accelerometer and
42979     barometer measurements and then presents a periodic flight profile
42980     using filtered data as a detailed flight record.
42981     
42982     Signed-off-by: Keith Packard <keithp@keithp.com>
42983
42984 commit 384dbe9fc7fa8e4e5dceec5e150f0f1d3383bbdc
42985 Author: Bdale Garbee <bdale@gag.com>
42986 Date:   Sun Sep 6 10:40:06 2009 -0600
42987
42988     update changelogs for Debian build
42989
42990 commit 35c54b3a278fa9bc2bc7f4b5ee04866697c93ba0
42991 Merge: 4f8eff7 6d018ab
42992 Author: Bdale Garbee <bdale@gag.com>
42993 Date:   Sun Sep 6 10:39:23 2009 -0600
42994
42995     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
42996
42997 commit 6d018ab933832e2d80bb1564c339d9fb18b57be2
42998 Author: Keith Packard <keithp@keithp.com>
42999 Date:   Sat Sep 5 22:45:49 2009 -0700
43000
43001     Handle vageries of .telem files in ao-postflight
43002     
43003     Telem files have multiple entries of the same state, and sometimes
43004     long gaps between recordings. Deal with this as best as possible.
43005     
43006     Signed-off-by: Keith Packard <keithp@keithp.com>
43007
43008 commit c46e832b28820d7c5be4efaacbbd7c0607927fe5
43009 Author: Keith Packard <keithp@keithp.com>
43010 Date:   Sat Sep 5 22:03:31 2009 -0700
43011
43012     Add simple post-flight analysis tool (ao-postflight)
43013     
43014     This tool reads either an eeprom or telem log file and displays some
43015     rudimentary data (max accel/alt for each flight stage).
43016     
43017     Signed-off-by: Keith Packard <keithp@keithp.com>
43018
43019 commit 26f56b51bd11aa91f1d77b81827b49c28cb6ec5f
43020 Author: Keith Packard <keithp@keithp.com>
43021 Date:   Sat Sep 5 00:29:26 2009 -0700
43022
43023     Add ao-dumplog to capture flight log from command line
43024     
43025     This duplicates the functionality of the flight log stuf in ao-view,
43026     except from the command line where it belongs.
43027     
43028     Signed-off-by: Keith Packard <keithp@keithp.com>
43029
43030 commit 73adae3661160d410dcc802873b530d255c210e5
43031 Author: Keith Packard <keithp@keithp.com>
43032 Date:   Fri Sep 4 15:30:22 2009 -0700
43033
43034     Add --device/-D support to the command line tools and manuals
43035     
43036     Use the new cc_usbdevs_find_by_arg function to locate suitable target
43037     devices connected via USB.
43038     
43039     Signed-off-by: Keith Packard <keithp@keithp.com>
43040
43041 commit 4f8eff7401ee2d8092ab36fa33411f9b23dda880
43042 Author: Bdale Garbee <bdale@gag.com>
43043 Date:   Fri Sep 4 16:03:55 2009 -0600
43044
43045     update changelogs for Debian build
43046
43047 commit 332b056459b1352e233a8bf5f08498df12d32160
43048 Author: Keith Packard <keithp@keithp.com>
43049 Date:   Fri Sep 4 15:01:32 2009 -0700
43050
43051     'fix' ao-eeprom to read two blocks at once. Work around kernel bugs.
43052     
43053     The kernel appears to leave serial data undelivered at times. Reading
43054     two blocks at once appears to make it relinquish the queued data.
43055     
43056     Signed-off-by: Keith Packard <keithp@keithp.com>
43057
43058 commit df88ae4c5f229efcc0ea5cb0a81fc2bb8f96fea2
43059 Author: Keith Packard <keithp@keithp.com>
43060 Date:   Fri Sep 4 14:23:02 2009 -0700
43061
43062     Add 'ao-list' utility to show attached AltOS devices
43063     
43064     Signed-off-by: Keith Packard <keithp@keithp.com>
43065
43066 commit 0935d6a7e907e20381a42882ae728051f9bece02
43067 Author: Keith Packard <keithp@keithp.com>
43068 Date:   Fri Sep 4 14:21:19 2009 -0700
43069
43070     Parse the USB serial number as an integer.
43071     
43072     AltOS devices use simple integer serial numbers, so parse the USB
43073     value as such to make matching values more forgiving.
43074     
43075     Signed-off-by: Keith Packard <keithp@keithp.com>
43076
43077 commit 0c771d999914f9d17c723900f2987acc45fd0fbb
43078 Author: Keith Packard <keithp@keithp.com>
43079 Date:   Fri Sep 4 13:00:02 2009 -0700
43080
43081     Move usb scanning code to ao-tools library
43082     
43083     This will allow the scanning code to be used by the command line tools
43084     as well as the ao-view GUI.
43085     
43086     Now that ao-view depends on the ao-tools library, it has been moved to
43087     the ao-tools directory as well.
43088     
43089     Signed-off-by: Keith Packard <keithp@keithp.com>
43090
43091 commit 15341b6e6dcf52df083d6aa37ef881ea6ad48ee5
43092 Author: Keith Packard <keithp@keithp.com>
43093 Date:   Fri Sep 4 12:25:37 2009 -0700
43094
43095     Set all of the values to reset the radio for telemetry
43096     
43097     Was sizeof(rdf_setup) instead of sizeof(telemetry_setup) when
43098     resetting the radio back to telemetry data mode from rdf mode. With
43099     the length value removed from the rdf config, these two arrays are no
43100     longer the same length, and so the last config value was not set
43101     leaving the radio sending garbage.
43102     
43103     Signed-off-by: Keith Packard <keithp@keithp.com>
43104
43105 commit fee46389b70a624ab5b1128a8b4c3083c7747bcb
43106 Author: Keith Packard <keithp@keithp.com>
43107 Date:   Fri Sep 4 11:46:55 2009 -0700
43108
43109     Make RDF beacon only run on pad and after landing.
43110     
43111     It's pretty much impossible to RDF the rocket during flight, and it
43112     interferes with the telemetry data stream. Leave it enabled on the pad
43113     so that radios can be tested, and then re-enable it once the rocket
43114     has landed.
43115     
43116     This patch also turns the rdf 'on' time into a parameter so it can be
43117     changed, and then sets that parameter to 500ms, once every 5 seconds.
43118     
43119     Signed-off-by: Keith Packard <keithp@keithp.com>
43120
43121 commit 54545640b0db7747137655f84bc67fd290ecb904
43122 Author: Keith Packard <keithp@keithp.com>
43123 Date:   Fri Sep 4 11:45:52 2009 -0700
43124
43125     Add back the RDF tone generator
43126     
43127     Tracking the rocket on the ground may be easier using tones than using
43128     the digital data stream, so we'll try that and see what we think.
43129     
43130     This reverts commit 3a3bfd471a868d546d83cdc431b53c8f5208edb9.
43131     
43132     Signed-off-by: Keith Packard <keithp@keithp.com>
43133
43134 commit 9fafee109e96435c96639b21211cac0500673a63
43135 Author: Bdale Garbee <bdale@gag.com>
43136 Date:   Wed Sep 2 23:18:15 2009 -0600
43137
43138     update changelogs for Debian build
43139
43140 commit cb4a73f3b65ba72f645fd37ab8712829c9537bf8
43141 Merge: 9ddd869 e2e449d
43142 Author: Bdale Garbee <bdale@gag.com>
43143 Date:   Wed Sep 2 23:17:37 2009 -0600
43144
43145     Merge commit 'origin/master'
43146
43147 commit e2e449d5c23356e913f312de1fb2611a9dd5a352
43148 Author: Keith Packard <keithp@keithp.com>
43149 Date:   Wed Sep 2 22:01:52 2009 -0700
43150
43151     Remove bit-banging debug support from TM board builds
43152     
43153     Our current TM boards don't have the wires to do bit-banging to
43154     another cc1111 board, so it doesn't make sense to fill up their flash
43155     with useless code (and the 'help' text with useless commands). Leave
43156     this to the TI board until we have boards that can serve as debug dongles.
43157     
43158     Signed-off-by: Keith Packard <keithp@keithp.com>
43159
43160 commit acea083d80e1ecc4287083519ea666964016b257
43161 Author: Keith Packard <keithp@keithp.com>
43162 Date:   Wed Sep 2 22:00:37 2009 -0700
43163
43164     Make the ao_log_record structures 8 bytes again.
43165     
43166     When the GPS signal strength data was added, the structure was
43167     accidentally extended to 9 bytes, making all log records 9 bytes
43168     long. While not a serious problem, this left log records spanning
43169     across eeprom block boundaries, which seems like a bad plan.
43170     
43171     Signed-off-by: Keith Packard <keithp@keithp.com>
43172
43173 commit 7d39f17684feb49ac8a0017902158f298696e37c
43174 Author: Keith Packard <keithp@keithp.com>
43175 Date:   Wed Sep 2 21:57:54 2009 -0700
43176
43177     Make eeprom reads and writes across block boundary work
43178     
43179     Reading and writing across the block boundary was not stepping the
43180     eeprom position after the partial i/o operation at the end of the
43181     first block. This meant that the operation would re-use the end of the
43182     previous block, either re-reading or re-writing it.
43183     
43184     Signed-off-by: Keith Packard <keithp@keithp.com>
43185
43186 commit 9ddd8696b4004ccc03238d95a8c2a1d07075e0fb
43187 Author: Bdale Garbee <bdale@gag.com>
43188 Date:   Mon Aug 31 16:48:03 2009 -0600
43189
43190     update changelogs for Debian build
43191
43192 commit 6926c4ab5d87a8f2eb4fcde2c673fb3a4639e115
43193 Author: Bdale Garbee <bdale@gag.com>
43194 Date:   Mon Aug 31 16:47:44 2009 -0600
43195
43196     pixmap file should not be executable
43197
43198 commit 1495e2f27acde3743c3764a0c31ee082224d6c64
43199 Author: Bdale Garbee <bdale@gag.com>
43200 Date:   Mon Aug 31 16:42:55 2009 -0600
43201
43202     update changelogs for Debian build
43203
43204 commit c8c5b7963babe8eb16e2651fba9cd2c8d1cba74e
43205 Author: Bdale Garbee <bdale@gag.com>
43206 Date:   Mon Aug 31 16:42:37 2009 -0600
43207
43208     deliver an icon for the Debian menu system
43209
43210 commit 591b99c232e780246fc07841c09c8c4e7835facb
43211 Author: Bdale Garbee <bdale@gag.com>
43212 Date:   Mon Aug 31 16:26:00 2009 -0600
43213
43214     update changelogs for Debian build
43215
43216 commit b34474c1f3083e73b7184d519f54d4c8031836fd
43217 Merge: 8df1697 0d65bff
43218 Author: Bdale Garbee <bdale@gag.com>
43219 Date:   Mon Aug 31 16:25:32 2009 -0600
43220
43221     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
43222
43223 commit 6358041f846ba9a20fa650c367d907dc4336e54c
43224 Author: Keith Packard <keithp@keithp.com>
43225 Date:   Sat Aug 22 13:38:56 2009 -0700
43226
43227     Enable GPS degraded mode, set 10 sec degraded timeout.
43228     
43229     No reason not to let the GPS report solutions whenever it likes, let's
43230     see how this works.
43231     
43232     Signed-off-by: Keith Packard <keithp@keithp.com>
43233
43234 commit 0d65bff443c17d4d98c18b620ec075ab66b30efd
43235 Author: Keith Packard <keithp@keithp.com>
43236 Date:   Fri Aug 21 10:47:46 2009 -0700
43237
43238     Turn off GPS tracking data when not present in data stream
43239     
43240     Signed-off-by: Keith Packard <keithp@keithp.com>
43241
43242 commit 8df169791835510d96c11a3b0aa3cc5b79fa7fde
43243 Author: Bdale Garbee <bdale@gag.com>
43244 Date:   Wed Aug 19 02:21:23 2009 -0600
43245
43246     update changelogs for Debian build
43247
43248 commit 42ab6d52540d0326ef89e9d57954b08248558468
43249 Author: Bdale Garbee <bdale@gag.com>
43250 Date:   Wed Aug 19 02:21:06 2009 -0600
43251
43252     fix location for delivery of sources.list fragment
43253
43254 commit 977f5dc0bc7c666dcc1f21db77416efca0d696aa
43255 Author: Bdale Garbee <bdale@gag.com>
43256 Date:   Wed Aug 19 02:11:11 2009 -0600
43257
43258     update changelogs for Debian build
43259
43260 commit 8d4d6655f1b4c2fbc522fd255bfb75406e5ddaef
43261 Author: Bdale Garbee <bdale@gag.com>
43262 Date:   Wed Aug 19 02:11:00 2009 -0600
43263
43264     oops, aoview is now ao-view!
43265
43266 commit b9a97aea65f871fd287bc0bb566d8664766f4afd
43267 Author: Bdale Garbee <bdale@gag.com>
43268 Date:   Wed Aug 19 02:07:16 2009 -0600
43269
43270     update changelogs for Debian build
43271
43272 commit 21e3dd0affac89919e5d0e29c6e9eb1eacb51801
43273 Author: Bdale Garbee <bdale@gag.com>
43274 Date:   Wed Aug 19 02:06:49 2009 -0600
43275
43276     enable support for Debian menus
43277
43278 commit 0087c1776e0253fc2bd3b86f15bf9d1b32bdc45a
43279 Author: Bdale Garbee <bdale@gag.com>
43280 Date:   Wed Aug 19 00:52:57 2009 -0600
43281
43282     update changelogs for Debian build
43283
43284 commit 4486d9156e19e4280b42bcd422d81d04f2d04a92
43285 Merge: dd09f0b 33edd62
43286 Author: Bdale Garbee <bdale@gag.com>
43287 Date:   Wed Aug 19 00:49:24 2009 -0600
43288
43289     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
43290
43291 commit 33edd62992a32b0ec8ca66d879fa300871db5937
43292 Author: Keith Packard <keithp@keithp.com>
43293 Date:   Tue Aug 18 23:38:16 2009 -0700
43294
43295     Update ao-view to add GPS satellite tracking data
43296     
43297     This adds another column to the display to hold per-satellite GPS
43298     tracking data and a count of the visible and locked sats.
43299     
43300     Signed-off-by: Keith Packard <keithp@keithp.com>
43301
43302 commit 29687cbd462a332d9a36ed87500c5b737dcae3f4
43303 Author: Keith Packard <keithp@keithp.com>
43304 Date:   Tue Aug 18 22:35:15 2009 -0700
43305
43306     Handle GPS satellite tracking data
43307     
43308     SiRF message #4 includes signal strength and GPS engine state for each
43309     of the satellites being tracked. This data is now parsed and sent to
43310     eeprom and the radio.
43311     
43312     Signed-off-by: Keith Packard <keithp@keithp.com>
43313
43314 commit dd09f0bc2b950c00f3b489878cd69ad8a003f46c
43315 Author: Bdale Garbee <bdale@gag.com>
43316 Date:   Tue Aug 18 21:57:01 2009 -0600
43317
43318     update changelogs for Debian build
43319
43320 commit cd5ce661e2a8f9694933358ccb5b916fbed089c2
43321 Author: Bdale Garbee <bdale@gag.com>
43322 Date:   Tue Aug 18 21:49:39 2009 -0600
43323
43324     add support for building Debian package
43325
43326 commit d996aa9b32fb0eb385bd3d158256c29788a42fe3
43327 Merge: b3b2d3c 7d4ceb7
43328 Author: Bdale Garbee <bdale@gag.com>
43329 Date:   Tue Aug 18 18:56:09 2009 -0600
43330
43331     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
43332
43333 commit 7d4ceb75a454e6c9b3fe0bd934fadcb5104dea36
43334 Author: Keith Packard <keithp@keithp.com>
43335 Date:   Tue Aug 18 17:55:22 2009 -0700
43336
43337     Add ao-ejection.1 man page
43338     
43339     Document the input requirements and output format
43340     
43341     Signed-off-by: Keith Packard <keithp@keithp.com>
43342
43343 commit b3b2d3c475a135084b5628c730fc6fca1ba0817b
43344 Merge: 4685fc5 da12b89
43345 Author: Bdale Garbee <bdale@gag.com>
43346 Date:   Tue Aug 18 18:36:03 2009 -0600
43347
43348     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
43349
43350 commit da12b89fb056a68e65ba363fef91d266727cb685
43351 Author: Keith Packard <keithp@keithp.com>
43352 Date:   Tue Aug 18 17:30:43 2009 -0700
43353
43354     Create ChangeLog from git log
43355
43356 commit 7d69e2b3715faed10ce21ad562fc4d25dfc5f9c1
43357 Author: Keith Packard <keithp@keithp.com>
43358 Date:   Tue Aug 18 17:29:29 2009 -0700
43359
43360     Fix ao-bitbang examples to not have . in the first column
43361
43362 commit 4685fc541466afbeefc151bcb64cd054739c048b
43363 Merge: 1c2a0b6 c29275b
43364 Author: Bdale Garbee <bdale@gag.com>
43365 Date:   Tue Aug 18 18:09:38 2009 -0600
43366
43367     Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
43368     
43369     Conflicts:
43370         ao-tools/ao-bitbang/Makefile.am
43371         ao-tools/ao-eeprom/Makefile.am
43372         ao-tools/ao-load/Makefile.am
43373         ao-tools/ao-load/ao-load.c
43374         ao-tools/ao-rawload/Makefile.am
43375
43376 commit c29275b72438637d46d7a50742882d2736eb176a
43377 Author: Keith Packard <keithp@keithp.com>
43378 Date:   Tue Aug 18 15:21:57 2009 -0700
43379
43380     Add manual pages for remaining commands.
43381     
43382     Manuals written for ao-bitbang, ao-eeprom, ao-load, ao-rawload and
43383     ao-view.
43384     
43385     Manual for ao-dbg updated to reflect program name change.
43386     
43387     Signed-off-by: Keith Packard <keithp@keithp.com>
43388
43389 commit 9b03d620722dc54630539afba40720c30de69b2d
43390 Author: Keith Packard <keithp@keithp.com>
43391 Date:   Tue Aug 18 12:19:31 2009 -0700
43392
43393     Use --tty/-T on command line to specify target device
43394     
43395     Also, use the ALTOS_TTY environment variable in all tools. Note that
43396     the magic value of "BITBANG" switches the library to connecting
43397     through a CP2103 instead.
43398     
43399     Signed-off-by: Keith Packard <keithp@keithp.com>
43400
43401 commit 7c790fe859dff062692964338091ffbbcdf63257
43402 Author: Keith Packard <keithp@keithp.com>
43403 Date:   Tue Aug 18 12:40:24 2009 -0700
43404
43405     Rename tools to ao-<foo>
43406     
43407     Use a consistent prefix to make it easier to remember which programs
43408     belong to this package
43409     
43410     Signed-off-by: Keith Packard <keithp@keithp.com>
43411
43412 commit 1c2a0b6653623b689d68d7349a6b2dce3e20a4a6
43413 Author: Keith Packard <keithp@keithp.com>
43414 Date:   Tue Aug 18 13:36:54 2009 -0700
43415
43416     re-add debugger sources
43417
43418 commit 9a9cce5510b87252f863239ac807b9fb4395b288
43419 Author: Keith Packard <keithp@keithp.com>
43420 Date:   Tue Aug 18 12:19:31 2009 -0700
43421
43422     Start working on using getopt for the tty name
43423
43424 commit 9789ca5e8caa9a013e804f307b9da380e147bd75
43425 Author: Keith Packard <keithp@keithp.com>
43426 Date:   Tue Aug 18 12:40:24 2009 -0700
43427
43428     Rename tools to ao-<foo>
43429     
43430     Use a consistent prefix to make it easier to remember which programs
43431     belong to this package
43432     
43433     Signed-off-by: Keith Packard <keithp@keithp.com>
43434
43435 commit a5782398d968e7cb11f7203afada7c216f233b3b
43436 Author: Keith Packard <keithp@keithp.com>
43437 Date:   Tue Aug 18 11:34:28 2009 -0700
43438
43439     Remove unused cctools code paths for old libusb and cp2103 ioctls.
43440     
43441     Communication with the CP2103 board has gone through three revisions,
43442     first using ioctls supported by the CP2103 kernel driver, then using
43443     the old synchronous usb library and now using the newer libusb
43444     asynchronous interface. There's no reason to keep shipping the old
43445     stale code now that the new stuff works reliably.
43446     
43447     Signed-off-by: Keith Packard <keithp@keithp.com>
43448
43449 commit 7cba411de0780c65e3490ab67186a514f0ea42ec
43450 Author: Keith Packard <keithp@keithp.com>
43451 Date:   Mon Aug 17 20:47:31 2009 -0700
43452
43453     test for sdcc, nickle and readline
43454     
43455     Signed-off-by: Keith Packard <keithp@keithp.com>
43456
43457 commit f48dcffae761700355a17b59345d55a60703f0c4
43458 Author: Keith Packard <keithp@keithp.com>
43459 Date:   Sun Aug 9 20:43:10 2009 -0700
43460
43461     Sync USB data after each memory write command
43462     
43463     This makes sure we flush the USB link often enough for the other end to keep
43464     up.
43465     
43466     Signed-off-by: Keith Packard <keithp@keithp.com>
43467
43468 commit cd5456f18e4b39ad76d5549df91a0e0cfb18a2e9
43469 Author: Keith Packard <keithp@keithp.com>
43470 Date:   Sun Aug 9 16:08:07 2009 -0700
43471
43472     Handle partial ALSA PCM writes
43473     
43474     The ALSA spec says that snd_pcm_writei will not return a partial write, but
43475     at least on the OLPC, that's not true. Deal with this.
43476     
43477     Signed-off-by: Keith Packard <keithp@keithp.com>
43478
43479 commit 3056cb8eef5aee0dcd342488386355d8b8f574c8
43480 Author: Keith Packard <keithp@keithp.com>
43481 Date:   Sun Aug 9 15:55:19 2009 -0700
43482
43483     Check more alsa return statuses
43484
43485 commit 8ddf3345afd8cbf638e81993633f7861d8dbca63
43486 Author: Keith Packard <keithp@keithp.com>
43487 Date:   Sat Jul 18 01:47:34 2009 -0700
43488
43489     Don't report distance to rocket without valid GPS
43490     
43491     When there's no valid GPS data, don't try to report the distance and bearing
43492     to the rocket after landing.
43493     
43494     Signed-off-by: Keith Packard <keithp@keithp.com>
43495
43496 commit fbcb7b20fa701a6e534d38e307839466545668e3
43497 Author: Keith Packard <keithp@keithp.com>
43498 Date:   Sat Jul 18 01:05:33 2009 -0700
43499
43500     Add B command to set serial baud rate
43501     
43502     Signed-off-by: Keith Packard <keithp@keithp.com>
43503
43504 commit 91b023e7e4eeed838e0320d2ddac0f6aac39e565
43505 Author: Keith Packard <keithp@keithp.com>
43506 Date:   Sat Jul 18 01:05:13 2009 -0700
43507
43508     Get rid of spaces after minus sign in climb value
43509
43510 commit 28be20cf914fb34dc3c776519708d0f02091764e
43511 Author: Keith Packard <keithp@keithp.com>
43512 Date:   Sat Jul 18 01:04:39 2009 -0700
43513
43514     Switch to 57600 baud for GPS data
43515
43516 commit d3f76ce58b9c0ed2e5a9fe3bbc7fb9cb38247714
43517 Author: Keith Packard <keithp@keithp.com>
43518 Date:   Sat Jul 18 01:04:17 2009 -0700
43519
43520     Drain serial port before changing speed
43521     
43522     Signed-off-by: Keith Packard <keithp@keithp.com>
43523
43524 commit d7c2d358ed8a1afc9f0ba2bd830b10f6b56dc7b1
43525 Author: Keith Packard <keithp@keithp.com>
43526 Date:   Sat Jul 18 00:44:42 2009 -0700
43527
43528     Display last known GPS coord while unlocked
43529     
43530     Signed-off-by: Keith Packard <keithp@keithp.com>
43531
43532 commit 5195fcfe239e430e1f9f11774c9a245c7b29dae9
43533 Author: Keith Packard <keithp@keithp.com>
43534 Date:   Sat Jul 18 00:44:01 2009 -0700
43535
43536     use g_source_destroy instead of free on serial object
43537
43538 commit 1e5e98bd8f5ea0bc15592de454e3629383462371
43539 Author: Keith Packard <keithp@keithp.com>
43540 Date:   Sat Jul 18 00:43:22 2009 -0700
43541
43542     Trim aoview_serial_set_callback args down to just port and callback
43543
43544 commit 08f37056deec25d77062bc411a04033401b033a5
43545 Author: Keith Packard <keithp@keithp.com>
43546 Date:   Fri Jul 17 22:11:03 2009 -0700
43547
43548     Reset GPS at boot time
43549
43550 commit 1150aa850f5a025b849556e32c4dddb27937d9af
43551 Author: Keith Packard <keithp@keithp.com>
43552 Date:   Fri Jul 17 22:10:43 2009 -0700
43553
43554     Fix up serial debug output
43555
43556 commit 2a7956a64935246475f92d44c08369e0230b676a
43557 Author: Keith Packard <keithp@keithp.com>
43558 Date:   Fri Jul 17 21:34:13 2009 -0700
43559
43560     Allow the GPS port to run at 4800 baud if desired
43561
43562 commit 8d650769c319261c97f5e68eff9138207b95c0f8
43563 Author: Keith Packard <keithp@keithp.com>
43564 Date:   Fri Jul 17 21:33:53 2009 -0700
43565
43566     Initialize the GPS serial protocol state
43567     
43568     Signed-off-by: Keith Packard <keithp@keithp.com>
43569
43570 commit ab40d224b39ba6d29c4056e2d2c365e1eb3d3793
43571 Author: Keith Packard <keithp@keithp.com>
43572 Date:   Fri Jul 17 21:33:18 2009 -0700
43573
43574     Use uint8_t for comparisons to avoid int conversions
43575     
43576     Signed-off-by: Keith Packard <keithp@keithp.com>
43577
43578 commit d6749bf24792bb41ca700cf4b8e5e1ac1a63cbf0
43579 Author: Keith Packard <keithp@keithp.com>
43580 Date:   Fri Jul 17 21:30:53 2009 -0700
43581
43582     Add AO_GPS_RUNNING state.
43583     
43584     This tracks whether the GPS receiver has ever sent a valid report to the
43585     flight computer, allowing the user to tell whether the GPS receiver is
43586     working at all.
43587     
43588     Signed-off-by: Keith Packard <keithp@keithp.com>
43589
43590 commit a1da7e871aee75308bc05ce1b7a0dc402e4c9509
43591 Author: Keith Packard <keithp@keithp.com>
43592 Date:   Fri Jul 17 21:25:35 2009 -0700
43593
43594     Add M command to monitor serial bytes
43595
43596 commit ddfa2308c0be4c002f982ae9da6032ee7854117d
43597 Author: Keith Packard <keithp@keithp.com>
43598 Date:   Fri Jul 17 21:24:45 2009 -0700
43599
43600     Support the not-connected GPS state
43601
43602 commit 34f148500df427c148188c0ada20bf914a7c74ba
43603 Author: Keith Packard <keithp@keithp.com>
43604 Date:   Fri Jul 17 19:23:10 2009 -0700
43605
43606     Use 57600 baud for GPS. Clean up gps init.
43607     
43608     Assume GPS is either in 4800 NMEA or 57600 SiRF mode, send just the sequence
43609     to get from 4800 NMEA to 5760 SiRF.
43610     
43611     Also, eliminate threads from the gps test program.
43612     
43613     Signed-off-by: Keith Packard <keithp@keithp.com>
43614
43615 commit 2deca0c52cd6cfb4baceb59c8a5458344bada338
43616 Author: Keith Packard <keithp@keithp.com>
43617 Date:   Fri Jul 17 17:09:20 2009 -0700
43618
43619     Try harder to get the GPS receiver serial link sync'd up.
43620     
43621     We cannot assume that the GPS receiver is in any particular state when it
43622     boots, so we try to send the serial configuration at several rates and hope
43623     that it eventually sees something that it likes.
43624     
43625     Signed-off-by: Keith Packard <keithp@keithp.com>
43626
43627 commit 31d5670a9144b943ce9c8cb00deb5fb659af0b1c
43628 Author: Keith Packard <keithp@keithp.com>
43629 Date:   Fri Jul 17 17:06:18 2009 -0700
43630
43631     Rolling average for pad location. Say 'GPS ready'.
43632     
43633     Use a rolling average for the pad location, instead of just averaging all
43634     positions. This filters out old (presumably less accurate) values eventually.
43635     
43636     When enough GPS samples have been acquired, say 'GPS ready'.
43637     
43638     Signed-off-by: Keith Packard <keithp@keithp.com>
43639
43640 commit bfe1e76c82738baaf65abbc58c3244a07ea8fefe
43641 Author: Keith Packard <keithp@keithp.com>
43642 Date:   Fri Jul 17 16:22:51 2009 -0700
43643
43644     Split GPS data into a separate column
43645     
43646     Signed-off-by: Keith Packard <keithp@keithp.com>
43647
43648 commit 5f0179652e8bb85add9067e5253e981c60f2c51e
43649 Author: Keith Packard <keithp@keithp.com>
43650 Date:   Fri Jul 17 16:03:35 2009 -0700
43651
43652     Fix up SiRF parsing and test code so that it actually works
43653     
43654     Signed-off-by: Keith Packard <keithp@keithp.com>
43655
43656 commit 0b35447d05a0c7eaf4fefcbcf0065fe3320bba82
43657 Author: Keith Packard <keithp@keithp.com>
43658 Date:   Fri Jul 17 13:58:14 2009 -0700
43659
43660     Add host-side gps protocol testing program
43661
43662 commit fef7334bddb9fccfbd6deab7d5d466ab3e76323a
43663 Author: Keith Packard <keithp@keithp.com>
43664 Date:   Sat Jul 11 00:56:13 2009 -0700
43665
43666     Hook aoview directly to alsa
43667     
43668     This skips the flite internal audio stuff which opened and closed the audio
43669     device for each phrase. This caused the first part of some phrases to be
43670     missed when using an external audio device.
43671     
43672     Signed-off-by: Keith Packard <keithp@keithp.com>
43673
43674 commit 80cadf44f5f1accd6ddfca25c2af8d4d424f26d9
43675 Author: Keith Packard <keithp@keithp.com>
43676 Date:   Thu Jul 9 20:55:10 2009 -0700
43677
43678     Show speed. Format numbers. Timeout and report final status.
43679     
43680     The speed value is now shown in the top label bar. Ascent shows
43681     accelerometer-derived data, otherwise it's baro derived.
43682     
43683     All of the numbers displayed are now given sensible printf formats so they
43684     don't contain way too many digits.
43685     
43686     Instead of doing periodic reporting based on flight tick count, data is
43687     reported every 10 seconds based on wall time. After landing, or when no data
43688     have been received for a while, final flight information is spoken.
43689     
43690     Signed-off-by: Keith Packard <keithp@keithp.com>
43691
43692 commit 19630ef084866f4230e68ccf11284b30c68128b1
43693 Author: Keith Packard <keithp@keithp.com>
43694 Date:   Sun Jul 5 08:35:28 2009 -0700
43695
43696     Dont smash aoview_monitor_parse input buffer
43697
43698 commit e506ed4b6efb86eab50204658fcd433b987e3831
43699 Author: Keith Packard <keithp@keithp.com>
43700 Date:   Tue Jun 30 15:25:52 2009 -0700
43701
43702     Integrate flite into aoview directly. Fix great circle computation.
43703     
43704     Use a separate thread for flite rather than a separate program.
43705     Save voice state to gconf.
43706     Add filters for replay file selection
43707     
43708     Signed-off-by: Keith Packard <keithp@keithp.com>
43709
43710 commit 5b988e0146075d57434f8484e1ec9fcf3e183df2
43711 Author: Keith Packard <keithp@keithp.com>
43712 Date:   Tue Jun 30 15:24:53 2009 -0700
43713
43714     Make window taller
43715
43716 commit 696233b088645bba1aaa6aa6c5358c3ecfa5cd3f
43717 Author: Keith Packard <keithp@keithp.com>
43718 Date:   Tue Jun 30 15:24:31 2009 -0700
43719
43720     Use 16kHz voice
43721
43722 commit 2e06772c8b6fd74f86e640ed97f0d5bc8c095c2f
43723 Author: Keith Packard <keithp@keithp.com>
43724 Date:   Tue Jun 30 11:58:30 2009 -0700
43725
43726     Add telem replay and larger labels
43727     
43728     Replays telemetry files in real time
43729     Shows height/state/rssi in big values at the top.
43730     
43731     Signed-off-by: Keith Packard <keithp@keithp.com>
43732
43733 commit 566dde161385263700eaae51095eecfa9b5972ee
43734 Author: Keith Packard <keithp@keithp.com>
43735 Date:   Mon Jun 29 23:06:47 2009 -0700
43736
43737     Update aoview/.gitignore
43738     
43739     Signed-off-by: Keith Packard <keithp@keithp.com>
43740
43741 commit 4ca2d910f3be689fd3c78a4f1be0555d6b1a30c1
43742 Author: Keith Packard <keithp@keithp.com>
43743 Date:   Mon Jun 29 23:05:27 2009 -0700
43744
43745     Use flite to announce flight state
43746     
43747     This uses the flite voice synthesis library from festival to announce
43748     altitude and speed information during the rocket flight.
43749     
43750     Signed-off-by: Keith Packard <keithp@keithp.com>
43751
43752 commit 527d7c803ed9597b210634018cb2eb9d048d9846
43753 Author: Keith Packard <keithp@keithp.com>
43754 Date:   Mon Jun 29 23:03:58 2009 -0700
43755
43756     Add GPS speed and error data to telemetry and aoview
43757     
43758     Having switched to the SiRF binary GPS format, the velocity and error data
43759     can now be displayed.
43760     
43761     Signed-off-by: Keith Packard <keithp@keithp.com>
43762
43763 commit ee4919dd771b00e2a2dd1083c9528efa7baab50f
43764 Author: Keith Packard <keithp@keithp.com>
43765 Date:   Mon Jun 29 13:54:00 2009 -0700
43766
43767     Convert GPS to SiRF binary protocol.
43768     
43769     This switches the GPS unit from NMEA to SiRF protocol at startup and then
43770     parses the binary data. The binary data uses a different encoding of lat/lon
43771     than the NMEA strings, and so the telemetry and eeprom data formats change
43772     with this switch.
43773     
43774     Signed-off-by: Keith Packard <keithp@keithp.com>
43775
43776 commit 49bf37767d2453869f2ca2c0832d1124322c66e0
43777 Author: Keith Packard <keithp@keithp.com>
43778 Date:   Wed Jun 17 23:22:25 2009 -0700
43779
43780     Add ejection computation utility
43781     
43782     Signed-off-by: Keith Packard <keithp@keithp.com>
43783
43784 commit e59520e343c2573b1b92c0b3c4aaa93e51bc55d3
43785 Author: Keith Packard <keithp@keithp.com>
43786 Date:   Wed Jun 17 13:55:23 2009 -0700
43787
43788     Fix clock initialization to not try to use 32kHz xtal on P2_3/P2_4
43789     
43790     None of our boards have a 32kHz xtal oscillator, instead we use those pins
43791     (on Telemetrum) for the deployment firing circuits. The old clock
43792     initialization code was switching from the 32kHz RC oscillator to the 32kHz
43793     crystal and overriding our use of those pins.
43794     
43795     Signed-off-by: Keith Packard <keithp@keithp.com>
43796
43797 commit 1c3cc12c08ddefbd6456a55c54ef87dd94d4ae9a
43798 Author: Keith Packard <keithp@keithp.com>
43799 Date:   Sun Jun 14 17:25:34 2009 -0700
43800
43801     Some kernels reference USB ttys as tty/tty* instead of tty:tty*
43802     
43803     Signed-off-by: Keith Packard <keithp@keithp.com>
43804
43805 commit 0f2cbd41332b1b63865c5f1a4e749419b469853a
43806 Author: Keith Packard <keithp@keithp.com>
43807 Date:   Sun Jun 14 16:45:19 2009 -0700
43808
43809     Rename state apogee -> coast
43810
43811 commit 5834a12c1d3d71105c9e3d1ceaf9f3ffac9ff1eb
43812 Author: Keith Packard <keithp@keithp.com>
43813 Date:   Sun Jun 14 16:39:28 2009 -0700
43814
43815     rename states. launchpad -> pad, coast -> fast
43816
43817 commit 8c40f19acd09fe93d492c9355da8a1198c34b1c3
43818 Author: Keith Packard <keithp@keithp.com>
43819 Date:   Sun Jun 14 16:36:29 2009 -0700
43820
43821     Disable monitor mode when communicating via usb
43822
43823 commit 7adea9c59c73acd52743446c74fb675e0a1d6d05
43824 Author: Keith Packard <keithp@keithp.com>
43825 Date:   Thu Jun 4 14:38:45 2009 -0700
43826
43827     Format GPS seconds as %02d.%04d to avoid spaces in the value
43828     
43829     The aoview GPS parsing code doesn't deal well with spaces in the middle of
43830     the value, so pad the seconds field with a zero as needed.
43831     
43832     Signed-off-by: Keith Packard <keithp@keithp.com>
43833
43834 commit a0e6bfee635b64092262936c858542318f6fc6dc
43835 Author: Bdale Garbee <bdale@gag.com>
43836 Date:   Thu Jun 4 13:11:48 2009 -0600
43837
43838     newer INSTALL file pulled in by autogen.sh
43839
43840 commit cf1e258d52b878df10b51a047709b10ecd51a68e
43841 Author: Bdale Garbee <bdale@gag.com>
43842 Date:   Thu Jun 4 13:09:29 2009 -0600
43843
43844     add a distclean target to src/Makefile
43845
43846 commit 176052b7c14fcad067835ecb550778faf67cf4da
43847 Author: Bdale Garbee <bdale@gag.com>
43848 Date:   Thu Jun 4 13:07:10 2009 -0600
43849
43850     add lib to the front of the subdir list
43851
43852 commit 208bc15714c7b4020c017eef19011c4eb9ab51e2
43853 Author: Keith Packard <keithp@keithp.com>
43854 Date:   Thu Jun 4 11:20:10 2009 -0700
43855
43856     Move build and debug tools to 'cctools' directory.
43857     
43858     These tools were merged in from the ccdbg package.
43859     
43860     Signed-off-by: Keith Packard <keithp@keithp.com>
43861
43862 commit 17d2432a8b9c15963cd3b821f025ad33972ef477
43863 Merge: 210dbaa 8a9a3f0
43864 Author: Keith Packard <keithp@keithp.com>
43865 Date:   Thu Jun 4 11:13:15 2009 -0700
43866
43867     Merge ccdbg and altos sources into one giant repository
43868     
43869     Keeping these separate isn't making things any easier.
43870     
43871     Signed-off-by: Keith Packard <keithp@keithp.com>
43872
43873 commit 210dbaa23cdacf3a6f2d6e23493e96ee2ac9bca7
43874 Author: Keith Packard <keithp@keithp.com>
43875 Date:   Thu Jun 4 10:41:34 2009 -0700
43876
43877     Use autotools, move altos to src subdir
43878     
43879     Signed-off-by: Keith Packard <keithp@keithp.com>
43880
43881 commit 8cce307bb3156584ba17ae5a787f645dfee5fb94
43882 Author: Keith Packard <keithp@keithp.com>
43883 Date:   Thu Jun 4 10:25:30 2009 -0700
43884
43885     Make menu seperator insensitive
43886
43887 commit 778cae8fc5a4b30e5045e4703316fc61ae18562a
43888 Author: Keith Packard <keithp@keithp.com>
43889 Date:   Wed Jun 3 17:07:34 2009 -0700
43890
43891     aoview: Add eeprom data fetching
43892     
43893     Fetches the last flight data from a TM device connected via USB and writes
43894     it to the flight log directory.
43895     
43896     Signed-off-by: Keith Packard <keithp@keithp.com>
43897
43898 commit bf140966e9649e75b884c8aa5f25ffbf9eed10ea
43899 Author: Keith Packard <keithp@keithp.com>
43900 Date:   Wed Jun 3 10:57:46 2009 -0700
43901
43902     Stop log dumping at flight end. Print 'end' at end of log.
43903     
43904     No reason to continue dumping data past the end of the flight now that the
43905     logging stuff has been demonstrated to work reliably. Also, to make
43906     automated log dumping easier, this prints out 'end' after the log data so
43907     that aoview knows when to stop reading.
43908     
43909     Signed-off-by: Keith Packard <keithp@keithp.com>
43910
43911 commit 35ac66969abe24ca23776618306a59fc17770e06
43912 Author: Keith Packard <keithp@keithp.com>
43913 Date:   Sun May 31 09:22:01 2009 -0700
43914
43915     Start adding bi-directional packet link
43916
43917 commit 3a3bfd471a868d546d83cdc431b53c8f5208edb9
43918 Author: Keith Packard <keithp@keithp.com>
43919 Date:   Thu May 28 23:17:33 2009 -0700
43920
43921     Eliminate RDF tone generation.
43922     
43923     Now that we have a viable telemetry-signal based RDF device via TeleDongle,
43924     there's no reason to continue to waste power and bandwidth with a NFM tone.
43925     
43926     Signed-off-by: Keith Packard <keithp@keithp.com>
43927
43928 commit 4d83eef0fe1d24a845ab29a535dfc56e13e7ee20
43929 Author: Keith Packard <keithp@keithp.com>
43930 Date:   Thu May 28 23:17:25 2009 -0700
43931
43932     Change .gitignore to match new aoload procedure
43933
43934 commit dcfcf3bec6788460b6fe8c239c80bad4526bd15b
43935 Author: Keith Packard <keithp@keithp.com>
43936 Date:   Wed May 27 22:01:37 2009 -0700
43937
43938     Leave serial number writing to aoload
43939     
43940     Instead of building per-serial hex files, leave that
43941     process to the new aoload program
43942     
43943     Signed-off-by: Keith Packard <keithp@keithp.com>
43944
43945 commit 8a9a3f02b951382573ff74dd6ce5a1c0f335fa86
43946 Author: Keith Packard <keithp@keithp.com>
43947 Date:   Wed May 27 21:53:15 2009 -0700
43948
43949     Add aoload to load serial-numbered altos binaries.
43950     
43951     aoload is a custom version of ccload which edits the data before sending it
43952     to the target machine, writing the target serial number into the data.
43953     
43954     Signed-off-by: Keith Packard <keithp@keithp.com>
43955
43956 commit 5a7a63c34b778e40a61ddabd16ec1af9a2be50c3
43957 Author: Keith Packard <keithp@keithp.com>
43958 Date:   Sat May 23 21:20:12 2009 -0700
43959
43960     Fix aoview telemetry GPS parsing code to use correct columns
43961     
43962     This code was trying to pull the GPS data from the wrong columns, causing
43963     aoview to fail to display GPS information.
43964     
43965     Signed-off-by: Keith Packard <keithp@keithp.com>
43966
43967 commit 26988c3e7acb2fa832810475e43e08fd2867459c
43968 Author: Keith Packard <keithp@keithp.com>
43969 Date:   Sat May 23 21:18:57 2009 -0700
43970
43971     Parse both telemetry or log data ao_flight_test
43972     
43973     Change the way data is fed from files to the flight test rig to handle
43974     either kind of input file.
43975     
43976     Signed-off-by: Keith Packard <keithp@keithp.com>
43977
43978 commit d6f5a0689023546464a71561f53fa2c943077c88
43979 Author: Keith Packard <keithp@keithp.com>
43980 Date:   Sat May 23 21:16:22 2009 -0700
43981
43982     Avoid 16-bit overflow in velocity computation.
43983     
43984     Adding two 16 bit integers together can wrap around to negative numbers,
43985     this resulted in velocity values which never decreased, making the switch
43986     from coast to apogee state not occur.
43987     
43988     Signed-off-by: Keith Packard <keithp@keithp.com>
43989
43990 commit aa6d87aeb616dd62f0debaded297232022b4f8bd
43991 Author: Keith Packard <keithp@keithp.com>
43992 Date:   Wed May 20 09:44:55 2009 -0700
43993
43994     Make file handling more general so it can be reused.
43995     
43996     The log file handling stuff will be useful for saving eeprom data, so pull
43997     it out of the real-time log handling code and make a general interface.
43998     
43999     Signed-off-by: Keith Packard <keithp@keithp.com>
44000
44001 commit b730c8bcbce649cdddba935e1112aaae538bc526
44002 Author: Keith Packard <keithp@keithp.com>
44003 Date:   Sun May 17 23:54:44 2009 -0700
44004
44005     Ignore aoview_glade.h
44006
44007 commit 91b07410122d0eaaf292cdb31c200925d45eaf2c
44008 Author: Keith Packard <keithp@keithp.com>
44009 Date:   Sun May 17 23:36:21 2009 -0700
44010
44011     Transmit computed ground pressure and acceleration values
44012     
44013     These are the last two values relevant to figuring out the state of the
44014     flight computer, and as they are computed by averaging 10 seconds of 100Hz
44015     sample data, they're a lot more accurate than anything the receiver could do
44016     on its own.
44017     
44018     Signed-off-by: Keith Packard <keithp@keithp.com>
44019
44020 commit 71d1689759829f1bc8550f1a4d8c9f2dc90b2ab4
44021 Author: Keith Packard <keithp@keithp.com>
44022 Date:   Sun May 17 23:18:09 2009 -0700
44023
44024     Provide install target
44025
44026 commit f301b95e87c8ec1e3b58d595a05d486bede5e0c2
44027 Author: Keith Packard <keithp@keithp.com>
44028 Date:   Sun May 17 23:13:20 2009 -0700
44029
44030     Embed glade file in executable
44031     
44032     This eliminates install issues nicely.
44033     
44034     Signed-off-by: Keith Packard <keithp@keithp.com>
44035
44036 commit 26361686d6fc63dc22d22285f0543c5c2c756fb4
44037 Author: Keith Packard <keithp@keithp.com>
44038 Date:   Sun May 17 23:05:23 2009 -0700
44039
44040     Add About dialog to aoview.
44041     
44042     Signed-off-by: Keith Packard <keithp@keithp.com>
44043
44044 commit 0f3233c49f43cd4e372e613303919ce4d50255b2
44045 Author: Keith Packard <keithp@keithp.com>
44046 Date:   Sun May 17 22:44:19 2009 -0700
44047
44048     USB device names can contain '.' too
44049     
44050     Depending on the hierarchy of devices, names can contain '.', so allow those
44051     too.
44052     
44053     Signed-off-by: Keith Packard <keithp@keithp.com>
44054
44055 commit 33221277690e6ee30387c506c3f2b8237ed48efd
44056 Author: Keith Packard <keithp@keithp.com>
44057 Date:   Sun May 17 22:43:34 2009 -0700
44058
44059     scandir returns -1 on error
44060     
44061     In which case, the namelist is invalid, so don't look at it, and don't free
44062     it.
44063     
44064     Signed-off-by: Keith Packard <keithp@keithp.com>
44065
44066 commit 7cb9fb675f56bf30ab6bf0bcdc5cb679709ffe3e
44067 Author: Keith Packard <keithp@keithp.com>
44068 Date:   Sun May 17 22:29:54 2009 -0700
44069
44070     Send computed accel/vel/pres values over the radio
44071     
44072     These computed values reflect what the flight computer is actually refering
44073     to for state changes, and will be useful in debugging the flight software as
44074     well as provide a filtered view of the data.
44075     
44076     Signed-off-by: Keith Packard <keithp@keithp.com>
44077
44078 commit 2c780d67b8a22d75a2da4b2af21fd35f0c6f5236
44079 Author: Keith Packard <keithp@keithp.com>
44080 Date:   Sun May 17 22:29:06 2009 -0700
44081
44082     Handle disappearing serial devices
44083     
44084     Put up a dialog when the serial open fails, and shut down monitoring when
44085     the serial device disappears while running.
44086     
44087     Signed-off-by: Keith Packard <keithp@keithp.com>
44088
44089 commit 69616104813fc5ba89fb3128d04fb9328961c59c
44090 Author: Keith Packard <keithp@keithp.com>
44091 Date:   Sun May 17 22:24:53 2009 -0700
44092
44093     While on the pad, zero out velocity every second
44094     
44095     We integrate acceleration to get velocity, but that means sitting on the pad
44096     for a long time can add substantial error to the velocity value. Each
44097     second, take the velocity value from a full second ago and subtract that out
44098     of the current velocity. Once we detect boost, this will stop, which means
44099     that as long as we detect boost within a second, we won't have subtracted
44100     out any "real" velocity.
44101     
44102     This keeps the pad velocity hovering around zero, which is pretty useful.
44103     
44104     Signed-off-by: Keith Packard <keithp@keithp.com>
44105
44106 commit 1234694eb903b204488ddc7cb30bcfe34bf1e677
44107 Author: Keith Packard <keithp@keithp.com>
44108 Date:   Sun May 17 01:29:06 2009 -0700
44109
44110     Clear table, reset log on disconnect
44111
44112 commit 4316b6af86b37522038e642235c163fcaad52e96
44113 Author: Keith Packard <keithp@keithp.com>
44114 Date:   Sun May 17 01:28:16 2009 -0700
44115
44116     Add pad lat/lon, max accel, max height
44117     
44118     Signed-off-by: Keith Packard <keithp@keithp.com>
44119
44120 commit 4348281bd788a13ea700413537f12da3c00356e4
44121 Author: Keith Packard <keithp@keithp.com>
44122 Date:   Sun May 17 00:46:09 2009 -0700
44123
44124     Clean up GPS display
44125     
44126     Signed-off-by: Keith Packard <keithp@keithp.com>
44127
44128 commit ff68e38770351ddac3285ce275cd85adab01fd3d
44129 Author: Keith Packard <keithp@keithp.com>
44130 Date:   Sun May 17 00:45:38 2009 -0700
44131
44132     Make aoview window taller
44133     
44134     Signed-off-by: Keith Packard <keithp@keithp.com>
44135
44136 commit be3f4fed7b863c8cdaabe32b61b65a8b3cd11355
44137 Author: Keith Packard <keithp@keithp.com>
44138 Date:   Sun May 17 00:13:45 2009 -0700
44139
44140     Add lots more aoview UI bits
44141     
44142     Logs data to files, displays current state in window.
44143     
44144     Signed-off-by: Keith Packard <keithp@keithp.com>
44145
44146 commit 93d7ce8e054515ed7b166eb042ae7f47e564d21d
44147 Author: Keith Packard <keithp@keithp.com>
44148 Date:   Sat May 16 20:45:26 2009 -0700
44149
44150     When logging starts up, right the whole ring to the log.
44151     
44152     This preserves the data pre boost-detect for later analysis.
44153     
44154     Signed-off-by: Keith Packard <keithp@keithp.com>
44155
44156 commit fec4212a59a7b3321536b25707dcabc43c797c33
44157 Author: Keith Packard <keithp@keithp.com>
44158 Date:   Sat May 16 20:04:31 2009 -0700
44159
44160     Abandon use of accelerometer for apogee detect.
44161     
44162     Integrating the accelerometer data to compute velocity worked for one rocket
44163     flight, but additional testing shows that it doesn't work in other
44164     airframes. Until we figure out how this should work, we'll rely on the
44165     altimeter to detect apogee.
44166     
44167     Signed-off-by: Keith Packard <keithp@keithp.com>
44168
44169 commit 09771c644de54ae354e8f98af7ba74289b3c0fcc
44170 Author: Keith Packard <keithp@keithp.com>
44171 Date:   Sat May 16 02:25:04 2009 -0700
44172
44173     Add preliminary aoview code
44174     
44175     AoView connects with TeleDongle to present telemetry information in a
44176     reasonable form. Right now, it just displays information to stdout, but it
44177     does have fancy dialogs for finding the USB devices.
44178     
44179     Signed-off-by: Keith Packard <keithp@keithp.com>
44180
44181 commit 37250b00f6286aee4b3b28604f5d463db3079a89
44182 Author: Keith Packard <keithp@keithp.com>
44183 Date:   Wed May 13 20:41:54 2009 -0700
44184
44185     Discard usb output before connection. Handle USB reset.
44186     
44187     Discarding output before USB is plugged in allows threads that send output
44188     and do other things to work without a USB connection. Unfortuantely, there
44189     doesn't appear to be any way to detect when the USB link is disconnected,
44190     which means that once USB is enabled, future writes will continue to block.
44191     
44192     USB reset causes the USB interrupts to all be reconfigured back to power-on
44193     state.
44194     
44195     Signed-off-by: Keith Packard <keithp@keithp.com>
44196
44197 commit 9b974217958b1017e62d6c4f4568f547ccc30c58
44198 Author: Keith Packard <keithp@keithp.com>
44199 Date:   Wed May 13 20:40:42 2009 -0700
44200
44201     Enable radio monitor by default in teleterra, teledongle and tidongle
44202     
44203     These ground loads want to monitor the radio constantly, and not require use
44204     of the 'm' command before listening.
44205     
44206     Signed-off-by: Keith Packard <keithp@keithp.com>
44207
44208 commit 25fc03a333b2cfad0a93ebc385fbcf74b63c229e
44209 Author: Keith Packard <keithp@keithp.com>
44210 Date:   Wed May 13 20:39:28 2009 -0700
44211
44212     Remove monitor/rssi functions from telemetrum load
44213     
44214     Telemetrum is now a flight-only load, use teleterra or teledongle for ground
44215     boards.
44216     
44217     Signed-off-by: Keith Packard <keithp@keithp.com>
44218
44219 commit 05493b98eb1ae4d30cb0b600849d70b03fa33594
44220 Author: Keith Packard <keithp@keithp.com>
44221 Date:   Wed May 13 20:38:11 2009 -0700
44222
44223     Split out ao_state_names to separate file
44224     
44225     Allows state names to be used in programs without monitoring enabled.
44226     
44227     Signed-off-by: Keith Packard <keithp@keithp.com>
44228
44229 commit d085d43701e3cdd2119e947a9ae45baa78c80318
44230 Author: Keith Packard <keithp@keithp.com>
44231 Date:   Wed May 13 14:29:30 2009 -0700
44232
44233     Indicate RSSI with a blinking LED
44234     
44235     Blink the red LED at a rate proportional to the RSSI value.
44236     
44237     Signed-off-by: Keith Packard <keithp@keithp.com>
44238
44239 commit 055331d5f7d5adc40c348c3efd331a562dcda82a
44240 Author: Keith Packard <keithp@keithp.com>
44241 Date:   Wed May 13 11:19:13 2009 -0700
44242
44243     Make ao_flight_test show AGL altitude and positive acceleration under boost
44244     
44245     This makes the output more readable
44246     
44247     Signed-off-by: Keith Packard <keithp@keithp.com>
44248
44249 commit d91208fbf5fc7797b93087ef8619454c4bed0130
44250 Author: Keith Packard <keithp@keithp.com>
44251 Date:   Wed May 13 11:18:24 2009 -0700
44252
44253     Make ao_flight_test able to read raw logging data
44254     
44255     Protect ao_flight_test reading functions so that a simple
44256     'script' output can be fed to the program and have it work correctly.
44257     
44258     Signed-off-by: Keith Packard <keithp@keithp.com>
44259
44260 commit d3dbd8949e1102220ad5fd0863f493c819b96e46
44261 Author: Keith Packard <keithp@keithp.com>
44262 Date:   Wed May 13 11:16:53 2009 -0700
44263
44264     Print only RSSI when packet CRC is invalid
44265     
44266     Packets with invalid CRC usually contain bogus data, so don't print that,
44267     just print out the RSSI which may contain useful data.
44268     
44269     Signed-off-by: Keith Packard <keithp@keithp.com>
44270
44271 commit 8168820b667cc1deffab64dd81cb4e6e2e6eabe4
44272 Author: Keith Packard <keithp@keithp.com>
44273 Date:   Wed May 13 11:00:43 2009 -0700
44274
44275     Accelerometer-based velocity values are invalid after apogee
44276     
44277     Because the orientation of the flight computer relative to the ground is
44278     unknown after apogee, the accelerometer data cannot be integrated to compute
44279     velocity. Main deploy is now based purely on barometric altitude and landing
44280     detection no longer checks for a low velocity value.
44281     
44282     Signed-off-by: Keith Packard <keithp@keithp.com>
44283
44284 commit 24fdda44ff8604e40510b196ead17564d8f8cd3d
44285 Author: Keith Packard <keithp@keithp.com>
44286 Date:   Wed May 13 10:59:04 2009 -0700
44287
44288     Add velocity check for boost detect via accelerometer
44289     
44290     Bumping the rocket can cause a brief period of high acceleration, which may
44291     cause a mistaken boost detection. Require both a high acceleration and
44292     reasonable velocity to trigger boost phase.
44293     
44294     Signed-off-by: Keith Packard <keithp@keithp.com>
44295
44296 commit 7a1aa3fdbc0d1fae5e7ee027bf8904598c6ebe41
44297 Author: Keith Packard <keithp@keithp.com>
44298 Date:   Wed May 13 10:58:30 2009 -0700
44299
44300     Typo in callsign
44301
44302 commit 497c89a7d08920630894b2605c3b6a0bdc4c229b
44303 Author: Keith Packard <keithp@keithp.com>
44304 Date:   Sun May 10 23:11:06 2009 -0700
44305
44306     Use recorded accelerometer baseline data in ao_flight_test
44307     
44308     With the flight computer recording a long-term average value for the
44309     accelerometer in the flight record, use that to prime the flight test code
44310     when running a log file through the simulator.
44311     
44312     Signed-off-by: Keith Packard <keithp@keithp.com>
44313
44314 commit ba3c53636e485450f48093d0a88a6629775f7c3a
44315 Author: Keith Packard <keithp@keithp.com>
44316 Date:   Sun May 10 23:01:16 2009 -0700
44317
44318     Don't re-initialize the landing range data at each apogee detect sample
44319     
44320     The landing range values are used only after apogee detect, so we need only
44321     initialize them on the transition from apogee to drogue.
44322     
44323     Signed-off-by: Keith Packard <keithp@keithp.com>
44324
44325 commit b623b1098bc7a10d471730259438fb82804221d0
44326 Author: Keith Packard <keithp@keithp.com>
44327 Date:   Sun May 10 23:00:06 2009 -0700
44328
44329     Initialize ao_min_vel with |ao_flight_vel|
44330     
44331     As ao_min_vel is stored as an absolute value, it's important to preserve
44332     that invariant, even though we don't expect ao_flight_vel to be negative at
44333     coast.
44334     
44335     Signed-off-by: Keith Packard <keithp@keithp.com>
44336
44337 commit e9584e846b9bd7926d61451d32ba5d7a30416f7b
44338 Author: Keith Packard <keithp@keithp.com>
44339 Date:   Sun May 10 22:58:31 2009 -0700
44340
44341     Decrease telemetry rate on the pad to 1/sec instead of 20/sec
44342     
44343     Transmitting telemetry through the radio consumes a significant amount of
44344     battery; reducing the rate to 1/sec will reduce power usage while waiting
44345     for launch.
44346     
44347     Signed-off-by: Keith Packard <keithp@keithp.com>
44348
44349 commit 97cecb517cd7bf75e1219c76a93bfe6964c07052
44350 Author: Keith Packard <keithp@keithp.com>
44351 Date:   Sun May 10 22:57:19 2009 -0700
44352
44353     Increase the initial accel/baro average to 1000 samples
44354     
44355     To get an accurate baseline of the launchpad state, take a longer average of
44356     the two sensors as the unit boots up.
44357     
44358     Signed-off-by: Keith Packard <keithp@keithp.com>
44359
44360 commit 98806b1ff3f41484663d61ff430e9e2764c7b5e6
44361 Author: Keith Packard <keithp@keithp.com>
44362 Date:   Sun May 10 22:54:14 2009 -0700
44363
44364     Record average accelerometer value in flight start log record
44365     
44366     The average accelerometer value cannot be extracted from the log as the
44367     record starts after that is computed. As that drives much of the
44368     accelerometer-based state transition logic, it is an important value to
44369     have, so we log it as part of the flight start record now.
44370     
44371     Signed-off-by: Keith Packard <keithp@keithp.com>
44372
44373 commit a12edbfe21fe27a9efbf87bacda9ab4806256e2b
44374 Author: Keith Packard <keithp@keithp.com>
44375 Date:   Sat May 9 10:24:10 2009 -0700
44376
44377     Add version command to show product information
44378
44379 commit e80b87f5e3ccf152d67a2e87bdefda161c455599
44380 Author: Keith Packard <keithp@keithp.com>
44381 Date:   Sat May 9 10:23:49 2009 -0700
44382
44383     Pad callsign with nuls
44384
44385 commit beae3360828da21eb1a3c4f88e930f242d4e36b7
44386 Author: Keith Packard <keithp@keithp.com>
44387 Date:   Fri May 1 08:14:57 2009 -0700
44388
44389     USB spec limits bulk endpoints to 64 byte payload max.
44390     
44391     For full-speed devices, bulk endpoints may use 8, 16, 32 or 64 bytes, but no
44392     more.
44393
44394 commit de7814c738488c2c16c6216c93fa78128895e5d5
44395 Author: Keith Packard <keithp@keithp.com>
44396 Date:   Wed Apr 29 17:46:56 2009 -0700
44397
44398     Use 'char' instead of 'uint8_t' for character data
44399     
44400     String and character constants are of char type, so using uint8_t causes
44401     promotion to 16-bit types when comparing the two.
44402
44403 commit 4ae74fffb939d67424efa3e7f433637f1f920ebc
44404 Author: Keith Packard <keithp@keithp.com>
44405 Date:   Wed Apr 29 17:46:36 2009 -0700
44406
44407     Eliminate incorrect cast in printf string argument
44408     
44409     char * is a pointer to a string in the default address space, not a generic pointer
44410     to a string. As such, the compiler (at least 2.9.0) mis-compiles this if the
44411     cast is included.
44412
44413 commit 39f2a3c6bd501d12a92bfd38434ce67bb5beb70d
44414 Author: Keith Packard <keithp@keithp.com>
44415 Date:   Wed Apr 29 17:44:41 2009 -0700
44416
44417     Correct radio frequency shown in config display.
44418     
44419     Radio frequency base is 434.550, not 435.550
44420
44421 commit 75ca1751b7cac2f8074d0713ee96d6ab45b54f19
44422 Author: Keith Packard <keithp@keithp.com>
44423 Date:   Wed Apr 29 17:42:26 2009 -0700
44424
44425     Reset landing interval tests at apogee
44426     
44427     This moves all of the interval management into the landing test code and
44428     out of the main loop. The interval is reset at apogee to make sure the
44429     sensors produce a stable reading for at least 20 seconds
44430
44431 commit 7a1b77c2d7253a681389f32b70e2460aac188807
44432 Author: Bdale Garbee <bdale@gag.com>
44433 Date:   Sun Apr 26 17:53:13 2009 -0600
44434
44435     clean up host programs, too
44436
44437 commit 5df80c346d65a9d56a8699b056dc44924acb31fe
44438 Author: Keith Packard <keithp@keithp.com>
44439 Date:   Sun Apr 26 16:04:07 2009 -0700
44440
44441     Was missing v_batt in adc dump command
44442
44443 commit c3fec2c4c65db71e88ef0c05c69463438a7cfc6c
44444 Author: Keith Packard <keithp@keithp.com>
44445 Date:   Sun Apr 26 15:38:28 2009 -0700
44446
44447     Add manual ignition and igniter test commands
44448
44449 commit 819f1de8dd6010fae050bcef930943c7923929f9
44450 Author: Keith Packard <keithp@keithp.com>
44451 Date:   Sun Apr 26 15:38:03 2009 -0700
44452
44453     Clean up commands a bit
44454
44455 commit 178abb5c8439509926a5507911d7148b84f051b8
44456 Author: Keith Packard <keithp@keithp.com>
44457 Date:   Sun Apr 26 15:08:58 2009 -0700
44458
44459     Clear more files on make clean
44460
44461 commit 70a69f3acdca27b80cdb2069de59bbc6dba83dbd
44462 Author: Keith Packard <keithp@keithp.com>
44463 Date:   Sun Apr 26 15:05:29 2009 -0700
44464
44465     Label binaries with product and serial info
44466
44467 commit 5ed3b1cb52b573db1fee9655a29a0e6dd72f53fe
44468 Author: Keith Packard <keithp@keithp.com>
44469 Date:   Sun Apr 26 01:37:02 2009 -0700
44470
44471     Make sure full log is written and flushed on landing.
44472     
44473     The final state change to landing is recorded in the logging thread, so have
44474     that turn off logging once it has recorded that state. Then make it go to
44475     sleep.
44476
44477 commit 2e737ad00cad5d893b252d8aa9dbff3d9b800731
44478 Author: Keith Packard <keithp@keithp.com>
44479 Date:   Sun Apr 26 01:36:53 2009 -0700
44480
44481     Clean up monitor output a bit
44482
44483 commit 38a0b61b0a0b3c00f064c8d562950a17a6ddff4a
44484 Author: Keith Packard <keithp@keithp.com>
44485 Date:   Sun Apr 26 00:11:32 2009 -0700
44486
44487     Add configuration support
44488     
44489     Current config variables:
44490     Main deploy altitude above launch (in meters)
44491     Acceleration zero g calibration (manual or automatic)
44492     Radio channel (freq = 435.550MHz + channel * 100kHz)
44493     Callsign (max 8 characters)
44494     
44495     Supporting this involved shuffling code around so that the
44496     non-telemetrum builds could include only the stuff they needed.
44497
44498 commit c65f1a1acd2ca00758833cec5d3f8056d303d3e2
44499 Author: Keith Packard <keithp@keithp.com>
44500 Date:   Sat Apr 25 14:44:33 2009 -0700
44501
44502     Allow for slower ADC operation. Add power saving code.
44503     
44504     This tries to make the flight computer use less power by disabling USB in
44505     flight mode, lowering the telemetry rate after ascent. It also disables the
44506     RDF beacon during ascent and re-enables it once descent has started.
44507
44508 commit 8e7b48b5f090be81980ab00fbce814ae1cc253e4
44509 Author: Keith Packard <keithp@keithp.com>
44510 Date:   Sat Apr 25 14:44:04 2009 -0700
44511
44512     Allow ADC to be disabled
44513
44514 commit 7bc3d9962872850e7b420221cf689db16b4305cc
44515 Author: Keith Packard <keithp@keithp.com>
44516 Date:   Sat Apr 25 14:43:23 2009 -0700
44517
44518     Place CPU in P0 state while idle
44519
44520 commit e45fce7f82d704d677f84c69b0e07588d109d780
44521 Author: Keith Packard <keithp@keithp.com>
44522 Date:   Sat Apr 25 14:42:20 2009 -0700
44523
44524     Add RDF beacon and callsign to telemetry
44525
44526 commit 61510f98404bca6861b2da98f6cd9ba9deb76968
44527 Author: Keith Packard <keithp@keithp.com>
44528 Date:   Sat Apr 25 14:40:51 2009 -0700
44529
44530     Add radio code to emit a 1kHz tone
44531
44532 commit 0f07803d84b5ac89500ee33a6818c50583e3ff7f
44533 Author: Keith Packard <keithp@keithp.com>
44534 Date:   Sat Apr 25 13:18:37 2009 -0700
44535
44536     Allow the USB system to be disabled/enabled at run-time
44537
44538 commit 45976af820fc41099928df71ea8304c56eb9fc7c
44539 Author: Keith Packard <keithp@keithp.com>
44540 Date:   Sat Apr 25 13:16:27 2009 -0700
44541
44542     Make LED usage depend on target device
44543
44544 commit 4a050704ad2c497e9f1b0988334228b0bbc4c170
44545 Author: Keith Packard <keithp@keithp.com>
44546 Date:   Sat Apr 25 13:13:24 2009 -0700
44547
44548     Make some functions reentrant to save DSEG space
44549
44550 commit 6b3d25a6d6d7847765eb03b836913dd5ecef2993
44551 Author: Keith Packard <keithp@keithp.com>
44552 Date:   Fri Apr 24 19:17:37 2009 -0700
44553
44554     Add monitor task to flight software
44555     
44556     Allows the use of telemetrum in teledongle mode.
44557
44558 commit ad0d2d88a91cbd02c56ea5ff6dab23e16aec6510
44559 Author: Keith Packard <keithp@keithp.com>
44560 Date:   Fri Apr 24 19:17:19 2009 -0700
44561
44562     Report difference from ground to max altitude at landing
44563
44564 commit f94ab879ff6f97708827c74facd11003a2d8b590
44565 Author: Keith Packard <keithp@keithp.com>
44566 Date:   Fri Apr 24 19:16:29 2009 -0700
44567
44568     Display data with units while running simulation
44569
44570 commit 6fb26340b150e831a8a9e25e3b68074c29e48dbe
44571 Author: Keith Packard <keithp@keithp.com>
44572 Date:   Fri Apr 24 19:13:31 2009 -0700
44573
44574     Enabling apogee detect via speed: < 200m/s && < max_speed - 50m/s
44575     
44576     This change ensures that we actually got going fairly fast, and then slowed
44577     down a bunch before enabling apogee detect. Otherwise, we'll detect apogee
44578     right off the pad as we're not going very fast at that point...
44579     
44580     This also adds the 'f' command to show the current flight status on the USB
44581     port.
44582
44583 commit 20b9f304ecbddd73a0ee2461b4c5e80f08157f98
44584 Author: Keith Packard <keithp@keithp.com>
44585 Date:   Fri Apr 24 19:12:28 2009 -0700
44586
44587     configure igniter ports, set values to measured ones
44588
44589 commit 6bf1d91ce0b723abe2bcec89668c13135ec044cf
44590 Author: Keith Packard <keithp@keithp.com>
44591 Date:   Fri Apr 24 19:11:40 2009 -0700
44592
44593     Move ao_led_init to end of file to be consistent with other files
44594
44595 commit b4de7d550ec9a09ccf5f6a72debc6646706e3516
44596 Author: Keith Packard <keithp@keithp.com>
44597 Date:   Fri Apr 24 19:10:20 2009 -0700
44598
44599     Define ao_state_names in ao.h so other people can share
44600
44601 commit 8e62747b3692d0ac75b08eaf5c3e4b5d766be6ad
44602 Author: Keith Packard <keithp@keithp.com>
44603 Date:   Fri Apr 24 19:09:31 2009 -0700
44604
44605     Bump NUM_CMDS to 10
44606
44607 commit 2f781beb73ef24ab5fbe2688a83d07ad26c15972
44608 Author: Keith Packard <keithp@keithp.com>
44609 Date:   Fri Apr 24 19:09:09 2009 -0700
44610
44611     Move beep_init to end of file to be consistent with other files
44612
44613 commit b99315cee4ab796376458a2442cf36806fa4aed3
44614 Author: Keith Packard <keithp@keithp.com>
44615 Date:   Fri Apr 24 10:19:31 2009 -0700
44616
44617     Update flight algorithm based on data collected from SN-1 Flight 1
44618     
44619     This now correctly sequences through the flight data collected from the
44620     first TeleMetrum test flight.
44621     
44622     This also completes up the flight algorithm test harness (ao_flight_test),
44623     which runs the flight algorithm on the Linux host from a captured data log.
44624
44625 commit b32f2f0090ff967edac07ae4d7a9895ed0b96d31
44626 Author: Keith Packard <keithp@keithp.com>
44627 Date:   Thu Apr 23 22:17:44 2009 -0700
44628
44629     Add igniters and update flight control algorithm
44630
44631 commit f155333ae18a25068644792e8940269d9fb28033
44632 Author: Keith Packard <keithp@keithp.com>
44633 Date:   Fri Apr 24 00:15:09 2009 -0700
44634
44635     Avoid ram from 0xfda2 through feff, its funky
44636
44637 commit f9c1c545c9dc11c3190a6cf7504883131fffce2f
44638 Author: Keith Packard <keithp@keithp.com>
44639 Date:   Thu Apr 23 22:18:33 2009 -0700
44640
44641     remove ao_flight_test until its ready
44642
44643 commit 86e73c009f78dc4664883353124fc891fbb01dce
44644 Author: Keith Packard <keithp@keithp.com>
44645 Date:   Thu Apr 23 20:50:07 2009 -0700
44646
44647     Add teledongle module
44648
44649 commit 204daac71ad56926730f5d6860bd70c645302e19
44650 Author: Keith Packard <keithp@keithp.com>
44651 Date:   Thu Apr 23 14:26:01 2009 -0700
44652
44653     Set telemetry rate to 100ms
44654
44655 commit 306b28f632e21b42ab165e7944283cf9764b590e
44656 Author: Keith Packard <keithp@keithp.com>
44657 Date:   Thu Apr 23 14:23:26 2009 -0700
44658
44659     Wrong license on ao_monitor.c
44660
44661 commit dca3a6de26d26c0020f3fb2cf5d8ac1552c195b1
44662 Author: Keith Packard <keithp@keithp.com>
44663 Date:   Thu Apr 23 14:23:00 2009 -0700
44664
44665     Crank up radio to 10dBm
44666
44667 commit fbe3096f7e9a8112dbc79f376eccdaa6872ae520
44668 Author: Keith Packard <keithp@keithp.com>
44669 Date:   Wed Apr 22 16:03:28 2009 -0700
44670
44671     Add COPYING file
44672
44673 commit 9b7788f18bbaf3c4e5ebbf6c5ebd926468b0e045
44674 Author: Keith Packard <keithp@keithp.com>
44675 Date:   Wed Apr 22 15:55:01 2009 -0700
44676
44677     Clean up TeleTerra files
44678
44679 commit 61cee50c86e275f9fde875bd317c3e74255394ec
44680 Author: Keith Packard <keithp@keithp.com>
44681 Date:   Wed Apr 22 15:53:55 2009 -0700
44682
44683     simplify ao_time function
44684
44685 commit 3703ecdc9e190f2e0b7ead0e71b78be881c1f3b7
44686 Author: Keith Packard <keithp@keithp.com>
44687 Date:   Wed Apr 22 15:53:46 2009 -0700
44688
44689     One line radio status
44690
44691 commit 1fbb3c17672a03ea6318fee07f9c2dcd7a8d0b16
44692 Author: Keith Packard <keithp@keithp.com>
44693 Date:   Wed Apr 22 15:49:16 2009 -0700
44694
44695     Add new binaries to .gitignore
44696
44697 commit 00d5610caff61559eb24c24beaa56629d6bb03be
44698 Author: Keith Packard <keithp@keithp.com>
44699 Date:   Wed Apr 22 15:49:00 2009 -0700
44700
44701     Speed up dbg port bit frobbing
44702
44703 commit c7555eb16876aa8ff9fe7f648d325a1b8fb54d23
44704 Author: Keith Packard <keithp@keithp.com>
44705 Date:   Wed Apr 22 15:48:28 2009 -0700
44706
44707     Use sdcc from path
44708
44709 commit ada6dea04b94be016598566c4c13e6105aaec353
44710 Author: Keith Packard <keithp@keithp.com>
44711 Date:   Wed Apr 22 15:48:14 2009 -0700
44712
44713     Clean up task list formatting
44714
44715 commit 0a1b2297ee9f5bbb918bd72f26088a3e0b84839a
44716 Author: Keith Packard <keithp@keithp.com>
44717 Date:   Wed Apr 22 15:47:57 2009 -0700
44718
44719     Control radio monitoring with the M command
44720
44721 commit 837c620f07b63efc171be3ac14c78bc99adf7592
44722 Author: Keith Packard <keithp@keithp.com>
44723 Date:   Wed Apr 22 14:25:43 2009 -0700
44724
44725     Shrink USB output buffers, work around USB packet errors
44726
44727 commit d87e9c25947d7cc2eba8894a524977f2c55a089a
44728 Author: Keith Packard <keithp@keithp.com>
44729 Date:   Tue Apr 21 02:07:24 2009 -0700
44730
44731     Clean up telemetry now that all packets are the same
44732
44733 commit 1b333def5052d2ed47fdeaef23a897fe326f6340
44734 Author: Keith Packard <keithp@keithp.com>
44735 Date:   Tue Apr 21 02:07:08 2009 -0700
44736
44737     Add longer debug delays to reset/debug_mode entry
44738
44739 commit d1887ded41a5bfec8e10e9fd736fa9444b9b6222
44740 Author: Keith Packard <keithp@keithp.com>
44741 Date:   Tue Apr 21 01:17:03 2009 -0700
44742
44743     Fix up fancy dbg stuff. Add teleterra initial bits.
44744     
44745     The dbg stuff needed a bit of help to actually walk the tables; it appears
44746     that complex expressions confuse sdcc.
44747     
44748     This also adds primitive teleterra bits, but no UI, etc.
44749     
44750     Signed-off-by: Keith Packard <keithp@keithp.com>
44751
44752 commit 43c8f7012102cdb591ace899420c10e4a78385ad
44753 Author: Keith Packard <keithp@keithp.com>
44754 Date:   Mon Apr 20 23:33:41 2009 -0700
44755
44756     Add radio support. Build separate executables for TeleMetrum and the TI dongle
44757     
44758     Ok, way too big a patch, but things were in rough shape.
44759     This patch adds support for the radio, both transmit and receive.
44760     Then, because I could no longer run the TeleMetrum code on the TI
44761     dongle, I ended up building a separate image for the TI board, which
44762     involved creating a mechanism for having multiple command sets and splitting
44763     code for different functions into different files.
44764
44765 commit 5be13b76a2e29b84cd6d1eec065e3354b0dafce5
44766 Author: Keith Packard <keithp@keithp.com>
44767 Date:   Sat Apr 18 23:19:24 2009 -0700
44768
44769     Start using pdata area for less-frequently used data
44770
44771 commit 3e18b5a0d4c7d84df98b6ed0b7783de1d42d45bf
44772 Author: Keith Packard <keithp@keithp.com>
44773 Date:   Sat Apr 18 23:19:05 2009 -0700
44774
44775     Slow down panic presentation
44776
44777 commit c4e983daa4579896b227fdcb2be43fad75e94307
44778 Author: Keith Packard <keithp@keithp.com>
44779 Date:   Sat Apr 18 23:17:45 2009 -0700
44780
44781     Parse GPS data locally. Add 'g' command to display recent GPS results.
44782     
44783     This parses the GPS GGA message and stores it in a global variable,
44784     protected by a mutex.
44785
44786 commit ed6f67dc47d750d5ff8bea63ae7cbb560689b9b6
44787 Author: Keith Packard <keithp@keithp.com>
44788 Date:   Sat Apr 18 23:16:01 2009 -0700
44789
44790     Add task names and 'T' command to show task status.
44791     
44792     The T command shows the current wchan and PC for each task in the system.
44793
44794 commit 3d5a5fc4db5f681e848202c4ee4099d2879677d6
44795 Author: Keith Packard <keithp@keithp.com>
44796 Date:   Sat Apr 18 19:32:18 2009 -0700
44797
44798     Fix GPL version at 2
44799     
44800     Signed-off-by: Keith Packard <keithp@keithp.com>
44801
44802 commit 022f83ca6fd589005d8eb3e25e633950fef69fa7
44803 Author: Keith Packard <keithp@keithp.com>
44804 Date:   Fri Apr 17 23:38:14 2009 -0700
44805
44806     Add gps, debug dongle support and pressure alt tables
44807     
44808     GPS also pulled in serial support. The altitude tables take raw 11-bit
44809     pressure sample numbers and convert them to standard pressure altitude
44810     values.
44811     
44812     Signed-off-by: Keith Packard <keithp@keithp.com>
44813
44814 commit 31fce622b1bab7e3f421069d7f6d4d9bdcd825de
44815 Author: Keith Packard <keithp@keithp.com>
44816 Date:   Fri Apr 17 10:32:45 2009 -0700
44817
44818     Enable FEC in radio packets
44819
44820 commit 293a357911090a2f37bdd6f7ea96942079ffdf2e
44821 Author: Keith Packard <keithp@keithp.com>
44822 Date:   Fri Apr 17 10:29:42 2009 -0700
44823
44824     Add CRC to radio packets
44825
44826 commit 20834caf01ddf481e8362b0d2627ef383a82e09d
44827 Author: Keith Packard <keithp@keithp.com>
44828 Date:   Fri Apr 17 10:23:10 2009 -0700
44829
44830     Add data whitening
44831
44832 commit 94e5343a72121a81ab19bf5025e6b6fc9847eb4f
44833 Author: Keith Packard <keithp@keithp.com>
44834 Date:   Fri Apr 17 10:19:25 2009 -0700
44835
44836     Add packet status byte defines
44837
44838 commit 04bc51c170c6f22bb5cc16867ce9a307818a7a00
44839 Author: Keith Packard <keithp@keithp.com>
44840 Date:   Fri Apr 17 10:11:31 2009 -0700
44841
44842     Add separate xmit/recv programs to radio demo
44843
44844 commit fafe55c3405964e0defdf25b6c00236f9aaefbc5
44845 Author: Keith Packard <keithp@keithp.com>
44846 Date:   Fri Apr 17 10:11:11 2009 -0700
44847
44848     Get env var for debug method selection
44849
44850 commit 26095fc0511ee0d5213f038986032f7c59964cf0
44851 Author: Keith Packard <keithp@keithp.com>
44852 Date:   Fri Apr 17 10:10:47 2009 -0700
44853
44854     Run-time selection between cp2103 and cc1111
44855
44856 commit 543bedde83cbce5145668e72965e02d892187b59
44857 Author: Keith Packard <keithp@keithp.com>
44858 Date:   Thu Apr 16 20:38:14 2009 -0700
44859
44860     Send data
44861
44862 commit 5e2393eb6b1a6d7b180bd63d5165ee7b7ff5f9e0
44863 Author: Keith Packard <keithp@keithp.com>
44864 Date:   Wed Apr 15 14:25:26 2009 -0700
44865
44866     Move a bunch of variables from __data to __xdata
44867
44868 commit 4d1091d9bd121f05f5fe0a9c9d2bc0da8c562b9a
44869 Author: Keith Packard <keithp@keithp.com>
44870 Date:   Tue Apr 14 21:25:15 2009 -0700
44871
44872     Slow down panic code, disable interrupts
44873
44874 commit 545478dd02eaeff6a65d318e722b1e4fce5e01b4
44875 Author: Keith Packard <keithp@keithp.com>
44876 Date:   Tue Apr 14 21:24:25 2009 -0700
44877
44878     Keep reporting flight state while it changes
44879
44880 commit 9605045164882b4ca3d1317ac860b02513a51f30
44881 Author: Keith Packard <keithp@keithp.com>
44882 Date:   Tue Apr 14 21:23:55 2009 -0700
44883
44884     use red LED to indicate system startup
44885
44886 commit dc844ee7e49a3b6145b3165252a592ed070d600f
44887 Author: Keith Packard <keithp@keithp.com>
44888 Date:   Tue Apr 14 21:23:13 2009 -0700
44889
44890     Use ao_ee_flush_internal while holding mutex
44891
44892 commit 5e45d1c89b00e74d5b2730345843f43aab516af2
44893 Author: Keith Packard <keithp@keithp.com>
44894 Date:   Tue Apr 14 21:22:56 2009 -0700
44895
44896     Leave beeping and lights to the flight code
44897
44898 commit 902c342289c1d13a4d55b9224acb6d67578b7a60
44899 Author: Keith Packard <keithp@keithp.com>
44900 Date:   Tue Apr 14 21:22:31 2009 -0700
44901
44902     Make mutex functions reentrant
44903
44904 commit acc4fc635edb70ec1ba2dff9f7ac0c8542c72c47
44905 Author: Keith Packard <keithp@keithp.com>
44906 Date:   Tue Apr 14 19:08:01 2009 -0700
44907
44908     Add in existing flight pieces: flight/report/log
44909     
44910     These pieces come from the old telemetrum firmware.
44911     
44912     Signed-off-by: Keith Packard <keithp@keithp.com>
44913
44914 commit ac99982b10fd5772218660137ee21db9b90cd885
44915 Author: Keith Packard <keithp@keithp.com>
44916 Date:   Tue Apr 14 14:21:56 2009 -0700
44917
44918     Add eeprom driver and command loop
44919     
44920     This involved adding dma control and a mutex implementation.
44921     
44922     Signed-off-by: Keith Packard <keithp@keithp.com>
44923
44924 commit fbd8f4aff5058f4d371596b04715b7cb6d38e729
44925 Author: Keith Packard <keithp@keithp.com>
44926 Date:   Tue Apr 14 11:04:09 2009 -0700
44927
44928     Switch from --model-large to --model-small
44929     
44930     This shrinks the application quite a bit, and should make it faster as well.
44931     
44932     Signed-off-by: Keith Packard <keithp@keithp.com>
44933
44934 commit fb63262699d3a6fbf347d24efda8b01f75b7d0d3
44935 Author: Keith Packard <keithp@keithp.com>
44936 Date:   Tue Apr 14 10:02:19 2009 -0700
44937
44938     Add comments, clean up white space, etc.
44939     
44940     Various clean ups now that the basic code appears to work.
44941     
44942     Signed-off-by: Keith Packard <keithp@keithp.com>
44943
44944 commit 7e4abf3a40c39d0ce4f466281bef9a464df85dd4
44945 Author: Keith Packard <keithp@keithp.com>
44946 Date:   Mon Apr 13 21:58:07 2009 -0700
44947
44948     Switch USB to double-buffered
44949
44950 commit b56a44e48552bc32dbba9ff21770c370219a684a
44951 Author: Keith Packard <keithp@keithp.com>
44952 Date:   Mon Apr 13 21:51:59 2009 -0700
44953
44954     Fix USB input/output by reloading packet limits.
44955     
44956     The USB controller is reset during the connection process, which clears the
44957     packet limits set in the controller at initialization time. Reload those
44958     values when the configuration is set.
44959     
44960     Signed-off-by: Keith Packard <keithp@keithp.com>
44961
44962 commit cdaf3fc5802acf2ddc7972a15649ab0e1b31b873
44963 Author: Keith Packard <keithp@keithp.com>
44964 Date:   Mon Apr 13 20:39:46 2009 -0700
44965
44966     USB working up through reading strings
44967
44968 commit c5c1e3fb1c253d387be02c127253ac2a55d577b4
44969 Author: Keith Packard <keithp@keithp.com>
44970 Date:   Mon Apr 13 13:51:08 2009 -0700
44971
44972     Add USB support.
44973     
44974     This offers a single CDC ACM device over USB.
44975     
44976     Signed-off-by: Keith Packard <keithp@keithp.com>
44977
44978 commit f3f25a1cec7d2a034aa544569cfd23bea1a996c5
44979 Author: Keith Packard <keithp@keithp.com>
44980 Date:   Sun Apr 12 23:53:55 2009 -0700
44981
44982     Add beep/led support.
44983     
44984     Support our P2_0 connected buzzer, and formalize LED output support.
44985     
44986     Signed-off-by: Keith Packard <keithp@keithp.com>
44987
44988 commit e14f07bfdb8824fc7ed6df1129c66ee39ffd6d54
44989 Author: Keith Packard <keithp@keithp.com>
44990 Date:   Sun Apr 12 23:17:16 2009 -0700
44991
44992     Add A/D sampler
44993     
44994     Sample A/D at the timer tick, placing data in a ring
44995     of samples.
44996     
44997     Signed-off-by: Keith Packard <keithp@keithp.com>
44998
44999 commit 823f4f92de0c1f8dd7a644a8e56ffe9822bee6e2
45000 Author: Keith Packard <keithp@keithp.com>
45001 Date:   Sun Apr 12 22:52:47 2009 -0700
45002
45003     Add 100Hz timer
45004     
45005     Use Timer 1 to generate a 100Hz timer interrupt
45006
45007 commit 650a77e209dbb54c8d8fd9824cee430985564973
45008 Author: Keith Packard <keithp@keithp.com>
45009 Date:   Sun Apr 12 21:58:49 2009 -0700
45010
45011     Update README
45012
45013 commit 870e98334018a66de8a6e4a659d2dc5dee1cbecf
45014 Author: Keith Packard <keithp@keithp.com>
45015 Date:   Sun Apr 12 21:52:56 2009 -0700
45016
45017     GPL Version 2 only
45018
45019 commit 11c526bdcbf4012e18fbfdc29ca8832870ca38f0
45020 Author: Keith Packard <keithp@keithp.com>
45021 Date:   Sun Apr 12 21:47:32 2009 -0700
45022
45023     Add load command to s51
45024
45025 commit 55402ba3e87fd699c51079843309f1f0d1534724
45026 Author: Keith Packard <keithp@keithp.com>
45027 Date:   Sun Apr 12 21:33:55 2009 -0700
45028
45029     Make test more complicated
45030
45031 commit 3d3f849c9af9028f667cef4afedc0798d39a9efc
45032 Author: Keith Packard <keithp@keithp.com>
45033 Date:   Sun Apr 12 21:33:46 2009 -0700
45034
45035     SP points at last pushed byte
45036
45037 commit f72c4cbc8fd9412dd1cce0fc446e7bbd2edc2d34
45038 Author: Keith Packard <keithp@keithp.com>
45039 Date:   Sun Apr 12 20:27:03 2009 -0700
45040
45041     Add .gitignore
45042
45043 commit 1903a86bf2cc6b685ccc475e62eabe49a4ec5b43
45044 Author: Keith Packard <keithp@keithp.com>
45045 Date:   Sun Apr 12 20:25:39 2009 -0700
45046
45047     Initial AltOS import
45048
45049 commit 5221dc63cf3a059a32aca2bfa7828c215be814a1
45050 Author: Keith Packard <keithp@keithp.com>
45051 Date:   Sun Apr 12 12:38:58 2009 -0700
45052
45053     Add ccdump
45054
45055 commit ee110425fb814780476d1d3d8a257af126f41763
45056 Author: Keith Packard <keithp@keithp.com>
45057 Date:   Mon Apr 6 17:09:23 2009 -0700
45058
45059     Bump buffer pointer as data is written to cc-usb
45060
45061 commit 2d9b8a83a2d9f495199033e43f519d26f27938fe
45062 Author: Keith Packard <keithp@keithp.com>
45063 Date:   Mon Apr 6 11:31:49 2009 -0700
45064
45065     Add support for a serial-connected custom debug dongle
45066     
45067     This uses the cc1111 board as a custom debug dongle with faster
45068     methods for communicating with the debug target.
45069
45070 commit 24edd56155ed0fa02fdd8f66fdc7aa5a1021bf7d
45071 Author: Keith Packard <keithp@keithp.com>
45072 Date:   Wed Apr 1 17:50:47 2009 -0700
45073
45074     Reset cc1111 on s51 exit
45075
45076 commit 5fcfe854d29e1862d9a6adcbef3ef5119eb52fa3
45077 Author: Keith Packard <keithp@keithp.com>
45078 Date:   Wed Apr 1 00:06:45 2009 -0700
45079
45080     Add timer-based beep test
45081
45082 commit 91607bebdd167ac632aca4b66e22cb0cabdf0d20
45083 Author: Keith Packard <keithp@keithp.com>
45084 Date:   Thu Mar 26 22:41:47 2009 -0700
45085
45086     Add readline support to s51
45087
45088 commit 66ee94ed10e3d79b24f45a5c63e58456d4d30343
45089 Author: Keith Packard <keithp@keithp.com>
45090 Date:   Wed Mar 25 11:37:48 2009 -0700
45091
45092     Deal with MSB-outputing DMA engine
45093
45094 commit d3732fd405af03c3752a84c4b78da7ef5ebd3744
45095 Author: Keith Packard <keithp@keithp.com>
45096 Date:   Wed Mar 25 11:14:03 2009 -0700
45097
45098     Flip ADC bytes around
45099
45100 commit 50cc8e97e76d9b60c622962e1c74cf422dfb2c0f
45101 Author: Keith Packard <keithp@keithp.com>
45102 Date:   Wed Mar 25 11:01:30 2009 -0700
45103
45104     Add spacing for serial adc data
45105
45106 commit 5577ca3762bfc000b0bc3782c73a8f95996a28a6
45107 Author: Keith Packard <keithp@keithp.com>
45108 Date:   Wed Mar 25 10:58:57 2009 -0700
45109
45110     Inc only one on dest addr
45111
45112 commit 378227d869a3e8787c532c8c4e1563b44002c4b5
45113 Author: Keith Packard <keithp@keithp.com>
45114 Date:   Wed Mar 25 10:55:17 2009 -0700
45115
45116     Dump remaining inputs
45117
45118 commit f54a41e37d6897db2e24fbc82880076b78a0ae41
45119 Author: Keith Packard <keithp@keithp.com>
45120 Date:   Wed Mar 25 10:50:36 2009 -0700
45121
45122     Remove poll for ti demo button
45123
45124 commit 2b93a70fdd9e47e8195855451aa19ecad5d8b068
45125 Author: Keith Packard <keithp@keithp.com>
45126 Date:   Wed Mar 25 10:50:14 2009 -0700
45127
45128     Add adc to serial conversion
45129
45130 commit d9fd548db15232e3a8823815962b252c7a5e7cba
45131 Author: Keith Packard <keithp@keithp.com>
45132 Date:   Wed Mar 25 10:04:50 2009 -0700
45133
45134     Add ADC via DMA example
45135
45136 commit 61faf2b773300988fe27cfde5bc045be9950a1b0
45137 Author: Keith Packard <keithp@keithp.com>
45138 Date:   Wed Mar 25 09:45:14 2009 -0700
45139
45140     Add DMA example
45141
45142 commit 7b3fdf5b42c9be9bebc1ceb7a52ff0f5a2a28fcd
45143 Author: Keith Packard <keithp@keithp.com>
45144 Date:   Wed Mar 25 01:05:36 2009 -0700
45145
45146     Back to 0dBm
45147
45148 commit 31d59b88baa2cd96dc6263d1c5877283f2cd8c36
45149 Author: Keith Packard <keithp@keithp.com>
45150 Date:   Wed Mar 25 01:03:08 2009 -0700
45151
45152     Make radio test compile again
45153
45154 commit 9ce713fdd19bf1a51370dacba3670504356c5c11
45155 Author: Keith Packard <keithp@keithp.com>
45156 Date:   Wed Mar 25 01:02:07 2009 -0700
45157
45158     Wait for xtal to stabilize
45159
45160 commit ffd43886dc902f3bb7407294018e3d62cac39480
45161 Author: Keith Packard <keithp@keithp.com>
45162 Date:   Wed Mar 25 00:55:11 2009 -0700
45163
45164     Check serial input
45165
45166 commit 029963cc94fbb47560118b5de73c537e2c14ed7c
45167 Author: Keith Packard <keithp@keithp.com>
45168 Date:   Wed Mar 25 00:50:02 2009 -0700
45169
45170     Eliminate array walking
45171
45172 commit 019456a17d36f8f9f9b72cfbc980492175086d32
45173 Author: Keith Packard <keithp@keithp.com>
45174 Date:   Wed Mar 25 00:41:49 2009 -0700
45175
45176     Add a per-char delay
45177
45178 commit cfaf187e96ba98eb8dd934409a10bc70273fe68a
45179 Author: Keith Packard <keithp@keithp.com>
45180 Date:   Wed Mar 25 00:36:35 2009 -0700
45181
45182     Use UTX1IF to wait for serial TX complete
45183
45184 commit 006124529b243c7657a94312d2c868a82878d8bb
45185 Author: Keith Packard <keithp@keithp.com>
45186 Date:   Wed Mar 25 00:29:29 2009 -0700
45187
45188     Send more interesting text
45189
45190 commit 5049acd3d1ae42304513f667f55a2ddffa4c685a
45191 Author: Keith Packard <keithp@keithp.com>
45192 Date:   Wed Mar 25 00:24:56 2009 -0700
45193
45194     More random serial bit frobbing
45195
45196 commit 50bdc2407c674a4770912d3a626f36820a7f1527
45197 Author: Keith Packard <keithp@keithp.com>
45198 Date:   Wed Mar 25 00:13:15 2009 -0700
45199
45200     Flip serial TX code around a bit
45201
45202 commit 7b7617e376afe0df1d505375b76198358330370c
45203 Author: Keith Packard <keithp@keithp.com>
45204 Date:   Wed Mar 25 00:09:47 2009 -0700
45205
45206     Try serial polarity high/high
45207
45208 commit 18edacdb1e6e429cc29a164e22ef2a566096b9d9
45209 Author: Keith Packard <keithp@keithp.com>
45210 Date:   Wed Mar 25 00:06:32 2009 -0700
45211
45212     Make serial test simpler
45213
45214 commit 62744c186792739c3bf5798c80ff87c69fbe2b65
45215 Author: Keith Packard <keithp@keithp.com>
45216 Date:   Wed Mar 25 00:03:45 2009 -0700
45217
45218     Flip start/stop bits around
45219
45220 commit 9e96107d5d1a9681b07c36bb5860c748bfe10ec0
45221 Author: Keith Packard <keithp@keithp.com>
45222 Date:   Tue Mar 24 23:57:12 2009 -0700
45223
45224     Stop high
45225
45226 commit c41ceb9a488b2209d1d3c09967d1473ce608030f
45227 Author: Keith Packard <keithp@keithp.com>
45228 Date:   Tue Mar 24 23:24:01 2009 -0700
45229
45230     Change radio to -30dBm
45231
45232 commit c35de083ca3d4f362063b056a0fd74ffe629d168
45233 Author: Keith Packard <keithp@keithp.com>
45234 Date:   Tue Mar 24 23:11:48 2009 -0700
45235
45236     Add serial test program
45237
45238 commit 8ecbd8734f0fb5588b2a8eb20720cfc6f43dfb47
45239 Author: Keith Packard <keithp@keithp.com>
45240 Date:   Tue Mar 24 22:37:38 2009 -0700
45241
45242     Wait for xtal to stabilize after changing to 24MHz
45243
45244 commit e120269fc0f8e14ddf1755337b1d092173e16da2
45245 Author: Keith Packard <keithp@keithp.com>
45246 Date:   Tue Mar 24 22:21:31 2009 -0700
45247
45248     Actually return byte read from SPI
45249
45250 commit de1ac6f99a1526fa840a52cfc10fa3edc0589bed
45251 Author: Keith Packard <keithp@keithp.com>
45252 Date:   Tue Mar 24 22:12:51 2009 -0700
45253
45254     Clear UxCSR_TX_BYTE after transmitting a byte
45255
45256 commit 3ed3ff63e46767a256d30c5da5c52ae20089a91d
45257 Author: Keith Packard <keithp@keithp.com>
45258 Date:   Tue Mar 24 20:04:58 2009 -0700
45259
45260     Led the LED turn on
45261
45262 commit 91b3a6ae74184692f45702587c4d678b2799ad8c
45263 Author: Keith Packard <keithp@keithp.com>
45264 Date:   Tue Mar 24 19:55:04 2009 -0700
45265
45266     actually write and compare SPI test bits
45267
45268 commit 7de3a43887485c3c6cf52960376ccde33fb33985
45269 Author: Keith Packard <keithp@keithp.com>
45270 Date:   Tue Mar 24 19:54:02 2009 -0700
45271
45272     Add USART-based SPI test code
45273
45274 commit ef0eef68280e9b6ca5e3bb71062e23054340e1ed
45275 Author: Keith Packard <keithp@keithp.com>
45276 Date:   Tue Mar 24 17:22:36 2009 -0700
45277
45278     Change spi test string
45279
45280 commit 8131389ee5018c05b721146a98367150cf500fdf
45281 Author: Keith Packard <keithp@keithp.com>
45282 Date:   Tue Mar 24 17:15:09 2009 -0700
45283
45284     Oops, not merging in the bit read for SPI test
45285
45286 commit 3429016d1359ec650993d2fb0596184e3f717871
45287 Author: Keith Packard <keithp@keithp.com>
45288 Date:   Tue Mar 24 17:04:45 2009 -0700
45289
45290     Adjust clock/data phase for spi test
45291
45292 commit fedd18b28ea54e1dabcd2f9e8cab3ae4ee0fd070
45293 Author: Keith Packard <keithp@keithp.com>
45294 Date:   Tue Mar 24 16:35:13 2009 -0700
45295
45296     MISO needs to be an input
45297
45298 commit f0c233f25a208a636833312b1766825815735304
45299 Author: Keith Packard <keithp@keithp.com>
45300 Date:   Tue Mar 24 15:41:55 2009 -0700
45301
45302     Add bit-banging spi eeprom test program
45303
45304 commit 6eeee64cf16ccc9218dbdde5426f25bda5e3407f
45305 Author: Bdale Garbee <bdale@gag.com>
45306 Date:   Wed Mar 18 02:58:33 2009 -0600
45307
45308     working beep at around 4khz
45309
45310 commit 4726317de811c20e8d6754762437b5c9cbb3a48c
45311 Author: Keith Packard <keithp@keithp.com>
45312 Date:   Wed Mar 18 01:54:34 2009 -0700
45313
45314     Add simple test program to light up the transmitter at 434.550MHz
45315     
45316     This starts a transmit sequence, but doesn't send any data so the
45317     transmitter just locks on.
45318
45319 commit a0a27600ee2bf237e74eb83767a8d2e7c91df24f
45320 Author: Keith Packard <keithp@keithp.com>
45321 Date:   Sun Mar 15 18:14:21 2009 -0700
45322
45323     Correctly comment which bit the beep program uses
45324
45325 commit 25b77d236c01258abfc03114c2fc9ea2d69ca6e7
45326 Author: Keith Packard <keithp@keithp.com>
45327 Date:   Sun Mar 15 18:11:53 2009 -0700
45328
45329     Add telemetrum beeper example
45330
45331 commit 164b4e4749ad64ebbe26e84fd7b4fa1aa733dbe4
45332 Author: Keith Packard <keithp@keithp.com>
45333 Date:   Sun Mar 15 18:11:20 2009 -0700
45334
45335     sdcc gets the lib path correct based on the model
45336
45337 commit 04a316133af93b79bfbebb91f05eec1015ec2abc
45338 Author: Keith Packard <keithp@keithp.com>
45339 Date:   Sun Mar 15 18:10:43 2009 -0700
45340
45341     Bump debug speed back up
45342
45343 commit 9fd63972758d6d5572f7bcaadec9b1c0e974a2e8
45344 Author: Keith Packard <keithp@keithp.com>
45345 Date:   Sat Mar 7 21:05:40 2009 -0800
45346
45347     Only flip changing bits in async mode
45348
45349 commit c8fd04e154bcfd65ae1200980bd8163caabd7fe4
45350 Author: Keith Packard <keithp@keithp.com>
45351 Date:   Sat Mar 7 21:05:06 2009 -0800
45352
45353     The debug port only works if reset is higher than clock. weird
45354
45355 commit ade11f88754b4ab0386ebf86afc5257e59238f62
45356 Author: Keith Packard <keithp@keithp.com>
45357 Date:   Sat Mar 7 21:04:38 2009 -0800
45358
45359     Make manual bit flipping sync after every transaction
45360
45361 commit e63b5271bb54afc36e4b9891e51e053ff6011092
45362 Author: Keith Packard <keithp@keithp.com>
45363 Date:   Sat Mar 7 14:49:22 2009 -0800
45364
45365     Add ccmanual
45366
45367 commit 77d754afc2d14aaa4413c13ebe3777ef385f62a9
45368 Author: Keith Packard <keithp@keithp.com>
45369 Date:   Sat Mar 7 14:48:49 2009 -0800
45370
45371     Sync after manual bit reading
45372
45373 commit 5a338c8a7394d003355f96a8777b6fe83bb8493c
45374 Author: Keith Packard <keithp@keithp.com>
45375 Date:   Sat Mar 7 14:48:35 2009 -0800
45376
45377     Flip debug pins around to match telemetrum
45378
45379 commit cc0495b7028f4b1189a00707d828a68534d1dea2
45380 Author: Keith Packard <keithp@keithp.com>
45381 Date:   Fri Mar 6 22:52:35 2009 -0800
45382
45383     Wait for a while when switching the RESET_N line
45384     
45385     The cc1111 manual suggests placing a 2.7kΩ resister and 1nF capacitor on the
45386     RESET_N line to filter out noise. This increases the time necessary to reset
45387     the chip to several microseconds which is longer than the interval between
45388     two USB packets. Flush the USB packet queue and sleep for a while after
45389     changing the value on the RESET_N line to make sure the chip sees the state
45390     change.
45391     
45392     Signed-off-by: Keith Packard <keithp@keithp.com>
45393
45394 commit 41289e6d8f1767547a33fea349866e928e44910f
45395 Author: Bdale Garbee <bdale@gag.com>
45396 Date:   Mon Mar 2 07:46:20 2009 -0700
45397
45398     minor s51.1 formatting fixes
45399     
45400     Signed-off-by: Keith Packard <keithp@keithp.com>
45401
45402 commit fdee231ed097a4348aee78fbd4aa92826b80de03
45403 Author: Keith Packard <keithp@keithp.com>
45404 Date:   Sun Mar 1 23:12:31 2009 -0800
45405
45406     Add s51 manual.
45407     
45408     This documents (briefly) the s51 hex debugging interface program, including
45409     some simple commands to test the operation of the system interactively.
45410     
45411     Signed-off-by: Keith Packard <keithp@keithp.com>
45412
45413 commit f7d91bd23b8214e09deae0aafb516331e934c49b
45414 Author: Keith Packard <keithp@keithp.com>
45415 Date:   Sun Mar 1 18:43:03 2009 -0800
45416
45417     Sometimes the link breaks and the GET_PC command returns garbage
45418
45419 commit 3cc8d11eb8d5d0b42141dd84a58d461287f59e3a
45420 Author: Keith Packard <keithp@keithp.com>
45421 Date:   Sun Jan 25 08:38:48 2009 -0800
45422
45423     Support 'set' command
45424     
45425     The 'set' command modifies target memory and registers
45426     
45427     Signed-off-by: Keith Packard <keithp@keithp.com>
45428
45429 commit 60940b4be23962db79b8e914ec943d0636dd68ad
45430 Author: Keith Packard <keithp@keithp.com>
45431 Date:   Mon Jan 5 21:45:21 2009 -0800
45432
45433     Expose ccdbg_set_clock API
45434     
45435     This allows applications to change the debug port clock
45436     rate on the fly.
45437     
45438     Signed-off-by: Keith Packard <keithp@keithp.com>
45439
45440 commit eb09e61b0682eb2aeac8e1a34d58b897ba6db8e7
45441 Author: Keith Packard <keithp@keithp.com>
45442 Date:   Mon Jan 5 21:44:44 2009 -0800
45443
45444     Use custom sdcc libraries (this needs to be configured...)
45445     
45446     Signed-off-by: Keith Packard <keithp@keithp.com>
45447
45448 commit 1ccfe0887c794397131ab1c986c25f66eea86a6c
45449 Author: Keith Packard <keithp@keithp.com>
45450 Date:   Mon Jan 5 21:43:44 2009 -0800
45451
45452     Have S51 ignore SIGINT while running under sdcdb.
45453     
45454     This prevents keyboard interrupts from accidentally stopping
45455     s51.
45456     
45457     Signed-off-by: Keith Packard <keithp@keithp.com>
45458
45459 commit 7c03937b36aac82b08f4ea0c6da33a994fe15ec7
45460 Author: Keith Packard <keithp@keithp.com>
45461 Date:   Tue Dec 30 22:40:13 2008 -0800
45462
45463     Add simple and timer sample programs
45464     
45465     Signed-off-by: Keith Packard <keithp@keithp.com>
45466
45467 commit 6c2a65c743a4ffae96ed27dbc38c1bf9242ed1df
45468 Author: Keith Packard <keithp@keithp.com>
45469 Date:   Tue Dec 30 22:35:53 2008 -0800
45470
45471     Save/restore registers to host during memory operations. Cache ROM data.
45472     
45473     Because the debug port uses instructions for most operations, the debug code
45474     will clobber registers used by the running program. Save and restore these
45475     to avoid corrupting application data.
45476     
45477     If the ROM file is known, use that to return data instead of fetching it
45478     from the target to improve performance.
45479     
45480     Signed-off-by: Keith Packard <keithp@keithp.com>
45481
45482 commit ea366058aa467a8a7caf17e7014758f3741ea7f7
45483 Author: Keith Packard <keithp@keithp.com>
45484 Date:   Mon Dec 29 12:35:11 2008 -0800
45485
45486     Fix flashing less than a full page of data. Verify page at a time.
45487     
45488     The 8051 flashing code requires special help with counts with non-zero low
45489     byte. Also, instead of verifying the entire flash contents at the end,
45490     verify each page as it goes.
45491     
45492     Signed-off-by: Keith Packard <keithp@keithp.com>
45493
45494 commit e0697186a2f9b6139636ff5d5c162879c85caf9c
45495 Author: Keith Packard <keithp@keithp.com>
45496 Date:   Sun Dec 28 00:11:13 2008 -0800
45497
45498     Use SFR access funcs. Support 'dump' command. Add -m (monitor) flag.
45499     
45500     Not all SFRs are visible in the unified address space, so the SFR-specific
45501     accessors are required.
45502     
45503     The dump command is the same as the various 'd*'
45504     commands, but also supports dumping program memory.
45505     
45506     The new -m (monitor) flag watches the command stream between s51 and sdcdb.
45507     
45508     Signed-off-by: Keith Packard <keithp@keithp.com>
45509
45510 commit 23aca1fcbc169184e32d4ec19f28dd4fd4cfda36
45511 Author: Keith Packard <keithp@keithp.com>
45512 Date:   Sun Dec 28 00:09:30 2008 -0800
45513
45514     Save/restore regs when reading/writing memory. Add SFR access.
45515     
45516     The DPL and ACC registers are used by the memory access code,
45517     so they need to be saved and restored. Stuff them up high in ram for now;
45518     this should probably be fixed to pull them back to the host instead.
45519     
45520     Special SFR access is required as not all SFRs are visible in the unified
45521     address space.
45522     
45523     Signed-off-by: Keith Packard <keithp@keithp.com>
45524
45525 commit 1405838160b69e2cda456e21502a1d03b3aa7548
45526 Author: Keith Packard <keithp@keithp.com>
45527 Date:   Sat Dec 27 11:25:58 2008 -0800
45528
45529     s51: get start address from ihx file. re-enable breakpoints after reset.
45530     
45531     Use the start of the ihx file when asked to run from 0x0, this lets
45532     sdcdb run programs from ram.
45533     
45534     The reset command clears all hw breakpoints, so reset them afterwards.
45535     
45536     Signed-off-by: Keith Packard <keithp@keithp.com>
45537
45538 commit 1264c3676e95427bba5d01e05c303d036a7f9eca
45539 Author: Keith Packard <keithp@keithp.com>
45540 Date:   Fri Dec 26 23:05:04 2008 -0800
45541
45542     Switch to libusb-1.0 and use async interface.
45543     
45544     The async libusb interface offers substantial performance benefits by not
45545     making each command wait for the reply. This makes talking over this
45546     interface almost reasonable.
45547     
45548     Signed-off-by: Keith Packard <keithp@keithp.com>
45549
45550 commit d2d9cfd74fd66836c913c02276e09136d83b35dc
45551 Author: Keith Packard <keithp@keithp.com>
45552 Date:   Fri Dec 26 17:58:48 2008 -0800
45553
45554     s51: add breakpoints and the ability to block awaiting a breakpoint.
45555     
45556     Signed-off-by: Keith Packard <keithp@keithp.com>
45557
45558 commit 4c4093c3fdd309123fdd068c0e1ff4947104492d
45559 Author: Keith Packard <keithp@keithp.com>
45560 Date:   Mon Dec 22 19:11:56 2008 -0800
45561
45562     Add more commands to s51 assembly-language debugger
45563     
45564     Signed-off-by: Keith Packard <keithp@keithp.com>
45565
45566 commit 55eba4fa08b022197106245d36a70f575a070b0a
45567 Author: Keith Packard <keithp@keithp.com>
45568 Date:   Mon Dec 22 19:10:27 2008 -0800
45569
45570     Make read_memory debug output use ccdbg_debug.
45571     
45572     This makes it default to not being presented, which makes s51 much happier
45573     
45574     Signed-off-by: Keith Packard <keithp@keithp.com>
45575
45576 commit e75918f3667a5c8ad294bec4acef6fe81682edf6
45577 Author: Keith Packard <keithp@keithp.com>
45578 Date:   Sun Dec 21 23:33:35 2008 -0800
45579
45580     Add preliminary version of s51, a UI clone of the 8051 emulator.
45581     
45582     sdcdb provides source-level debugging using the 8051 emulator, s51. By
45583     emulating that emulator a the UI level, we should be able to get source
45584     debugging right on our target platform.
45585     
45586     This is just the preliminary structure for the program with most commands
45587     not yet implemented.
45588
45589 commit f7d49868aeae80d515b12a7e339628f1296754a6
45590 Author: Keith Packard <keithp@keithp.com>
45591 Date:   Sat Dec 20 23:30:06 2008 -0800
45592
45593     Cleanup work; separating out the cp interface to be more abstract.
45594     
45595     Signed-off-by: Keith Packard <keithp@keithp.com>
45596
45597 commit 30f23f23a6db3d12fdc9c088cf6ab47c5e5077fb
45598 Author: Keith Packard <keithp@keithp.com>
45599 Date:   Fri Dec 19 21:13:04 2008 -0800
45600
45601     Clean up autotools stuff.
45602     
45603     Signed-off-by: Keith Packard <keithp@keithp.com>
45604
45605 commit 9025eb792861930e6af918d2727c4f5d97a69936
45606 Author: Keith Packard <keithp@keithp.com>
45607 Date:   Fri Dec 19 21:11:45 2008 -0800
45608
45609     Autotools.
45610     
45611     Signed-off-by: Keith Packard <keithp@keithp.com>
45612
45613 commit ab909db28307cfbf7ee8d692506bb79d7ffd627a
45614 Author: Keith Packard <keithp@keithp.com>
45615 Date:   Fri Dec 19 19:08:13 2008 -0800
45616
45617     Ignore .ihx files
45618
45619 commit cc8db276bc4f2fd7eb00168a5c0689a8457a5c6f
45620 Author: Keith Packard <keithp@keithp.com>
45621 Date:   Fri Dec 19 19:07:37 2008 -0800
45622
45623     Move blink example to subdir
45624     
45625     Signed-off-by: Keith Packard <keithp@keithp.com>
45626
45627 commit 82e2d7ebed6682062dc400478c736bd6c91195c9
45628 Author: Keith Packard <keithp@keithp.com>
45629 Date:   Fri Dec 19 19:04:26 2008 -0800
45630
45631     Clean up makefiles, move ihx files to .ihx
45632
45633 commit 52fb5f795adfd7f62e5b6dbe65877d14361cfdae
45634 Author: Keith Packard <keithp@keithp.com>
45635 Date:   Fri Dec 19 14:39:57 2008 -0800
45636
45637     ignore more stuff
45638
45639 commit 4ecfc33f16aa36b315519e6f279da65374b67aba
45640 Author: Keith Packard <keithp@keithp.com>
45641 Date:   Fri Dec 19 14:37:53 2008 -0800
45642
45643     Add cc1111 isr stub example
45644
45645 commit d32e6658c3e489b62ba3cf6d22e3ab177b9b8a3a
45646 Author: Keith Packard <keithp@keithp.com>
45647 Date:   Fri Dec 19 14:37:29 2008 -0800
45648
45649     Add blink-tiny flash and ram versions
45650
45651 commit b4d1127ef007843c643b778b3b2f6b915b1d5d9a
45652 Author: Keith Packard <keithp@keithp.com>
45653 Date:   Fri Dec 19 14:19:29 2008 -0800
45654
45655     Flash multiple pages. Eliminate off-by-one error in hex_image length.
45656     
45657     Signed-off-by: Keith Packard <keithp@keithp.com>
45658
45659 commit 55995515b9d4fc1e193039eab697c5d03db417c2
45660 Author: Keith Packard <keithp@keithp.com>
45661 Date:   Fri Dec 19 11:04:16 2008 -0800
45662
45663     Add flash writing code.
45664     
45665     Signed-off-by: Keith Packard <keithp@keithp.com>
45666
45667 commit 0bc52385b8f86f9ca1c450ad106e6d8afe3bc153
45668 Author: Keith Packard <keithp@keithp.com>
45669 Date:   Thu Dec 18 12:37:32 2008 -0800
45670
45671     faster
45672     
45673     Signed-off-by: Keith Packard <keithp@keithp.com>
45674
45675 commit 3779cc8b32cac3640f42bd0400d4199ddae965a1
45676 Author: Keith Packard <keithp@keithp.com>
45677 Date:   Thu Dec 18 12:17:41 2008 -0800
45678
45679     cq
45680     
45681     Signed-off-by: Keith Packard <keithp@keithp.com>
45682
45683 commit dc03adc179669d41e3551d74b3c5a60db41ff217
45684 Author: Keith Packard <keithp@keithp.com>
45685 Date:   Thu Dec 18 12:07:06 2008 -0800
45686
45687     Add ability to load Intel HEX files. Add sample sdcc LED blinker.
45688     
45689     Signed-off-by: Keith Packard <keithp@keithp.com>
45690
45691 commit 807e2adacb025af77bb53c03209e9c8e0d7a5f95
45692 Author: Keith Packard <keithp@keithp.com>
45693 Date:   Thu Dec 18 00:18:50 2008 -0800
45694
45695     Add ability to read/write arbitrary memory. Write LED blinker program.
45696     
45697     Signed-off-by: Keith Packard <keithp@keithp.com>
45698
45699 commit 8c879bf51c14a5928135d59211facd72f6a32808
45700 Author: Keith Packard <keithp@keithp.com>
45701 Date:   Wed Dec 17 23:15:47 2008 -0800
45702
45703     Move manual bit-banging debug code to separate file
45704     
45705     Signed-off-by: Keith Packard <keithp@keithp.com>
45706
45707 commit aec3bbce84a5ceb92060a4b3889379f2af2404ac
45708 Author: Keith Packard <keithp@keithp.com>
45709 Date:   Wed Dec 17 23:15:19 2008 -0800
45710
45711     reduce clock to 50us
45712     
45713     Signed-off-by: Keith Packard <keithp@keithp.com>
45714
45715 commit fa168f963f8b00144d12aa2770e9c0917cfae123
45716 Author: Keith Packard <keithp@keithp.com>
45717 Date:   Wed Dec 17 23:12:59 2008 -0800
45718
45719     Fill out ccdbg-command to support all debug commands.
45720     
45721     Signed-off-by: Keith Packard <keithp@keithp.com>
45722
45723 commit 5df84df7cd6a31527dcfd11030f00ef9d8abf170
45724 Author: Keith Packard <keithp@keithp.com>
45725 Date:   Wed Dec 17 22:24:59 2008 -0800
45726
45727     Clean up bitbanging layer. Add debug printfs.
45728     
45729     Signed-off-by: Keith Packard <keithp@keithp.com>
45730
45731 commit 584e28bac8af38de433767e017977ed1adddeb36
45732 Author: Keith Packard <keithp@keithp.com>
45733 Date:   Wed Dec 17 12:32:15 2008 -0800
45734
45735     Clean up sample debug files
45736     
45737     Signed-off-by: Keith Packard <keithp@keithp.com>
45738
45739 commit e64b4dbf15e9ee1cb0de002985de7575e83d46e9
45740 Author: Keith Packard <keithp@keithp.com>
45741 Date:   Mon Dec 8 17:25:28 2008 -0800
45742
45743     Add support for input-only lines (-)
45744
45745 commit 4f38974a9941cddaba27c17c5a46f923db386c94
45746 Author: Keith Packard <keithp@keithp.com>
45747 Date:   Sat Dec 6 16:32:27 2008 -0800
45748
45749     Add another example
45750
45751 commit 3709ec3205cfb152b6568f3ea505c67fe7504c2a
45752 Author: Keith Packard <keithp@keithp.com>
45753 Date:   Sat Dec 6 16:32:12 2008 -0800
45754
45755     Add libusb support and lots more examples
45756
45757 commit 39801e6e9fb9388072ee414a447f74095a6ac960
45758 Author: Keith Packard <keithp@keithp.com>
45759 Date:   Fri Nov 28 22:57:07 2008 -0800
45760
45761     Random hacking
45762
45763 commit 01cb2799875e086ee6096627c058ee235bbc33d5
45764 Author: Keith Packard <keithp@keithp.com>
45765 Date:   Thu Nov 27 17:07:15 2008 -0800
45766
45767     Add prototypes, add stub mainline, add .gitignore
45768
45769 commit 0ffe4ef870b0e564789a1990aeab5b6651868e5b
45770 Author: Keith Packard <keithp@keithp.com>
45771 Date:   Thu Nov 27 12:33:40 2008 -0800
45772
45773     cc1111 debug port access through cp2103 serial chip