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.
USBHostLite/usbhost_inc.h@0:0732b16d9a92, 2011-01-06 (annotated)
- Committer:
- CE
- Date:
- Thu Jan 06 19:01:44 2011 +0000
- Revision:
- 0:0732b16d9a92
R1A
Who changed what in which revision?
| User | Revision | Line number | New 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_inc.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_INC_H |
| CE | 0:0732b16d9a92 | 20 | #define USBHOST_INC_H |
| CE | 0:0732b16d9a92 | 21 | |
| CE | 0:0732b16d9a92 | 22 | /* |
| CE | 0:0732b16d9a92 | 23 | ************************************************************************************************************** |
| CE | 0:0732b16d9a92 | 24 | * INCLUDE HEADER FILES |
| CE | 0:0732b16d9a92 | 25 | ************************************************************************************************************** |
| CE | 0:0732b16d9a92 | 26 | */ |
| CE | 0:0732b16d9a92 | 27 | |
| CE | 0:0732b16d9a92 | 28 | #include "usbhost_cpu.h" |
| CE | 0:0732b16d9a92 | 29 | #include "usbhost_err.h" |
| CE | 0:0732b16d9a92 | 30 | #include "usbhost_lpc17xx.h" |
| CE | 0:0732b16d9a92 | 31 | #include "usbhost_ms.h" |
| CE | 0:0732b16d9a92 | 32 | #include "mbed.h" |
| CE | 0:0732b16d9a92 | 33 | |
| CE | 0:0732b16d9a92 | 34 | |
| CE | 0:0732b16d9a92 | 35 | #ifdef TARGET_LPC2368 |
| CE | 0:0732b16d9a92 | 36 | #error "There is no USB host on the LPC2368!" |
| CE | 0:0732b16d9a92 | 37 | #endif |
| CE | 0:0732b16d9a92 | 38 | |
| CE | 0:0732b16d9a92 | 39 | #endif |