mbed library sources
Fork of mbed-src by
Revision 597:abfb2833c9f5, committed 2015-07-27
- Comitter:
- mbed_official
- Date:
- Mon Jul 27 09:30:09 2015 +0100
- Parent:
- 596:5e59b9938d4a
- Child:
- 598:47bdd20c4d41
- Commit message:
- Synchronized with git revision bfd1ddeee4467ba8c929c1274abc5d907ff9e669
Full URL: https://github.com/mbedmicro/mbed/commit/bfd1ddeee4467ba8c929c1274abc5d907ff9e669/
DISCO_F746NG - add pwm12 clock
Changed in this revision
targets/hal/TARGET_STM/TARGET_STM32F7/pwmout_api.c | Show annotated file Show diff for this revision Revisions of this file |
--- a/targets/hal/TARGET_STM/TARGET_STM32F7/pwmout_api.c Thu Jul 23 09:15:09 2015 +0100 +++ b/targets/hal/TARGET_STM/TARGET_STM32F7/pwmout_api.c Mon Jul 27 09:30:09 2015 +0100 @@ -62,6 +62,7 @@ if (obj->pwm == PWM_9) __HAL_RCC_TIM9_CLK_ENABLE(); if (obj->pwm == PWM_10) __HAL_RCC_TIM10_CLK_ENABLE(); if (obj->pwm == PWM_11) __HAL_RCC_TIM11_CLK_ENABLE(); + if (obj->pwm == PWM_12) __HAL_RCC_TIM12_CLK_ENABLE(); if (obj->pwm == PWM_13) __HAL_RCC_TIM13_CLK_ENABLE(); if (obj->pwm == PWM_14) __HAL_RCC_TIM14_CLK_ENABLE();