mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Mon Jul 27 09:30:09 2015 +0100
Parent:
595:5e59b9938d4a
Child:
597: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();