<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mjb/altos, branch 1.5</title>
<subtitle>AltOS - the operating system for Altus Metrum products
</subtitle>
<id>https://git.ethernal.org/mjb/altos/atom?h=1.5</id>
<link rel='self' href='https://git.ethernal.org/mjb/altos/atom?h=1.5'/>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/'/>
<updated>2014-09-13T17:30:36+00:00</updated>
<entry>
<title>updated ChangeLog for release</title>
<updated>2014-09-13T17:30:36+00:00</updated>
<author>
<name>Bdale Garbee</name>
<email>bdale@gag.com</email>
</author>
<published>2014-09-13T17:30:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=07336fe0cde8900d30858957164b09f05a6cf23e'/>
<id>urn:sha1:07336fe0cde8900d30858957164b09f05a6cf23e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ignore cal_values file in bringup directory</title>
<updated>2014-09-13T17:29:19+00:00</updated>
<author>
<name>Bdale Garbee</name>
<email>bdale@gag.com</email>
</author>
<published>2014-09-13T17:29:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=d16e60858427bf7dbe83a858728ebf097a09207a'/>
<id>urn:sha1:d16e60858427bf7dbe83a858728ebf097a09207a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>need multi-arch in fat build</title>
<updated>2014-09-13T17:28:19+00:00</updated>
<author>
<name>Bdale Garbee</name>
<email>bdale@gag.com</email>
</author>
<published>2014-09-13T17:28:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=40885ae5e6be66faf08cdb9b481d1d998856ca4b'/>
<id>urn:sha1:40885ae5e6be66faf08cdb9b481d1d998856ca4b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>altos: Make sure we don't beep out continuity twice in idle mode</title>
<updated>2014-09-13T17:26:21+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2014-09-12T02:56:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=e969172a81e24f70c349b10f429e69817900c307'/>
<id>urn:sha1:e969172a81e24f70c349b10f429e69817900c307</id>
<content type='text'>
If the battery voltage report takes longer than the initialiation
sequence, we could get to the state reporting after the state had
switched from startup to idle. This would result in continuity being
reported the first time through the loop. Then, as the state had
already changed, we'd pass through the while test and go back to
report continuity a second time.

Fixed by using the state remembered before beeping out the voltage to
decide whether to report the continuity.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: Fix ability to disable telemetry by setting interval to 0</title>
<updated>2014-09-13T17:26:13+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2014-09-11T22:00:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=800f3377b1a374ad5cf826aa897efdcb08059040'/>
<id>urn:sha1:800f3377b1a374ad5cf826aa897efdcb08059040</id>
<content type='text'>
For non-zero telemetry intervals, the radio code limits the value
based on the data rate. However, a zero interval means that telemetry
should be entirely disabled, so that value should be left alone when
checking.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>telegps: Was mis-configuring the 'Configure Device' dialog</title>
<updated>2014-09-13T17:26:06+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2014-09-11T21:23:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=793588e218102204e69755a16bc32ea5c67f29c7'/>
<id>urn:sha1:793588e218102204e69755a16bc32ea5c67f29c7</id>
<content type='text'>
Make sure we show 'rate_label' instead of showing 'radio_enable_label'
twice.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altoslib: Stop re-loading previous flight when starting telemetry monitoring</title>
<updated>2014-09-13T17:25:57+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2014-09-11T21:14:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=19730b872c61f34724b0f187f71cccb6a65251dd'/>
<id>urn:sha1:19730b872c61f34724b0f187f71cccb6a65251dd</id>
<content type='text'>
This feature is necessary on AltosDroid because there's no other UI
for reloading an old flight. It's not useful on the desktop where you
really just want to see new telemetry; old telemetry is availbale
through the 'graph flight' or 'replay' mechanisms.

AltosDroid uses a different class for reading telemetry data, so we
can just remove this feature from altoslib at this point.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>update changelog for release</title>
<updated>2014-09-10T07:33:33+00:00</updated>
<author>
<name>Bdale Garbee</name>
<email>bdale@gag.com</email>
</author>
<published>2014-09-10T07:33:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=10e31d84ee5cdf10248988079df91354ae6ed612'/>
<id>urn:sha1:10e31d84ee5cdf10248988079df91354ae6ed612</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'master' into branch-1.5</title>
<updated>2014-09-10T07:32:27+00:00</updated>
<author>
<name>Bdale Garbee</name>
<email>bdale@gag.com</email>
</author>
<published>2014-09-10T07:32:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=05e4094411f861bf29bea2e9c39c1b66f8f267f8'/>
<id>urn:sha1:05e4094411f861bf29bea2e9c39c1b66f8f267f8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use dh_installmime, which requires telling configure to stay out of the way</title>
<updated>2014-09-10T07:31:34+00:00</updated>
<author>
<name>Bdale Garbee</name>
<email>bdale@gag.com</email>
</author>
<published>2014-09-10T07:29:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=2ee937b603b181bb24768eb4d0e2f918a5377fd3'/>
<id>urn:sha1:2ee937b603b181bb24768eb4d0e2f918a5377fd3</id>
<content type='text'>
</content>
</entry>
</feed>
