source: ResearchApps/PHY/WARPLAB/WARPLab7/C_Code_Reference/include/wl_user.h

Last change on this file was 4783, checked in by welsh, 9 years ago

Initial update to add new AGC, Trigger Manager, and Node commands. The AGC commands have been tested, but the other commands have not. Also, cleaned up Command ID names, Trigger Manager defines.

File size: 1.3 KB
Line 
1/** @file wl_user.h
2 *  @brief WARPLab Framework (User Extensions)
3 *
4 *  This contains the code for WARPLab Framework.
5 *
6 *  @copyright Copyright 2013, Mango Communications. All rights reserved.
7 *          Distributed under the WARP license  (http://warpproject.org/license)
8 *
9 *  @author Chris Hunter (chunter [at] mangocomm.com)
10 *  @author Patrick Murphy (murphpo [at] mangocomm.com)
11 *  @author Erik Welsh (welsh [at] mangocomm.com)
12 */
13
14/***************************** Include Files *********************************/
15
16// WARPLab includes
17#include "wl_common.h"
18
19
20
21/*************************** Constant Definitions ****************************/
22#ifndef WL_USER_H_
23#define WL_USER_H_
24
25
26// **********************************************************************
27// Command IDs (must match the CMD_ properties in wl_user_*.m)
28//
29#define CMDID_USER_EEPROM_WRITE_STRING                     0x000001
30#define CMDID_USER_EEPROM_READ_STRING                      0x000002
31
32
33
34/*********************** Global Structure Definitions ************************/
35
36
37
38/*************************** Function Prototypes *****************************/
39int  user_init();
40
41int  user_process_cmd(int socket_index, void * from, wl_cmd_resp * command, wl_cmd_resp * response);
42
43
44#endif /* WL_USER_H_ */
Note: See TracBrowser for help on using the repository browser.