<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mjb/altos/altoslib, branch 1.3</title>
<subtitle>AltOS - the operating system for Altus Metrum products
</subtitle>
<id>https://git.ethernal.org/mjb/altos/atom?h=1.3</id>
<link rel='self' href='https://git.ethernal.org/mjb/altos/atom?h=1.3'/>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/'/>
<updated>2013-12-19T06:00:13+00:00</updated>
<entry>
<title>altoslib: Remove some old debug printfs for self flashing</title>
<updated>2013-12-19T06:00:13+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-19T06:00:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=3b13cc2ca035b13582cd2e59ba7286f872f43c6e'/>
<id>urn:sha1:3b13cc2ca035b13582cd2e59ba7286f872f43c6e</id>
<content type='text'>
These aren't necessary anymore and just slow down flashing boards.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altosui: Remove some debug printfs</title>
<updated>2013-12-18T21:36:04+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-18T21:36:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=c1bfe09b6d3eb28d0c7cfe07a248843cf81bcd25'/>
<id>urn:sha1:c1bfe09b6d3eb28d0c7cfe07a248843cf81bcd25</id>
<content type='text'>
Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altoslib: Define 3.8 as a good battery and 3.5 as a good igniter</title>
<updated>2013-12-18T21:22:45+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-18T21:22:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=dbcf3264f950c4e1d450828c9f161b4c418bee97'/>
<id>urn:sha1:dbcf3264f950c4e1d450828c9f161b4c418bee97</id>
<content type='text'>
Use defined values everywhere instead of copying. Adjust battery up to
3.8 to ensure there's enough voltage to not trip the comparators

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altoslib: create eeprom download thread before telling monitor about it</title>
<updated>2013-12-18T21:09:48+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-18T21:09:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=b19a648b667c298d2d9d5ed4ee9db661be058d1a'/>
<id>urn:sha1:b19a648b667c298d2d9d5ed4ee9db661be058d1a</id>
<content type='text'>
Telling the monitor too early resulted in passing a null thread
handle, which meant that 'cancel' wouldn't ever work.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altoslib: Don't close telemetry reader at startup unless something fails</title>
<updated>2013-12-18T20:40:22+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-18T20:40:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=216405bc49ef2fc0e9941989f054e41f2fef9cfe'/>
<id>urn:sha1:216405bc49ef2fc0e9941989f054e41f2fef9cfe</id>
<content type='text'>
Was always closing the file, which led to very little telemetry being received.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altosui: Hide non-applicable altimeter config values</title>
<updated>2013-12-18T10:03:15+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-18T10:03:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=77b04d662a6704f5db10522a2f9b169d31df5bea'/>
<id>urn:sha1:77b04d662a6704f5db10522a2f9b169d31df5bea</id>
<content type='text'>
This makes configuring EasyMini a lot easier...

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altoslib: Pass InterruptedException up the stack instead of hiding it</title>
<updated>2013-12-18T09:14:11+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-18T09:14:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=e26306c9350ef1d107d4257ef1c09d15165c9154'/>
<id>urn:sha1:e26306c9350ef1d107d4257ef1c09d15165c9154</id>
<content type='text'>
When interrupting a thread that is talking to a serial device, it's
important not to have that thread discard the InterruptedException so
that it will actually terminate. This patch removes a bunch of places
that were discarding InterruptedExceptions and lets higher level code
see them so that they can exit cleanly.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>java: Add -target 1.6 to all java compiles</title>
<updated>2013-12-10T08:51:01+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-10T08:51:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=8959c059ec67f5334e31abbe3f831dd571a0b464'/>
<id>urn:sha1:8959c059ec67f5334e31abbe3f831dd571a0b464</id>
<content type='text'>
This makes sure the results can run with the old JVM

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altoslib: Don't require radio_cal or usb_descriptors in AltosRomconfig</title>
<updated>2013-12-09T04:33:22+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-09T04:33:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=fd92bb8ff3be257925bf6e969d93a7f9dd941fb8'/>
<id>urn:sha1:fd92bb8ff3be257925bf6e969d93a7f9dd941fb8</id>
<content type='text'>
Not all products will have these values, so allow them to be missing

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altoslib: Add self-flashing code</title>
<updated>2013-12-09T04:09:10+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-12-09T04:09:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=2cdb90d9214f8e66b3574cbd9c5ed073a7861681'/>
<id>urn:sha1:2cdb90d9214f8e66b3574cbd9c5ed073a7861681</id>
<content type='text'>
This adds the ability to use the AltOS flash-loader on both STM and
NXP processors.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
</feed>
