<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mjb/altos/src/lpc, branch telegps-v0.3</title>
<subtitle>AltOS - the operating system for Altus Metrum products
</subtitle>
<id>https://git.ethernal.org/mjb/altos/atom?h=telegps-v0.3</id>
<link rel='self' href='https://git.ethernal.org/mjb/altos/atom?h=telegps-v0.3'/>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/'/>
<updated>2013-08-17T15:45:06+00:00</updated>
<entry>
<title>altos: Wake up on LPC usart ISR only once</title>
<updated>2013-08-17T15:45:06+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-08-17T15:45:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=0dd55f66d79f54b450fd8122aecd84d68b810bf4'/>
<id>urn:sha1:0dd55f66d79f54b450fd8122aecd84d68b810bf4</id>
<content type='text'>
Instead of waking up after every character, wait until the FIFO is
empty to reduce overhead

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: Set default LPC stack to 512 bytes, Em to 384 bytes</title>
<updated>2013-08-17T15:44:01+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-08-17T15:43:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=a0dd93ccf0920260b41c4003955617fd0cd1c8b4'/>
<id>urn:sha1:a0dd93ccf0920260b41c4003955617fd0cd1c8b4</id>
<content type='text'>
The default for lpc has been raised to 512 bytes, but Em doesn't have
enough RAM for that.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Rename serial port to 'serial0'</title>
<updated>2013-07-03T00:55:24+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-24T21:29:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=c542a2ed0f222bd0ec84e4a9651585d441dd7ccf'/>
<id>urn:sha1:c542a2ed0f222bd0ec84e4a9651585d441dd7ccf</id>
<content type='text'>
This lets existing serial port users find the right function.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Add boot loader</title>
<updated>2013-06-24T21:30:22+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-24T21:23:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=0dd148e388944d8d265da51d62806c4a00b2c13d'/>
<id>urn:sha1:0dd148e388944d8d265da51d62806c4a00b2c13d</id>
<content type='text'>
Support the USB boot loader, add USB pull-up support.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Don't disable all interrupts when disabling one interrupt</title>
<updated>2013-06-22T07:49:59+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-22T02:40:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=58eda6f873f5d6e8e219f769bdf67ce4dbc96fd7'/>
<id>urn:sha1:58eda6f873f5d6e8e219f769bdf67ce4dbc96fd7</id>
<content type='text'>
The nvic iser and icer registers read value indicates all enabled
interrupts, icer writes disable the set interrupts. Re-writing icer
with the current value ends up disabling all interrupts, not exactly
what we wanted.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Remove ao_usb_task structure</title>
<updated>2013-06-22T07:49:59+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-22T02:40:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=9081d881bc48bf7fdce617d300ac02c1a5962239'/>
<id>urn:sha1:9081d881bc48bf7fdce617d300ac02c1a5962239</id>
<content type='text'>
It's not used

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Enable brown-out-detector</title>
<updated>2013-06-22T07:49:59+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-22T02:39:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=23f11b188fc6aacd29e7f01a7d8a40853b7655df'/>
<id>urn:sha1:23f11b188fc6aacd29e7f01a7d8a40853b7655df</id>
<content type='text'>
Make sure the processor does something sensible when the power disappears.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Get rid of ADC filter</title>
<updated>2013-06-17T21:52:32+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-17T21:52:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=025beb0fea011d0e3dab59b5d16e7ffae97c613c'/>
<id>urn:sha1:025beb0fea011d0e3dab59b5d16e7ffae97c613c</id>
<content type='text'>
Now that the source of the Vcc noise has been identified, remove the
unnecessary ADC filtering.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Get the IRC turned off after boot time</title>
<updated>2013-06-17T21:00:11+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-17T21:00:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=298e54856b5f8809b43f24407caa4a6be60822f3'/>
<id>urn:sha1:298e54856b5f8809b43f24407caa4a6be60822f3</id>
<content type='text'>
This involved carefully moving the USB away from the IRC before
turning it off.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos/lpc: Remove spurious semicolon</title>
<updated>2013-06-17T05:31:58+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2013-06-17T05:31:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=dcf769198863c1b0f1b05f41d0c052a3dbfef247'/>
<id>urn:sha1:dcf769198863c1b0f1b05f41d0c052a3dbfef247</id>
<content type='text'>
Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
</feed>
