Added target compiler selections for FRDM-K20D50 which works.
Fork of F401RE-USBHost by
USBHost/USBHALHost.h@20:21a460855ee5, 2014-11-09 (annotated)
- Committer:
- neilh20
- Date:
- Sun Nov 09 20:28:44 2014 +0000
- Revision:
- 20:21a460855ee5
- Parent:
- 19:47978c25c9b8
Add K20D additions - pure guess but works
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
va009039 |
18:61554f238584 | 1 | #include "mbed.h" |
va009039 |
18:61554f238584 | 2 | |
va009039 |
18:61554f238584 | 3 | struct SETUP_PACKET { |
va009039 |
18:61554f238584 | 4 | uint8_t bmRequestType; |
va009039 |
18:61554f238584 | 5 | uint8_t bRequest; |
va009039 |
18:61554f238584 | 6 | uint16_t wValue; |
va009039 |
18:61554f238584 | 7 | uint16_t wIndex; |
va009039 |
18:61554f238584 | 8 | uint16_t wLength; |
va009039 |
18:61554f238584 | 9 | SETUP_PACKET(uint8_t RequestType, uint8_t Request, uint16_t Value, uint16_t Index, uint16_t Length) { |
va009039 |
18:61554f238584 | 10 | bmRequestType = RequestType; |
va009039 |
18:61554f238584 | 11 | bRequest = Request; |
va009039 |
18:61554f238584 | 12 | wValue = Value; |
va009039 |
18:61554f238584 | 13 | wIndex = Index; |
va009039 |
18:61554f238584 | 14 | wLength = Length; |
va009039 |
18:61554f238584 | 15 | } |
va009039 |
18:61554f238584 | 16 | }; |
va009039 |
18:61554f238584 | 17 | |
va009039 | 19:47978c25c9b8 | 18 | #if defined(TARGET_NUCLEO_F401RE)||defined(TARGET_NUCLEO_F411RE) |
va009039 | 11:61843badd06e | 19 | #include "USBHALHost_F401RE.h" |
neilh20 | 20:21a460855ee5 | 20 | #elif defined(TARGET_KL46Z)||defined(TARGET_KL25Z)||defined(TARGET_K64F) || defined(TARGET_K20D50M) |
va009039 | 11:61843badd06e | 21 | #include "USBHALHost_KL46Z.h" |
va009039 |
18:61554f238584 | 22 | #elif defined(TARGET_LPC4088)||defined(TARGET_LPC1768) |
va009039 |
18: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 |
18:61554f238584 | 28 | #ifndef CTASSERT |
va009039 |
18:61554f238584 | 29 | template <bool>struct CtAssert; |
va009039 |
18:61554f238584 | 30 | template <>struct CtAssert<true> {}; |
va009039 |
18:61554f238584 | 31 | #define CTASSERT(A) CtAssert<A>(); |
va009039 |
18:61554f238584 | 32 | #endif // CTASSERT |
va009039 | 5:10bfc10afcc8 | 33 | |
va009039 |
18:61554f238584 | 34 |