mbed Dev board test program

Dependencies:   EthernetNetIf mbed HTTPServer SerialLCD

Committer:
pangsk
Date:
Mon Jul 11 15:02:04 2011 +0000
Revision:
0:0f36b9fac4c5

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pangsk 0:0f36b9fac4c5 1 /*
pangsk 0:0f36b9fac4c5 2 **************************************************************************************************************
pangsk 0:0f36b9fac4c5 3 * NXP USB Host Stack
pangsk 0:0f36b9fac4c5 4 *
pangsk 0:0f36b9fac4c5 5 * (c) Copyright 2008, NXP SemiConductors
pangsk 0:0f36b9fac4c5 6 * (c) Copyright 2008, OnChip Technologies LLC
pangsk 0:0f36b9fac4c5 7 * All Rights Reserved
pangsk 0:0f36b9fac4c5 8 *
pangsk 0:0f36b9fac4c5 9 * www.nxp.com
pangsk 0:0f36b9fac4c5 10 * www.onchiptech.com
pangsk 0:0f36b9fac4c5 11 *
pangsk 0:0f36b9fac4c5 12 * File : usbhost_cpu.h
pangsk 0:0f36b9fac4c5 13 * Programmer(s) : Ravikanth.P
pangsk 0:0f36b9fac4c5 14 * Version :
pangsk 0:0f36b9fac4c5 15 *
pangsk 0:0f36b9fac4c5 16 **************************************************************************************************************
pangsk 0:0f36b9fac4c5 17 */
pangsk 0:0f36b9fac4c5 18
pangsk 0:0f36b9fac4c5 19 #ifndef USBHOST_CPU_H
pangsk 0:0f36b9fac4c5 20 #define USBHOST_CPU_H
pangsk 0:0f36b9fac4c5 21
pangsk 0:0f36b9fac4c5 22 /*
pangsk 0:0f36b9fac4c5 23 **************************************************************************************************************
pangsk 0:0f36b9fac4c5 24 * TYPE DEFINITIONS OF DATA TYPES
pangsk 0:0f36b9fac4c5 25 **************************************************************************************************************
pangsk 0:0f36b9fac4c5 26 */
pangsk 0:0f36b9fac4c5 27
pangsk 0:0f36b9fac4c5 28 typedef unsigned int USB_INT32U;
pangsk 0:0f36b9fac4c5 29 typedef signed int USB_INT32S;
pangsk 0:0f36b9fac4c5 30 typedef unsigned short USB_INT16U;
pangsk 0:0f36b9fac4c5 31 typedef signed short USB_INT16S;
pangsk 0:0f36b9fac4c5 32 typedef unsigned char USB_INT08U;
pangsk 0:0f36b9fac4c5 33 typedef signed char USB_INT08S;
pangsk 0:0f36b9fac4c5 34
pangsk 0:0f36b9fac4c5 35 #endif