📄 wlan_ccx.h
字号:
/** @file wlan_11d.h * @brief This header file contains data structures and * function declarations of wlan_ccx.c * * Copyright (c) Marvell Semiconductor, Inc., 2003-2005 *//*************************************************************Change log: 10/11/05: add Doxygen format comments ************************************************************/#ifndef _WLAN_CCX_H#define _WLAN_CCX_H#ifdef CCX// For WinCE +++#define u8 UCHAR// For WinCE ---/** * CCX information for a specific BSS. Part of the BSS descriptor, setup * during scan interpretation and used if needed in association requests */typedef struct{ u8 ccxEnabled; u8 maxPowerValid; u8 maxPower;} CCX_BSS_Info_t;/* Add any additional CCX elments to an association request to the firmware */extern int wlan_ccx_process_association_req(u8** pAssocBuf, CCX_BSS_Info_t* pBSSID, int enableCcxPwrLimit);/* Process any incoming bss elements in a scan response that are CCX related */extern int wlan_ccx_process_bss_elem(CCX_BSS_Info_t* pBSSID, u8* pBssElem);#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -