Dependents:   sample_collection_for_starboard_orange starboard_orange_samples

Committer:
chris
Date:
Wed Jun 13 10:52:22 2012 +0000
Revision:
1:29e541664957
Parent:
0:f4e330489777
I was asked to commit this, but i dont know why

Who changed what in which revision?

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