source: ReferenceDesigns/w3_802.11/c/wlan_mac_high_framework/include/wlan_exp_user.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.7 KB
Line 
1/** @file wlan_exp_node.h
2 *  @brief Experiment Framework (User)
3 *
4 *  This contains the code for WLAN Experimental Framework.
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
17#include "xil_types.h"
18
19/*************************** Constant Definitions ****************************/
20#ifndef WLAN_EXP_USER_H_
21#define WLAN_EXP_USER_H_
22
23// Forward declarations
24struct cmd_resp_hdr_t;
25struct eth_tx_queue_buffer_t;
26
27// ****************************************************************************
28// Define User Commands
29//
30// NOTE:  All User Command IDs (CMDID_*) must be a 24 bit unique number
31//
32
33//-----------------------------------------------
34// User Commands
35//
36// #define CMDID_USER_<COMMAND_NAME>                          0x000000
37
38
39//-----------------------------------------------
40// AP Specific User Command Parameters
41//
42// #define CMD_PARAM_USER_<VALUE>                             0x00000000
43
44
45/*********************** Global Structure Definitions ************************/
46
47
48/*************************** Function Prototypes *****************************/
49#if WLAN_SW_CONFIG_ENABLE_WLAN_EXP
50// User command processing
51int  process_user_cmd(struct cmd_resp_hdr_t* cmd_hdr, struct eth_tx_queue_buffer_t* eth_tx_queue_buffer);
52#endif //WLAN_SW_CONFIG_ENABLE_WLAN_EXP
53
54#endif
Note: See TracBrowser for help on using the repository browser.