rxpll.h

来自「MIMO 2x2接收端选择全系统仿真代码」· C头文件 代码 · 共 72 行

H
72
字号
/*****************************************************************************
  Module     : Phase Locked Loop
******************************************************************************

  Function   : 

  Procedures : none

  Author     : $Author: Adrian $

  Revision   : $Revision: 1 $

  Modified   : $Modtime: 05-05-11 16:55 $

  File       : $Workfile: rxpll.h $

******************************************************************************
 KTH, Royal Institute of Technology, S3, Stockholm
*****************************************************************************/

#ifndef RX_PHASELOCKEDLOOP_H
#define  RX_PHASELOCKEDLOOP_H

/*--- Include files --------------------------------------------------------*/
/*=== End of include files =================================================*/


/*--- Global defines -------------------------------------------------------*/
/*=== End of global defines ================================================*/


/*--- Global types declaration ---------------------------------------------*/

typedef struct
{
  float alpha;
  float beta;
  float loop_gain;
  float scaling_factor;
  float theta;
  float delta;
  float delta_avg;
} typRX_PLLPARAM;

/*=== 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 lock_phase(typRX_PLLPARAM *pPLLparam, float *pSampBuff, const unsigned int uiBuffLen);

/*=== End of global functions declaration ==================================*/
#endif

/*--- AUTOMATICALLY GENERATED VERSION HISTORY --------------------------------

$Log: /MIMO/Receiver/rxpll.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 + =
减小字号Ctrl + -
显示快捷键?