Writing data to and from a USB stick

Dependencies:   mbed

Committer:
ms523
Date:
Sun Nov 06 15:45:12 2011 +0000
Revision:
0:5934350323b2
Working with a USB stick

Who changed what in which revision?

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