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.
Dependents: F401RE-USBHostMIDI_RecieveExample
Fork of F401RE-USBHost by
USBHost/USBHALHost.h@19:61554f238584, 2014-07-01 (annotated)
- Committer:
- va009039
- Date:
- Tue Jul 01 18:33:31 2014 +0900
- Revision:
- 19:61554f238584
- Parent:
- 17:4a710e2ba162
- Child:
- 20:47978c25c9b8
add lpc4088/lpc1768
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| va009039 |
19:61554f238584 | 1 | #include "mbed.h" |
| va009039 |
19:61554f238584 | 2 | |
| va009039 |
19:61554f238584 | 3 | struct SETUP_PACKET { |
| va009039 |
19:61554f238584 | 4 | uint8_t bmRequestType; |
| va009039 |
19:61554f238584 | 5 | uint8_t bRequest; |
| va009039 |
19:61554f238584 | 6 | uint16_t wValue; |
| va009039 |
19:61554f238584 | 7 | uint16_t wIndex; |
| va009039 |
19:61554f238584 | 8 | uint16_t wLength; |
| va009039 |
19:61554f238584 | 9 | SETUP_PACKET(uint8_t RequestType, uint8_t Request, uint16_t Value, uint16_t Index, uint16_t Length) { |
| va009039 |
19:61554f238584 | 10 | bmRequestType = RequestType; |
| va009039 |
19:61554f238584 | 11 | bRequest = Request; |
| va009039 |
19:61554f238584 | 12 | wValue = Value; |
| va009039 |
19:61554f238584 | 13 | wIndex = Index; |
| va009039 |
19:61554f238584 | 14 | wLength = Length; |
| va009039 |
19:61554f238584 | 15 | } |
| va009039 |
19:61554f238584 | 16 | }; |
| va009039 |
19:61554f238584 | 17 | |
| va009039 | 11:61843badd06e | 18 | #if defined(TARGET_NUCLEO_F401RE) |
| va009039 | 11:61843badd06e | 19 | #include "USBHALHost_F401RE.h" |
| va009039 |
17:4a710e2ba162 | 20 | #elif defined(TARGET_KL46Z)||defined(TARGET_KL25Z)||defined(TARGET_K64F) |
| va009039 | 11:61843badd06e | 21 | #include "USBHALHost_KL46Z.h" |
| va009039 |
19:61554f238584 | 22 | #elif defined(TARGET_LPC4088)||defined(TARGET_LPC1768) |
| va009039 |
19:61554f238584 | 23 | #include "USBHALHost_LPC4088.h" |
| va009039 | 11:61843badd06e | 24 | #else |
| va009039 | 11:61843badd06e | 25 | #error "target error" |
| va009039 | 11:61843badd06e | 26 | #endif |
| va009039 | 5:10bfc10afcc8 | 27 | |
| va009039 |
19:61554f238584 | 28 | #ifndef CTASSERT |
| va009039 |
19:61554f238584 | 29 | template <bool>struct CtAssert; |
| va009039 |
19:61554f238584 | 30 | template <>struct CtAssert<true> {}; |
| va009039 |
19:61554f238584 | 31 | #define CTASSERT(A) CtAssert<A>(); |
| va009039 |
19:61554f238584 | 32 | #endif // CTASSERT |
| va009039 | 5:10bfc10afcc8 | 33 | |
| va009039 |
19:61554f238584 | 34 |
