Claes Ekengren / Mbed 2 deprecated Measurement_system

Dependencies:   mbed

Committer:
CE
Date:
Thu Jan 06 19:01:44 2011 +0000
Revision:
0:0732b16d9a92
R1A

Who changed what in which revision?

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