WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
alg_anti_interference.h
浏览该文件的文档.
1/*
2 * Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2022-2022. All rights reserved.
3 * Description: algorithm antanne interference head
4 */
5
6#ifndef __ALG_ANTI_INTERFERENCE_H__
7#define __ALG_ANTI_INTERFERENCE_H__
8
9#ifdef _PRE_WLAN_FEATURE_ANTI_INTERF
10
11/******************************************************************************
12 1 其他头文件包含
13******************************************************************************/
14#include "hmac_alg_if.h"
15#include "msg_alg_rom.h"
16
17#ifdef __cplusplus
18#if __cplusplus
19extern "C" {
20#endif
21#endif
22/* 弱干扰免疫参数 */
23#define ALG_ANTI_INF_RSSI_TH_DEFAULT_VAL (-95) /* 弱干扰免疫RSSI门限的初始默认值 */
24#define ALG_ANTI_INF_RSSI_TH_MAX_VAL (-10) /* 弱干扰免疫RSSI门限最大值 */
25#define ALG_ANTI_INF_RSSI_TH_MIN_VAL (-128) /* 弱干扰免疫RSSI门限最小值 */
26#define ALG_ANTI_INF_UNLOCK_TX_TH_DEFAULT_VAL (-107) /* 动态agc unlock tx门限初始默认值 */
27#define ALG_ANTI_INF_UNLOCK_RX_TH_DEFAULT_VAL (-107) /* 动态agc unlock rx门限初始默认值 */
28#define ALG_ANTI_INF_MAX_DUR_VAL 32767 /* 本BSS的duration门限(us) */
29#define ALG_ANTI_INF_OBSS_MAX_DUR_VAL 13000 /* 其他BSS的duration门限(us) */
30/******************************************************************************
31 2 函数声明
32******************************************************************************/
33osal_s32 alg_anti_intf_init(osal_void);
34osal_void alg_anti_intf_exit(osal_void);
35#ifdef __cplusplus
36#if __cplusplus
37}
38#endif
39#endif
40#endif /* #ifdef _PRE_WLAN_FEATURE_ANTI_INTERF */
41#endif /* end of alg_anti_interference.h */
int osal_s32
Definition osal_types.h:19
void osal_void
Definition osal_types.h:29