rf_EpskInterSlotRampProfile.h
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:3k
源码类别:

MTK

开发平台:

C++ Builder

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2001
  8. *
  9. *****************************************************************************/
  10. /*****************************************************************************
  11.  *
  12.  * Filename:
  13.  * ---------
  14.  *   rf_EpskInterSlotRampProfile.h
  15.  *
  16.  * Project:
  17.  * --------
  18.  *   Maui META APP
  19.  *
  20.  * Description:
  21.  * ------------
  22.  *   RF EPSK inter slot ramp profile header
  23.  *
  24.  * Author:
  25.  * -------
  26.  *  Andy Ueng (mtk00490)
  27.  *
  28.  *============================================================================
  29.  *             HISTORY
  30.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  31.  *------------------------------------------------------------------------------
  32.  * $Revision$
  33.  * $Modtime$
  34.  * $Log$
  35.  *
  36.  *------------------------------------------------------------------------------
  37.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  38.  *============================================================================
  39.  ****************************************************************************/
  40. //---------------------------------------------------------------------------
  41. #ifndef _RF_EPSKINTERSLOTRAMPPROFILE_H_
  42. #define _RF_EPSKINTERSLOTRAMPPROFILE_H_
  43. // common
  44. #ifndef  _METAAPP_COMMON_H_
  45. #include "metaapp_common.h"
  46. #endif
  47. #ifndef META_DLL_H
  48. #include "meta.h"
  49. #endif
  50. #ifndef  _MAN_HANDLE_H_
  51. #include "man_handle.h"
  52. #endif
  53. #include "rf_apc.h"
  54. //---------------------------------------------------------------------------
  55. //---------------------------------------------------------------------------
  56. class  CRFEPSKINTERSLOTRAMP
  57. {
  58. private:
  59.    E_METAAPP_RESULT_T   m_eConfirmState;
  60.    int   CurWRBand;
  61.    bool                   m_bSingleBand;
  62.    int         EpskInterRampBufSize;
  63.    char        *EpskInterRampBuf;
  64.    l1cal_EPSK_interRampData_T  EPSK_Inter_RamTable[MAX_SUPPORT_BAND_NUM];
  65. protected:
  66. public:
  67.    void  Confirm(E_METAAPP_RESULT_T confirm_state);
  68.    CRFEPSKINTERSLOTRAMP( void );
  69.   ~CRFEPSKINTERSLOTRAMP();
  70.    void  REQ_Finish( void );
  71.    void  REQ_TimeOut( void );
  72.   
  73.   void  REQ_ReadFromNVRAM( void );
  74.   void CNF_ReadFromNVRAM( void );
  75.   void  REQ_WriteToNVRAM( void );
  76.   void  CNF_WriteToNVRAM( void );
  77. /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  78.   // Public member
  79.    void  (*ConfirmCallback)( void );
  80.     // Public interface
  81.    void  REQ_Stop( void );
  82.    void  REQ_Read_From_NVRAM( void );
  83.    void  REQ_Write_To_NVRAM( void );
  84.    void  REQ_Write_To_NVRAM_Single_Band( int  band );
  85.    bool  REQ_Read_From_File( char *filename );
  86.    bool  REQ_Write_To_File( char *filename );
  87.    // Global information
  88.    E_METAAPP_RESULT_T Get_ConfirmState(void);
  89.    void Set_InterSlotRamp(int band_idx, l1cal_EPSK_interRampData_T  epsk_inter_ramp );
  90.    l1cal_EPSK_interRampData_T  Get_InterSlotRamp(int band_idx );
  91. };
  92. /*---------------------------------------------------------------------------*/
  93. #endif