btcdecode.h

来自「wimax802.16e中的BTC编码仿真程序」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef BTCDECODE_H
#define BTCDECODE_H
/*
*********************************************************************************
*                               INCLUDE FILES
*********************************************************************************
*/
#include "..\..\GlobalDef.h"
#include "..\..\GlobalVar.h"

/*
*********************************************************************************
* NAME:		BTCdecode
* PURPOSE:	decoding BTC with concatenation of slots.
*
* Input:	data_in[]:  the received data for decoding.
*			nslot: the slot number for the encoded and modulated data.
*			rep: the repetition factor.
*			fec: the struct for the FEC type.
*				
* Output:	data_out[]: the data output.
*					
* AUTHOR: 	Zhang Tao	2007-02-13	
* 
*********************************************************************************
*/
void BTCdecode(double data_in[],int nslot,int rep,FEC_TYPE fec,int data_out[]);

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?