usb
Dependents: finalV1 finalV1 finalv2 finalv3 ... more
Revision 45:0f216c4e75e5, committed 2015-03-26
- Comitter:
- mbed_official
- Date:
- Thu Mar 26 14:30:20 2015 +0000
- Parent:
- 44:d2638fcd76d9
- Commit message:
- Synchronized with git revision d836f53d425dc05942722c96430c26c070b0b19d
Full URL: https://github.com/mbedmicro/mbed/commit/d836f53d425dc05942722c96430c26c070b0b19d/
USBDevice: fix missing defined check for TARGET_F411RE
Changed in this revision
USBDevice/USBHAL_STM32F4.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r d2638fcd76d9 -r 0f216c4e75e5 USBDevice/USBHAL_STM32F4.cpp --- a/USBDevice/USBHAL_STM32F4.cpp Tue Mar 24 08:30:19 2015 +0000 +++ b/USBDevice/USBHAL_STM32F4.cpp Thu Mar 26 14:30:20 2015 +0000 @@ -48,7 +48,7 @@ // Enable power and clocking RCC->AHB1ENR |= RCC_AHB1ENR_GPIOAEN; -#if defined(TARGET_STM32F407VG) || defined(TARGET_STM32F401RE) +#if defined(TARGET_STM32F407VG) || defined(TARGET_STM32F401RE) || defined(TARGET_STM32F411RE) pin_function(PA_8, STM_PIN_DATA(STM_MODE_AF_PP, GPIO_NOPULL, GPIO_AF10_OTG_FS)); pin_function(PA_9, STM_PIN_DATA(STM_MODE_INPUT, GPIO_PULLDOWN, GPIO_AF10_OTG_FS)); pin_function(PA_10, STM_PIN_DATA(STM_MODE_AF_OD, GPIO_PULLUP, GPIO_AF10_OTG_FS));