/** @file wlan_exp_node.h * @brief Experiment Framework (User) * * This contains the code for WLAN Experimental Framework. * * @copyright Copyright 2013-2019, Mango Communications. All rights reserved. * Distributed under the Mango Communications Reference Design License * See LICENSE.txt included in the design archive or * at http://mangocomm.com/802.11/license * * This file is part of the Mango 802.11 Reference Design (https://mangocomm.com/802.11) */ /***************************** Include Files *********************************/ #include "xil_types.h" /*************************** Constant Definitions ****************************/ #ifndef WLAN_EXP_USER_H_ #define WLAN_EXP_USER_H_ // Forward declarations struct cmd_resp_hdr_t; struct eth_tx_queue_buffer_t; // **************************************************************************** // Define User Commands // // NOTE: All User Command IDs (CMDID_*) must be a 24 bit unique number // //----------------------------------------------- // User Commands // // #define CMDID_USER_ 0x000000 //----------------------------------------------- // AP Specific User Command Parameters // // #define CMD_PARAM_USER_ 0x00000000 /*********************** Global Structure Definitions ************************/ /*************************** Function Prototypes *****************************/ #if WLAN_SW_CONFIG_ENABLE_WLAN_EXP // User command processing int process_user_cmd(struct cmd_resp_hdr_t* cmd_hdr, struct eth_tx_queue_buffer_t* eth_tx_queue_buffer); #endif //WLAN_SW_CONFIG_ENABLE_WLAN_EXP #endif