| /* Conversion lookup tables from conventional alpha to Berlekamp's |
| * dual-basis representation. Used in the CCSDS version only. |
| * taltab[] -- convert conventional to dual basis |
| * tal1tab[] -- convert dual basis to conventional |
| * Note: the actual RS encoder/decoder works with the conventional basis. |
| * So data is converted from dual to conventional basis before either |
| * encoding or decoding and then converted back. |
| * Copyright 2002 Phil Karn, KA9Q |
| * May be used under the terms of the GNU Lesser General Public License (LGPL) |
| #define DTYPE unsigned char |
| DTYPE Taltab[256],Tal1tab[256]; |
| static DTYPE tal[] = { 0x8d, 0xef, 0xec, 0x86, 0xfa, 0x99, 0xaf, 0x7b }; |
| /* Generate conversion lookup tables between conventional alpha representation |
| * and Berlekamp's dual basis representation |
| for(i=0;i<256;i++){/* For each value of input */ |
| for(j=0;j<8;j++) /* for each column of matrix */ |
| for(k=0;k<8;k++){ /* for each row of matrix */ |
| Taltab[i] ^= tal[7-k] & (1<<j); |
| printf("unsigned char Taltab[] = {\n"); |
| printf("0x%02x,",Taltab[i]); |
| printf("\n};\n\nunsigned char Tal1tab[] = {"); |
| printf("0x%02x,",Tal1tab[i]); |