參數(shù)資料
型號: AN2407
廠商: 飛思卡爾半導體(中國)有限公司
英文描述: Reed Solomon Encoder/Decoder on the StarCore SC140/SC1400 Cores, With Extended Examples
中文描述: 里德所羅門編碼器/的StarCore SC140/SC1400核心解碼器,以擴展實例
文件頁數(shù): 22/48頁
文件大小: 306K
代理商: AN2407
Reed Solomon Encoder/Decoder on the StarCore SC140/SC1400 Cores, With Extended Examples, Rev. 1
22
Freescale Semiconductor
References
Example 4.
C Code for Roots Search
int roots_search(BYTE *roots, WORD *error_loc_poly, WORD *roots_poly, BYTE*
error_locations)
{
int i,j;
BYTE acc;
WORD x_power, y_power, power;
int k = 0;
int n_roots = 0;
for (i=0; i<256; i++)
{
roots[i] = 0x00;
}
for (i=0; i<(T+1); i++)
{
x_power = error_loc_poly[i];
for (j=0; j<256; j++)
{
y_power = exp_table_for_syndrome[i][j];
power = MIN((x_power + y_power),2*N+1);
roots[j] ^= (exp_2_bin_extended[power]);
}
}
for (i=0; i<256; i++)
{
if (roots[i] == 0)
{
n_roots++;
roots_poly[k] = i;
error_locations[k] = (N-i) % N;
k++;
}
}
return n_roots;
}
Example 5.
C Code for Forney Algorithm
void forney(BYTE *s, WORD *elp, BYTE *el, DWORD n, BYTE *err_locs, WORD *roots,
BYTE *block)
{
WORD z[T+1];
BYTE temp, nom, denom;
WORD x_power, y_power, power;
int i,j;
/* Determine the error evaluator polynomial Z(x) */
temp = s[0] ^ el[1];
z[0] = bin_2_exp[temp];
相關PDF資料
PDF描述
AN2410S Video Camera Circuit
AN2441S Color Encoder Circuit
AN246 Transmission lines and terminations with Philips Advanced Logic families
AN2510S Video Camera Circuit
AN2512S Video Camera Circuit
相關代理商/技術參數(shù)
參數(shù)描述
AN2407FHP 制造商:Panasonic Industrial Company 功能描述:IC
AN241 制造商:Panasonic Industrial Company 功能描述:IC
AN2410S 制造商:未知廠家 制造商全稱:未知廠家 功能描述:Video Camera Circuit
AN2416 制造商:VYNCKIER ENCLOSURE SYSTEMS 功能描述:ENCLOSURE, JUNCTION BOX, POLYESTER BEIGE; Enclosure Type:Junction Box; Enclosure Material:Fiberglass Reinforced Polyester; Body Color:Beige; External Height - Imperial:24.21"; External Height - Metric:615mm; IP Rating:IP66 ;RoHS Compliant: Yes
AN2416PL 制造商:VYNCKIER ENCLOSURE SYSTEMS 功能描述:ENCLOSURE, JUNCTION BOX, POLYESTER BEIGE; Enclosure Type:Junction Box; Enclosure Material:Fiberglass Reinforced Polyester; Body Color:Beige; External Height - Imperial:24.21"; External Height - Metric:615mm; IP Rating:IP66 ;RoHS Compliant: Yes