test_h.h
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef __test_h_h__
#define __test_h_h__
/*HEADER******************************************************************
**************************************************************************
***
*** Copyright (c) 2001-2002 ARC International.
*** All rights reserved
***
*** This software embodies materials and concepts which are
*** confidential to ARC International and is made
*** available solely pursuant to the terms of a written license
*** agreement with ARC International
***
*** $Workfile:test.h$
*** $Revision: 1.2 $
*** $Date: 2003/05/08 03:44:09 $
***
*** Description:
*** This file contains the Test specific data structures and defines
***
**************************************************************************
*END*********************************************************************/
#define DATA_SIZE (300)
typedef struct echo_global_struct
{
boolean ECHO_ENABLED;
int_16 PIPE_INT_IN;
int_16 PIPE_INT_OUT;
int_16 PIPE_BULK_IN;
int_16 PIPE_BULK_OUT;
uchar INTDATAOUT[DATA_SIZE];
uchar INTDATAIN[DATA_SIZE];
uchar BULKDATAOUT[DATA_SIZE];
uchar BULKDATAIN[DATA_SIZE];
uchar RX_TEST_BUFFER[20];
} ECHO_GLOBAL_STRUCT, _PTR_ ECHO_GLOBAL_STRUCT_PTR;
extern USB_SETUP tx_enable_echo;
#endif /* _test_h_h_ */