⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wlan_ccx.h

📁 Windows CE 6.0 BSP for VOIP sample phone. Intel PXA270 platform.
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES OR INDEMNITIES.
//
/** @file wlan_ccx.h
 *  Copyright (c) Marvell Semiconductor, Inc. 
 */
 
/*************************************************************
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 + -