<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mjb/altos/src/core/ao_viterbi.c, 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>2012-06-27T05:16:44+00:00</updated>
<entry>
<title>altos: rename ao_viterbi.c to ao_fec_rx.c</title>
<updated>2012-06-27T05:16:44+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-27T05:16:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=eab18714ed9eabbcef0ff81b07427da042a58ccc'/>
<id>urn:sha1:eab18714ed9eabbcef0ff81b07427da042a58ccc</id>
<content type='text'>
Keep it parallel with ao_fec_tx.c

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: Incremental viterbi decode</title>
<updated>2012-06-25T13:51:36+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-25T13:51:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=09761fe0f6ed40ff74317fbb47d6a74068fb4ce4'/>
<id>urn:sha1:09761fe0f6ed40ff74317fbb47d6a74068fb4ce4</id>
<content type='text'>
Decode radio input one interleave block at a time. This overlaps the
decode computation with the packet reception, leading to lower latency
in an attempt to keep up with the transmitter.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: decode cc1120 received packets</title>
<updated>2012-06-25T13:38:34+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-25T13:38:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=628076aa90e7bc9a894646e417dd8e1fe149b60d'/>
<id>urn:sha1:628076aa90e7bc9a894646e417dd8e1fe149b60d</id>
<content type='text'>
Call the fec decode function, compute RSSI and check CRC

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: Get cc1120 packet reception working</title>
<updated>2012-06-25T12:03:34+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-25T12:03:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=70cf32e89df19bde5185339fc703532c8a5b8be6'/>
<id>urn:sha1:70cf32e89df19bde5185339fc703532c8a5b8be6</id>
<content type='text'>
Interrupt-per-bit, but it seems to work

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: improve FEC apis to reduce data copying</title>
<updated>2012-06-23T23:05:42+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-23T23:05:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=b292c14790fc225029cba3f80ce8ad6c5652bc4e'/>
<id>urn:sha1:b292c14790fc225029cba3f80ce8ad6c5652bc4e</id>
<content type='text'>
Integrate interleaving and whitening into encode and decode steps.
Add CRC checking function for receive.

Make ao_fec_test program round-trip the data and verify correctness.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: fix comment about decoding last byte of FEC data</title>
<updated>2012-06-23T09:23:08+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-23T09:23:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=566a0c277de01963922cabc80db8ec3a129923bd'/>
<id>urn:sha1:566a0c277de01963922cabc80db8ec3a129923bd</id>
<content type='text'>
There aren't *any* forward bits to use when decoding the last byte.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: optimize Viterbi implementation</title>
<updated>2012-06-23T09:12:58+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-23T09:12:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=f7bf07dfdad260c1f219064957ef08fb480bf20f'/>
<id>urn:sha1:f7bf07dfdad260c1f219064957ef08fb480bf20f</id>
<content type='text'>
Minimize data usage, make data arrays static

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: incremental viterbi decode</title>
<updated>2012-06-23T07:54:42+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-23T07:54:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=ff8de3af193839de4bacfd07ade7a5f9ac0bf5b3'/>
<id>urn:sha1:ff8de3af193839de4bacfd07ade7a5f9ac0bf5b3</id>
<content type='text'>
Decode bits incrementally. Don't bother decoding the last byte; it's
always a pad byte.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: Start optimizing viterbi decoder</title>
<updated>2012-06-23T06:31:11+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-23T06:31:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=047e95421c87c5d056038797b48f759bedabf245'/>
<id>urn:sha1:047e95421c87c5d056038797b48f759bedabf245</id>
<content type='text'>
Only need two cost arrays (previous and next). Create constant
full-width decoder table instead of expanding bits into bytes for each
decode step.

Signed-off-by: Keith Packard &lt;keithp@keithp.com&gt;
</content>
</entry>
<entry>
<title>altos: Add the simplest possible viterbi decoder</title>
<updated>2012-06-23T06:12:02+00:00</updated>
<author>
<name>Keith Packard</name>
<email>keithp@keithp.com</email>
</author>
<published>2012-06-23T06:12:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ethernal.org/mjb/altos/commit/?id=cbf79a0f9cb859d04e8e03d627219cb2bf49611f'/>
<id>urn:sha1:cbf79a0f9cb859d04e8e03d627219cb2bf49611f</id>
<content type='text'>
I think I understand how it works now. It's not exactly speedy, and it
uses a lot of memory.

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