test_h.h 1.6 KB
#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_ */