47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /****************************************************************************
 | |
| 
 | |
| Copyright(c) 2019 by Aerospace C.Power (Chongqing) Microelectronics. ALL RIGHTS RESERVED.
 | |
| 
 | |
| This Information is proprietary to Aerospace C.Power (Chongqing) Microelectronics and MAY NOT
 | |
| be copied by any method or incorporated into another program without
 | |
| the express written consent of Aerospace C.Power. This Information or any portion
 | |
| thereof remains the property of Aerospace C.Power. The Information contained herein
 | |
| is believed to be accurate and Aerospace C.Power assumes no responsibility or
 | |
| liability for its use in any way and conveys no license or title under
 | |
| any patent or copyright and makes no representation or warranty that this
 | |
| Information is free from patent or copyright infringement.
 | |
| 
 | |
| ****************************************************************************/
 | |
| #ifndef __BB_RF_HW_TBL_H__
 | |
| #define __BB_RF_HW_TBL_H__
 | |
| 
 | |
| #include "os_types.h"
 | |
| #include "bb_rf_cfg.h"
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| /**
 | |
| * @brief bb_rf_get_phr_hw_info()       - get phr hw info.
 | |
| * @param option                        - option. PHY_RF_OPTION_xx.
 | |
| * @param phr_mcs_id                    - phr mcs. MCS_ID_XX.
 | |
| * @return bb_rf_hw_info_t              - phy hw info.
 | |
| */
 | |
| bb_rf_hw_info_t *bb_rf_get_phr_hw_info(uint32_t option, uint32_t phr_mcs_id);
 | |
| 
 | |
| /**
 | |
| * @brief bb_rf_get_pld_hw_info()       - get pld hw info.
 | |
| * @param option                        - option. PHY_RF_OPTION_xx.
 | |
| * @param pld_blkz                      - pld blkz. BLOCK_SIZE_xx.
 | |
| * @param pld_mcs_id                    - pld mcs. MCS_ID_XX.
 | |
| * @return bb_rf_hw_info_t              - pld hw info.
 | |
| */
 | |
| bb_rf_hw_info_t *bb_rf_get_pld_hw_info(uint32_t option, uint32_t pld_blkz,
 | |
|     uint32_t pld_mcs_id);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif // __PHY_RF_TONE_TBL_H__
 |