📄 rxsync.h
字号:
/*****************************************************************************
Module : Frame Synchronization
******************************************************************************
Function : Frame synchronization based on symbols.
Procedures : none
Author : $Author: Adrian $
Revision : $Revision: 1 $
Modified : $Modtime: 05-05-11 16:56 $
File : $Workfile: rxsync.h $
******************************************************************************
KTH, Royal Institute of Technology, S3, Stockholm
*****************************************************************************/
#ifndef RX_SYNCHRONIZATION_H
#define RX_SYNCHRONIZATION_H
/*--- Include files --------------------------------------------------------*/
#include <csl_stdinc.h>
#include "../common/commondef.h"
/*=== End of include files =================================================*/
/*--- Global defines -------------------------------------------------------*/
/*=== End of global defines ================================================*/
/*--- Global types declaration ---------------------------------------------*/
typedef struct
{
/* pointer to the buffer for channel 1, Inphase */
float *pfRcv1I;
/* pointer to the buffer for channel 1, Quadrature */
float *pfRcv1Q;
/* pointer to the buffer for channel 2, Inphase */
float *pfRcv2I;
/* pointer to the buffer for channel 2, Quadrature */
float *pfRcv2Q;
/* length of the content in one of the receive buffers (same for all) */
unsigned int uiRcvBuffLen;
/* index of the start of the synchronization sequence */
int iSyncIndex; // -1 on error
} typRX_SYNCSTATE;
/*=== End of global types declaration ======================================*/
/*--- Global variables declaration -----------------------------------------*/
/*=== End of global variables declaration ==================================*/
/*--- Global constants declaration -----------------------------------------*/
/*=== End of global constants declaration ==================================*/
/*--- Global functions declaration -----------------------------------------*/
void synchronization(typRX_SYNCSTATE *pSyncState);
/*=== End of global functions declaration ==================================*/
#endif
/*--- AUTOMATICALLY GENERATED VERSION HISTORY --------------------------------
$Log: /MIMO/Receiver/rxsync.h $
*
* 1 05-05-11 17:00 Adrian
* created and added to VSS
===== END OF AUTOMATICALLY GENERATED VERSION HISTORY =======================*/
/**** End of file ***********************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -