Dependencies:   mbed

Committer:
joe
Date:
Fri Aug 20 15:38:52 2010 +0000
Revision:
2:a079de4fd5b9
Parent:
0:960b355eaa84

        

Who changed what in which revision?

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