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@5:f07de56debf3, 2021-04-08 (annotated)
- Committer:
- takuma1
- Date:
- Thu Apr 08 10:04:55 2021 +0000
- Revision:
- 5:f07de56debf3
210408_BMS_v1;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
takuma1 | 5:f07de56debf3 | 1 | /* |
takuma1 | 5:f07de56debf3 | 2 | ************************************************************************************************************** |
takuma1 | 5:f07de56debf3 | 3 | * NXP USB Host Stack |
takuma1 | 5:f07de56debf3 | 4 | * |
takuma1 | 5:f07de56debf3 | 5 | * (c) Copyright 2008, NXP SemiConductors |
takuma1 | 5:f07de56debf3 | 6 | * (c) Copyright 2008, OnChip Technologies LLC |
takuma1 | 5:f07de56debf3 | 7 | * All Rights Reserved |
takuma1 | 5:f07de56debf3 | 8 | * |
takuma1 | 5:f07de56debf3 | 9 | * www.nxp.com |
takuma1 | 5:f07de56debf3 | 10 | * www.onchiptech.com |
takuma1 | 5:f07de56debf3 | 11 | * |
takuma1 | 5:f07de56debf3 | 12 | * File : usbhost_inc.h |
takuma1 | 5:f07de56debf3 | 13 | * Programmer(s) : Ravikanth.P |
takuma1 | 5:f07de56debf3 | 14 | * Version : |
takuma1 | 5:f07de56debf3 | 15 | * |
takuma1 | 5:f07de56debf3 | 16 | ************************************************************************************************************** |
takuma1 | 5:f07de56debf3 | 17 | */ |
takuma1 | 5:f07de56debf3 | 18 | |
takuma1 | 5:f07de56debf3 | 19 | #ifndef USBHOST_INC_H |
takuma1 | 5:f07de56debf3 | 20 | #define USBHOST_INC_H |
takuma1 | 5:f07de56debf3 | 21 | |
takuma1 | 5:f07de56debf3 | 22 | /* |
takuma1 | 5:f07de56debf3 | 23 | ************************************************************************************************************** |
takuma1 | 5:f07de56debf3 | 24 | * INCLUDE HEADER FILES |
takuma1 | 5:f07de56debf3 | 25 | ************************************************************************************************************** |
takuma1 | 5:f07de56debf3 | 26 | */ |
takuma1 | 5:f07de56debf3 | 27 | |
takuma1 | 5:f07de56debf3 | 28 | #include "usbhost_cpu.h" |
takuma1 | 5:f07de56debf3 | 29 | #include "usbhost_err.h" |
takuma1 | 5:f07de56debf3 | 30 | #include "usbhost_lpc17xx.h" |
takuma1 | 5:f07de56debf3 | 31 | #include "usbhost_ms.h" |
takuma1 | 5:f07de56debf3 | 32 | #include "mbed.h" |
takuma1 | 5:f07de56debf3 | 33 | |
takuma1 | 5:f07de56debf3 | 34 | |
takuma1 | 5:f07de56debf3 | 35 | #ifdef TARGET_LPC2368 |
takuma1 | 5:f07de56debf3 | 36 | #error "There is no USB host on the LPC2368!" |
takuma1 | 5:f07de56debf3 | 37 | #endif |
takuma1 | 5:f07de56debf3 | 38 | |
takuma1 | 5:f07de56debf3 | 39 | #endif |