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
Diff: USBHost/USBHALHost.h
- Revision:
- 24:5396b6a93262
- Parent:
- 23:4ab8bc835303
--- a/USBHost/USBHALHost.h Sun May 01 03:18:11 2016 +0000 +++ b/USBHost/USBHALHost.h Mon Jun 13 17:21:07 2016 +0000 @@ -15,12 +15,8 @@ } }; -#if defined(TARGET_NUCLEO_F401RE)||defined(TARGET_NUCLEO_F411RE)||defined(TARGET_NUCLEO_F446RE) -#include "USBHALHost_F401RE.h" -#elif defined(TARGET_KL46Z)||defined(TARGET_KL25Z)||defined(TARGET_K64F) -#include "USBHALHost_KL46Z.h" -#elif defined(TARGET_LPC4088)||defined(TARGET_LPC1768) -#include "USBHALHost_LPC4088.h" +#if defined(TARGET_DISCO_F746NG) +#include "USBHALHost_F746NG.h" #else #error "target error" #endif