code:rs8encode
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
code:rs8encode [2010/05/03 10:10] – fsphil | code:rs8encode [2010/07/08 15:07] (current) – Move static tables into PROGMEM fsphil | ||
---|---|---|---|
Line 9: | Line 9: | ||
For Phil's original code see: http:// | For Phil's original code see: http:// | ||
- | <code c>/ | + | <code c>/* Reed-Solomon encoder |
* 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 37: | 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 60: | Line 58: | ||
}; | }; | ||
- | const uint8_t index_of[] = { | + | PROGMEM |
0xFF, | 0xFF, | ||
0x04, | 0x04, | ||
Line 79: | Line 77: | ||
}; | }; | ||
- | const uint8_t poly[] = { | + | PROGMEM |
0x00, | 0x00, | ||
0x18, | 0x18, | ||
Line 95: | 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 105: | 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.1272881445.txt.gz · Last modified: 2010/05/03 10:10 by fsphil