WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
hal_ext_tpc.h
浏览该文件的文档.
1/*
2 * Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2022-2022. All rights reserved.
3 * Description: Header file for hal_ext_tpc.c
4 */
5
6#ifndef __HAL_EXT_TPC_H__
7#define __HAL_EXT_TPC_H__
8/*****************************************************************************
9 1 头文件包含
10*****************************************************************************/
11#include "osal_types.h"
12#include "hal_ops_common_rom.h"
13
14#ifdef __cplusplus
15#if __cplusplus
16extern "C" {
17#endif
18#endif
19/*****************************************************************************
20 2 函数声明
21*****************************************************************************/
22#ifdef _PRE_WLAN_FEATURE_TPC
23osal_void hh503_set_tpc_bf_pow(hal_to_dmac_device_stru *hal_device);
24osal_void hh503_set_tpc_rts_pow(osal_void);
25/*****************************************************************************
26 功能描述 : 适配sounding report帧的功率
27*****************************************************************************/
28static INLINE__ osal_void hal_set_tpc_bf_pow(hal_to_dmac_device_stru *hal_device)
29{
30 hal_public_hook_func(_set_tpc_bf_pow)(hal_device);
31}
32/*****************************************************************************
33 功能描述 : 适配RTS的功率
34*****************************************************************************/
35static INLINE__ osal_void hal_set_tpc_rts_pow(osal_void)
36{
37 hal_public_hook_func(_set_tpc_rts_pow)();
38}
39osal_void hal_tpc_query_band_rate_power_debug(hal_to_dmac_device_stru *hal_device);
40osal_void hal_tpc_query_ack_power_reg(osal_void);
41#endif
42#ifdef __cplusplus
43#if __cplusplus
44}
45#endif
46#endif
47
48#endif /* end of hal_ext_tpc.h */
#define hal_public_hook_func(_func)
Definition hal_ops_common_rom.h:85
#define INLINE__
Definition osal_list.h:25
void osal_void
Definition osal_types.h:29
Definition hal_ops_common_rom.h:529