From a7042fe7d065d1da1252be5ad43e3c9856214dc8 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 5 Mar 2010 19:11:11 -0800 Subject: update changelogs for Debian build --- ChangeLog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2a3c8fdb..ea64f192 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +commit eda5e1166a97766aa22561beaa1086ba4e19ee16 +Author: Bdale Garbee +Date: Thu Mar 4 17:33:39 2010 -0700 + + update changelogs for Debian build + commit 6e61170d42936c18cd6efba6f4c14af616a30745 Author: Keith Packard Date: Sun Feb 28 18:24:46 2010 -0800 -- cgit v1.2.3 From 93df98898f8cd199ae13158bc4f65e3494c954ad Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Fri, 12 Mar 2010 10:35:12 -0800 Subject: Round radio calibration value instead of truncating The radio calibration function in the bring-up code was truncating the radio calibration value which caused the resulting frequency to always measure above the target frequency, instead of trying to get as close as possible. This change will result in a closer frequency match, but may sometimes be below the target frequency. Signed-off-by: Keith Packard --- ao-bringup/turnon_teledongle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ao-bringup/turnon_teledongle b/ao-bringup/turnon_teledongle index 1786f251..97c1e419 100755 --- a/ao-bringup/turnon_teledongle +++ b/ao-bringup/turnon_teledongle @@ -19,7 +19,7 @@ sleep 5 echo -n "Generating RF carrier. Please enter measured frequency: " read FREQ -CAL_VALUE=`nickle -e "ceil(434.55 / $FREQ * 1186611)"` +CAL_VALUE=`nickle -e "floor(434.55 / $FREQ * 1186611 + 0.5)"` echo "Programming flash with cal value " $CAL_VALUE ao-load --cal $CAL_VALUE /usr/share/altos/teledongle-v0.2.ihx $SERIAL -- cgit v1.2.3 From 23da4f3bcdd1d780c9e1f6b68ad2fb309fcae6ba Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Fri, 12 Mar 2010 10:37:32 -0800 Subject: Document the ao-dumplog '--remote' flag for radio-link downloads The --remote (or -R) flag uses TeleDongle to fetch data over the radio command link from TeleMetrum. It's been there for a while, but the man page failed to mention it. Signed-off-by: Keith Packard --- ao-tools/ao-dumplog/ao-dumplog.1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ao-tools/ao-dumplog/ao-dumplog.1 b/ao-tools/ao-dumplog/ao-dumplog.1 index 8c2df7c6..d381e335 100644 --- a/ao-tools/ao-dumplog/ao-dumplog.1 +++ b/ao-tools/ao-dumplog/ao-dumplog.1 @@ -25,6 +25,8 @@ ao-dumplog \- Store flight log from TeleMetrum device [\--tty \fItty-device\fP] [\-D \fIaltos-device\fP] [\--device \fIaltos-device\fP] +[\--R\fP] +[\--remote\fP] .SH OPTIONS .TP \-T tty-device | --tty tty-device @@ -44,6 +46,10 @@ TeleMetrum Leaving out the product name will cause the tool to select a suitable product, leaving out the serial number will cause the tool to match one of the available devices. +.TP +\-R | --remote +This uses the command radio link to download the log from TeleMetrum +through a TeleDongle. .SH DESCRIPTION .I ao-dumplog downloads the flight log from a connected TeleMetrum device and stores -- cgit v1.2.3