source: ReferenceDesigns/w3_802.11/c/wlan_mac_high_sta/include/wlan_exp_node_sta.h

Last change on this file was 6319, checked in by chunter, 5 years ago

1.8.0 release wlan-mac-se

File size: 1.9 KB
Line 
1/** @file wlan_exp_node_sta.h
2 *  @brief Station WLAN Experiment
3 *
4 *  This contains code for the 802.11 Station's WLAN experiment interface.
5 *
6 *  @copyright Copyright 2013-2019, Mango Communications. All rights reserved.
7 *          Distributed under the Mango Communications Reference Design License
8 *              See LICENSE.txt included in the design archive or
9 *              at http://mangocomm.com/802.11/license
10 *
11 *  This file is part of the Mango 802.11 Reference Design (https://mangocomm.com/802.11)
12 */
13
14
15/***************************** Include Files *********************************/
16#include "wlan_mac_high_sw_config.h"
17
18#include "wlan_exp_common.h"
19
20struct cmd_resp_hdr_t;
21struct eth_tx_queue_buffer_t;
22
23/*************************** Constant Definitions ****************************/
24#ifndef WLAN_EXP_NODE_STA_H_
25#define WLAN_EXP_NODE_STA_H_
26
27
28
29// ****************************************************************************
30// Define WLAN Exp Node Station Commands
31//
32#define CMDID_NODE_STA_JOIN                                0x100000
33#define CMDID_NODE_STA_JOIN_STATUS                         0x100001
34#define CMDID_NODE_STA_SET_AID                             0x100002
35
36
37
38// ****************************************************************************
39// Define Node Station Parameters
40//   - NOTE:  To add another parameter, add the define before "NODE_MAX_PARAMETER"
41//     and then change the value of "NODE_MAX_PARAMETER" to be the largest value
42//     in the list so it is easy to iterate over all parameters
43//
44
45
46/*********************** Global Structure Definitions ************************/
47
48
49
50/*************************** Function Prototypes *****************************/
51
52#if WLAN_SW_CONFIG_ENABLE_WLAN_EXP
53int  process_wlan_exp_app_cmd(struct cmd_resp_hdr_t* cmd_hdr, struct eth_tx_queue_buffer_t* eth_tx_queue_buffer);
54#endif
55
56#endif /* WLAN_EXP_NODE_H_ */
Note: See TracBrowser for help on using the repository browser.