UKHAS Wiki

UK High Altitude Society

User Tools

Site Tools


code:rs8encode

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
code:rs8encode [2010/05/03 10:10] fsphilcode:rs8encode [2010/07/08 15:07] (current) – Move static tables into PROGMEM fsphil
Line 9: Line 9:
 For Phil's original code see: http://www.ka9q.net/code/fec/ For Phil's original code see: http://www.ka9q.net/code/fec/
  
-<code c>/rs8encode.c, Reed-Solomon encoder+<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 "config.h"
 #include <string.h> #include <string.h>
 +#include <avr/pgmspace.h>
 #include "rs8.h" #include "rs8.h"
  
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,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x87,0x89,0x95,0xAD,0xDD,0x3D,0x7A,0xF4, 0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x87,0x89,0x95,0xAD,0xDD,0x3D,0x7A,0xF4,
 0x6F,0xDE,0x3B,0x76,0xEC,0x5F,0xBE,0xFB,0x71,0xE2,0x43,0x86,0x8B,0x91,0xA5,0xCD, 0x6F,0xDE,0x3B,0x76,0xEC,0x5F,0xBE,0xFB,0x71,0xE2,0x43,0x86,0x8B,0x91,0xA5,0xCD,
Line 60: Line 58:
 }; };
  
-const uint8_t index_of[] = {+PROGMEM uint8_t index_of[] = {
 0xFF,0x00,0x01,0x63,0x02,0xC6,0x64,0x6A,0x03,0xCD,0xC7,0xBC,0x65,0x7E,0x6B,0x2A, 0xFF,0x00,0x01,0x63,0x02,0xC6,0x64,0x6A,0x03,0xCD,0xC7,0xBC,0x65,0x7E,0x6B,0x2A,
 0x04,0x8D,0xCE,0x4E,0xC8,0xD4,0xBD,0xE1,0x66,0xDD,0x7F,0x31,0x6C,0x20,0x2B,0xF3, 0x04,0x8D,0xCE,0x4E,0xC8,0xD4,0xBD,0xE1,0x66,0xDD,0x7F,0x31,0x6C,0x20,0x2B,0xF3,
Line 79: Line 77:
 }; };
  
-const uint8_t poly[] = {+PROGMEM uint8_t poly[] = {
 0x00,0xF9,0x3B,0x42,0x04,0x2B,0x7E,0xFB,0x61,0x1E,0x03,0xD5,0x32,0x42,0xAA,0x05, 0x00,0xF9,0x3B,0x42,0x04,0x2B,0x7E,0xFB,0x61,0x1E,0x03,0xD5,0x32,0x42,0xAA,0x05,
 0x18,0x05,0xAA,0x42,0x32,0xD5,0x03,0x1E,0x61,0xFB,0x7E,0x2B,0x04,0x42,0x3B,0xF9, 0x18,0x05,0xAA,0x42,0x32,0xD5,0x03,0x1E,0x61,0xFB,0x7E,0x2B,0x04,0x42,0x3B,0xF9,
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(&index_of[data[i] ^ parity[0]]);
                 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(&alpha_to[mod255(feedback + pgm_read_byte(&poly[NROOTS - j]))]);
                 }                 }
  
Line 105: Line 103:
                 memmove(&parity[0], &parity[1], sizeof(uint8_t) * (NROOTS - 1));                 memmove(&parity[0], &parity[1], sizeof(uint8_t) * (NROOTS - 1));
                 if(feedback != A0)                 if(feedback != A0)
-                        parity[NROOTS - 1] = alpha_to[mod255(feedback + poly[0])];+                        parity[NROOTS - 1] = pgm_read_byte(&alpha_to[mod255(feedback + pgm_read_byte(&poly[0]))]);
                 else                 else
                         parity[NROOTS - 1] = 0;                         parity[NROOTS - 1] = 0;
         }         }
-}</code>+} 
 +</code>
  
 <code c>/* rs8.h, Reed-Solomon encoder/decoder <code c>/* rs8.h, Reed-Solomon encoder/decoder
code/rs8encode.1272881445.txt.gz · Last modified: 2010/05/03 10:10 by fsphil

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki