Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FatFileSystemCpp USBHostLite
Dependents: m3PI_TP_POPS_II2015v0 m3PI_TP_POPS_II2015v0 ourproject m3PI_TP_SETI ... more
USBHostLite/usbhost_cpu.h@0:7304356c0790, 2013-10-10 (annotated)
- Committer:
- WiredHome
- Date:
- Thu Oct 10 23:56:41 2013 +0000
- Revision:
- 0:7304356c0790
File System interface for USB.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| WiredHome | 0:7304356c0790 | 1 | /* |
| WiredHome | 0:7304356c0790 | 2 | ************************************************************************************************************** |
| WiredHome | 0:7304356c0790 | 3 | * NXP USB Host Stack |
| WiredHome | 0:7304356c0790 | 4 | * |
| WiredHome | 0:7304356c0790 | 5 | * (c) Copyright 2008, NXP SemiConductors |
| WiredHome | 0:7304356c0790 | 6 | * (c) Copyright 2008, OnChip Technologies LLC |
| WiredHome | 0:7304356c0790 | 7 | * All Rights Reserved |
| WiredHome | 0:7304356c0790 | 8 | * |
| WiredHome | 0:7304356c0790 | 9 | * www.nxp.com |
| WiredHome | 0:7304356c0790 | 10 | * www.onchiptech.com |
| WiredHome | 0:7304356c0790 | 11 | * |
| WiredHome | 0:7304356c0790 | 12 | * File : usbhost_cpu.h |
| WiredHome | 0:7304356c0790 | 13 | * Programmer(s) : Ravikanth.P |
| WiredHome | 0:7304356c0790 | 14 | * Version : |
| WiredHome | 0:7304356c0790 | 15 | * |
| WiredHome | 0:7304356c0790 | 16 | ************************************************************************************************************** |
| WiredHome | 0:7304356c0790 | 17 | */ |
| WiredHome | 0:7304356c0790 | 18 | |
| WiredHome | 0:7304356c0790 | 19 | #ifndef USBHOST_CPU_H |
| WiredHome | 0:7304356c0790 | 20 | #define USBHOST_CPU_H |
| WiredHome | 0:7304356c0790 | 21 | |
| WiredHome | 0:7304356c0790 | 22 | /* |
| WiredHome | 0:7304356c0790 | 23 | ************************************************************************************************************** |
| WiredHome | 0:7304356c0790 | 24 | * TYPE DEFINITIONS OF DATA TYPES |
| WiredHome | 0:7304356c0790 | 25 | ************************************************************************************************************** |
| WiredHome | 0:7304356c0790 | 26 | */ |
| WiredHome | 0:7304356c0790 | 27 | |
| WiredHome | 0:7304356c0790 | 28 | typedef unsigned int USB_INT32U; |
| WiredHome | 0:7304356c0790 | 29 | typedef signed int USB_INT32S; |
| WiredHome | 0:7304356c0790 | 30 | typedef unsigned short USB_INT16U; |
| WiredHome | 0:7304356c0790 | 31 | typedef signed short USB_INT16S; |
| WiredHome | 0:7304356c0790 | 32 | typedef unsigned char USB_INT08U; |
| WiredHome | 0:7304356c0790 | 33 | typedef signed char USB_INT08S; |
| WiredHome | 0:7304356c0790 | 34 | |
| WiredHome | 0:7304356c0790 | 35 | #endif |