Simple USBHost library for STM32F746NG Discovery board. Only either the Fastspeed or the Highspeed port can be used( not both together)
Dependents: DISCO-F746NG_USB_Host
Fork of KL46Z-USBHost by
USBHost/USBHALHost.h@17:4a710e2ba162, 2014-06-23 (annotated)
- Committer:
- va009039
- Date:
- Mon Jun 23 20:48:53 2014 +0900
- Revision:
- 17:4a710e2ba162
- Parent:
- 11:61843badd06e
- Child:
- 18:61554f238584
add FRDM-K64F.(not tested)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
va009039 | 11:61843badd06e | 1 | #if defined(TARGET_NUCLEO_F401RE) |
va009039 | 11:61843badd06e | 2 | #include "USBHALHost_F401RE.h" |
va009039 |
17:4a710e2ba162 | 3 | #elif defined(TARGET_KL46Z)||defined(TARGET_KL25Z)||defined(TARGET_K64F) |
va009039 | 11:61843badd06e | 4 | #include "USBHALHost_KL46Z.h" |
va009039 | 11:61843badd06e | 5 | #else |
va009039 | 11:61843badd06e | 6 | #error "target error" |
va009039 | 11:61843badd06e | 7 | #endif |
va009039 | 5:10bfc10afcc8 | 8 | |
va009039 | 5:10bfc10afcc8 | 9 |