code:rs8encode
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
code:rs8encode [2010/04/19 11:58] – fsphil | code:rs8encode [2010/07/08 15:07] (current) – Move static tables into PROGMEM fsphil | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Reed-Solomon Encoder (255,223) ====== | ====== Reed-Solomon Encoder (255,223) ====== | ||
- | This is the Reed-Solomon encoder as used on the HADIE module. It was originally written by Phil Karn, KA9Q and was modified slightly for use on the AVR. It takes a pointer to (223 - pad) bytes of data and writes 32 bytes of correction data. | + | This is the Reed-Solomon encoder as used on the [[projects:HADIE]] module. It was originally written by Phil Karn, KA9Q and was modified slightly for use on the AVR. It takes a pointer to (223 - pad) bytes of data and writes 32 bytes of correction data, which allows for up to 16 bytes to be corrected by the decoder. |
- | < | + | <del> |
+ | |||
+ | I have since modified fldigi to estimate the number of missing bytes in the data stream, allowing the block decoder to fill any gaps and give the Reed-Solomon decoder a chance to correct it. This has not yet been tested in flight. | ||
+ | |||
+ | For Phil's original code see: http://www.ka9q.net/ | ||
+ | |||
+ | < | ||
* Copyright 2004, Phil Karn, KA9Q | * Copyright 2004, Phil Karn, KA9Q | ||
* May be used under the terms of the GNU Lesser General Public License (LGPL) | * May be used under the terms of the GNU Lesser General Public License (LGPL) | ||
*/ | */ | ||
+ | #include " | ||
#include < | #include < | ||
+ | #include < | ||
#include " | #include " | ||
Line 31: | Line 39: | ||
} | } | ||
- | /* These tables are read-only, and could be stored in flash only with PROGMEM | + | PROGMEM uint8_t alpha_to[] = { |
- | * if RAM usage becomes an issue. They eat up about 646 bytes. | + | |
- | */ | + | |
- | + | ||
- | const uint8_t alpha_to[] = { | + | |
0x01, | 0x01, | ||
0x6F, | 0x6F, | ||
Line 54: | Line 58: | ||
}; | }; | ||
- | const uint8_t index_of[] = { | + | PROGMEM |
0xFF, | 0xFF, | ||
0x04, | 0x04, | ||
Line 73: | Line 77: | ||
}; | }; | ||
- | const uint8_t poly[] = { | + | PROGMEM |
0x00, | 0x00, | ||
0x18, | 0x18, | ||
Line 89: | Line 93: | ||
for(i = 0; i < NN - NROOTS - pad; i++) | for(i = 0; i < NN - NROOTS - pad; i++) | ||
{ | { | ||
- | feedback = index_of[data[i] ^ parity[0]]; | + | feedback = pgm_read_byte(& |
if(feedback != A0) /* feedback term is non-zero */ | if(feedback != A0) /* feedback term is non-zero */ | ||
{ | { | ||
for(j = 1; j < NROOTS; j++) | for(j = 1; j < NROOTS; j++) | ||
- | parity[j] ^= alpha_to[mod255(feedback + poly[NROOTS - j])]; | + | parity[j] ^= pgm_read_byte(& |
} | } | ||
Line 99: | Line 103: | ||
memmove(& | memmove(& | ||
if(feedback != A0) | if(feedback != A0) | ||
- | parity[NROOTS - 1] = alpha_to[mod255(feedback + poly[0])]; | + | parity[NROOTS - 1] = pgm_read_byte(& |
else | else | ||
parity[NROOTS - 1] = 0; | parity[NROOTS - 1] = 0; | ||
} | } | ||
- | }</ | + | } |
+ | </ | ||
<code c>/* rs8.h, Reed-Solomon encoder/ | <code c>/* rs8.h, Reed-Solomon encoder/ |
code/rs8encode.1271678304.txt.gz · Last modified: 2010/04/19 11:58 by fsphil