X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=ChangeLog;h=59ada26224d8729678fa74093ee4447912f89f53;hp=bf0aa2553d63b9338b19c12209188f7f33925101;hb=45e2938121411d1fc9b3aec3fdeaaeb3c90db5ed;hpb=b9a97aea65f871fd287bc0bb566d8664766f4afd diff --git a/ChangeLog b/ChangeLog index bf0aa255..59ada262 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,310 @@ +commit d42ebf0661ecf15455e5051de1e16ae66f8dd857 +Merge: 384dbe9 7a19aac +Author: Bdale Garbee +Date: Sun Sep 6 14:02:09 2009 -0600 + + Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos + +commit 7a19aac5e881e635962a64fff73027ca2143b96f +Author: Keith Packard +Date: Sun Sep 6 12:51:48 2009 -0700 + + Add DSP code to filter data, allowing for integration/differentiation + + This adds the computation of speed from both accelerometer and + barometer measurements and then presents a periodic flight profile + using filtered data as a detailed flight record. + + Signed-off-by: Keith Packard + +commit 384dbe9fc7fa8e4e5dceec5e150f0f1d3383bbdc +Author: Bdale Garbee +Date: Sun Sep 6 10:40:06 2009 -0600 + + update changelogs for Debian build + +commit 35c54b3a278fa9bc2bc7f4b5ee04866697c93ba0 +Merge: 4f8eff7 6d018ab +Author: Bdale Garbee +Date: Sun Sep 6 10:39:23 2009 -0600 + + Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos + +commit 6d018ab933832e2d80bb1564c339d9fb18b57be2 +Author: Keith Packard +Date: Sat Sep 5 22:45:49 2009 -0700 + + Handle vageries of .telem files in ao-postflight + + Telem files have multiple entries of the same state, and sometimes + long gaps between recordings. Deal with this as best as possible. + + Signed-off-by: Keith Packard + +commit c46e832b28820d7c5be4efaacbbd7c0607927fe5 +Author: Keith Packard +Date: Sat Sep 5 22:03:31 2009 -0700 + + Add simple post-flight analysis tool (ao-postflight) + + This tool reads either an eeprom or telem log file and displays some + rudimentary data (max accel/alt for each flight stage). + + Signed-off-by: Keith Packard + +commit 26f56b51bd11aa91f1d77b81827b49c28cb6ec5f +Author: Keith Packard +Date: Sat Sep 5 00:29:26 2009 -0700 + + Add ao-dumplog to capture flight log from command line + + This duplicates the functionality of the flight log stuf in ao-view, + except from the command line where it belongs. + + Signed-off-by: Keith Packard + +commit 73adae3661160d410dcc802873b530d255c210e5 +Author: Keith Packard +Date: Fri Sep 4 15:30:22 2009 -0700 + + Add --device/-D support to the command line tools and manuals + + Use the new cc_usbdevs_find_by_arg function to locate suitable target + devices connected via USB. + + Signed-off-by: Keith Packard + +commit 4f8eff7401ee2d8092ab36fa33411f9b23dda880 +Author: Bdale Garbee +Date: Fri Sep 4 16:03:55 2009 -0600 + + update changelogs for Debian build + +commit 332b056459b1352e233a8bf5f08498df12d32160 +Author: Keith Packard +Date: Fri Sep 4 15:01:32 2009 -0700 + + 'fix' ao-eeprom to read two blocks at once. Work around kernel bugs. + + The kernel appears to leave serial data undelivered at times. Reading + two blocks at once appears to make it relinquish the queued data. + + Signed-off-by: Keith Packard + +commit df88ae4c5f229efcc0ea5cb0a81fc2bb8f96fea2 +Author: Keith Packard +Date: Fri Sep 4 14:23:02 2009 -0700 + + Add 'ao-list' utility to show attached AltOS devices + + Signed-off-by: Keith Packard + +commit 0935d6a7e907e20381a42882ae728051f9bece02 +Author: Keith Packard +Date: Fri Sep 4 14:21:19 2009 -0700 + + Parse the USB serial number as an integer. + + AltOS devices use simple integer serial numbers, so parse the USB + value as such to make matching values more forgiving. + + Signed-off-by: Keith Packard + +commit 0c771d999914f9d17c723900f2987acc45fd0fbb +Author: Keith Packard +Date: Fri Sep 4 13:00:02 2009 -0700 + + Move usb scanning code to ao-tools library + + This will allow the scanning code to be used by the command line tools + as well as the ao-view GUI. + + Now that ao-view depends on the ao-tools library, it has been moved to + the ao-tools directory as well. + + Signed-off-by: Keith Packard + +commit 15341b6e6dcf52df083d6aa37ef881ea6ad48ee5 +Author: Keith Packard +Date: Fri Sep 4 12:25:37 2009 -0700 + + Set all of the values to reset the radio for telemetry + + Was sizeof(rdf_setup) instead of sizeof(telemetry_setup) when + resetting the radio back to telemetry data mode from rdf mode. With + the length value removed from the rdf config, these two arrays are no + longer the same length, and so the last config value was not set + leaving the radio sending garbage. + + Signed-off-by: Keith Packard + +commit fee46389b70a624ab5b1128a8b4c3083c7747bcb +Author: Keith Packard +Date: Fri Sep 4 11:46:55 2009 -0700 + + Make RDF beacon only run on pad and after landing. + + It's pretty much impossible to RDF the rocket during flight, and it + interferes with the telemetry data stream. Leave it enabled on the pad + so that radios can be tested, and then re-enable it once the rocket + has landed. + + This patch also turns the rdf 'on' time into a parameter so it can be + changed, and then sets that parameter to 500ms, once every 5 seconds. + + Signed-off-by: Keith Packard + +commit 54545640b0db7747137655f84bc67fd290ecb904 +Author: Keith Packard +Date: Fri Sep 4 11:45:52 2009 -0700 + + Add back the RDF tone generator + + Tracking the rocket on the ground may be easier using tones than using + the digital data stream, so we'll try that and see what we think. + + This reverts commit 3a3bfd471a868d546d83cdc431b53c8f5208edb9. + + Signed-off-by: Keith Packard + +commit 9fafee109e96435c96639b21211cac0500673a63 +Author: Bdale Garbee +Date: Wed Sep 2 23:18:15 2009 -0600 + + update changelogs for Debian build + +commit cb4a73f3b65ba72f645fd37ab8712829c9537bf8 +Merge: 9ddd869 e2e449d +Author: Bdale Garbee +Date: Wed Sep 2 23:17:37 2009 -0600 + + Merge commit 'origin/master' + +commit e2e449d5c23356e913f312de1fb2611a9dd5a352 +Author: Keith Packard +Date: Wed Sep 2 22:01:52 2009 -0700 + + Remove bit-banging debug support from TM board builds + + Our current TM boards don't have the wires to do bit-banging to + another cc1111 board, so it doesn't make sense to fill up their flash + with useless code (and the 'help' text with useless commands). Leave + this to the TI board until we have boards that can serve as debug dongles. + + Signed-off-by: Keith Packard + +commit acea083d80e1ecc4287083519ea666964016b257 +Author: Keith Packard +Date: Wed Sep 2 22:00:37 2009 -0700 + + Make the ao_log_record structures 8 bytes again. + + When the GPS signal strength data was added, the structure was + accidentally extended to 9 bytes, making all log records 9 bytes + long. While not a serious problem, this left log records spanning + across eeprom block boundaries, which seems like a bad plan. + + Signed-off-by: Keith Packard + +commit 7d39f17684feb49ac8a0017902158f298696e37c +Author: Keith Packard +Date: Wed Sep 2 21:57:54 2009 -0700 + + Make eeprom reads and writes across block boundary work + + Reading and writing across the block boundary was not stepping the + eeprom position after the partial i/o operation at the end of the + first block. This meant that the operation would re-use the end of the + previous block, either re-reading or re-writing it. + + Signed-off-by: Keith Packard + +commit 9ddd8696b4004ccc03238d95a8c2a1d07075e0fb +Author: Bdale Garbee +Date: Mon Aug 31 16:48:03 2009 -0600 + + update changelogs for Debian build + +commit 6926c4ab5d87a8f2eb4fcde2c673fb3a4639e115 +Author: Bdale Garbee +Date: Mon Aug 31 16:47:44 2009 -0600 + + pixmap file should not be executable + +commit 1495e2f27acde3743c3764a0c31ee082224d6c64 +Author: Bdale Garbee +Date: Mon Aug 31 16:42:55 2009 -0600 + + update changelogs for Debian build + +commit c8c5b7963babe8eb16e2651fba9cd2c8d1cba74e +Author: Bdale Garbee +Date: Mon Aug 31 16:42:37 2009 -0600 + + deliver an icon for the Debian menu system + +commit 591b99c232e780246fc07841c09c8c4e7835facb +Author: Bdale Garbee +Date: Mon Aug 31 16:26:00 2009 -0600 + + update changelogs for Debian build + +commit b34474c1f3083e73b7184d519f54d4c8031836fd +Merge: 8df1697 0d65bff +Author: Bdale Garbee +Date: Mon Aug 31 16:25:32 2009 -0600 + + Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos + +commit 6358041f846ba9a20fa650c367d907dc4336e54c +Author: Keith Packard +Date: Sat Aug 22 13:38:56 2009 -0700 + + Enable GPS degraded mode, set 10 sec degraded timeout. + + No reason not to let the GPS report solutions whenever it likes, let's + see how this works. + + Signed-off-by: Keith Packard + +commit 0d65bff443c17d4d98c18b620ec075ab66b30efd +Author: Keith Packard +Date: Fri Aug 21 10:47:46 2009 -0700 + + Turn off GPS tracking data when not present in data stream + + Signed-off-by: Keith Packard + +commit 8df169791835510d96c11a3b0aa3cc5b79fa7fde +Author: Bdale Garbee +Date: Wed Aug 19 02:21:23 2009 -0600 + + update changelogs for Debian build + +commit 42ab6d52540d0326ef89e9d57954b08248558468 +Author: Bdale Garbee +Date: Wed Aug 19 02:21:06 2009 -0600 + + fix location for delivery of sources.list fragment + +commit 977f5dc0bc7c666dcc1f21db77416efca0d696aa +Author: Bdale Garbee +Date: Wed Aug 19 02:11:11 2009 -0600 + + update changelogs for Debian build + +commit 8d4d6655f1b4c2fbc522fd255bfb75406e5ddaef +Author: Bdale Garbee +Date: Wed Aug 19 02:11:00 2009 -0600 + + oops, aoview is now ao-view! + +commit b9a97aea65f871fd287bc0bb566d8664766f4afd +Author: Bdale Garbee +Date: Wed Aug 19 02:07:16 2009 -0600 + + update changelogs for Debian build + commit 21e3dd0affac89919e5d0e29c6e9eb1eacb51801 Author: Bdale Garbee Date: Wed Aug 19 02:06:49 2009 -0600