mbed library sources. Supersedes mbed-src.

Fork of mbed-dev by mbed official

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Sun Dec 13 21:45:09 2015 +0000
Parent:
35:cb6c51ca2109
Child:
37:e784a2d7291a
Commit message:
Synchronized with git revision 1c75638d14fe32d120b48ec0b9f28b2a55e229b5

Full URL: https://github.com/mbedmicro/mbed/commit/1c75638d14fe32d120b48ec0b9f28b2a55e229b5/

[NUCLEO-F030R8] Fixed: The issue of LED blinking too fast.

Changed in this revision

targets/cmsis/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F030R8/hal_tick.c Show annotated file Show diff for this revision Revisions of this file
--- a/targets/cmsis/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F030R8/hal_tick.c	Sun Dec 13 13:45:10 2015 +0000
+++ b/targets/cmsis/TARGET_STM/TARGET_STM32F0/TARGET_NUCLEO_F030R8/hal_tick.c	Sun Dec 13 21:45:09 2015 +0000
@@ -96,10 +96,6 @@
 // Reconfigure the HAL tick using a standard timer instead of systick.
 HAL_StatusTypeDef HAL_InitTick(uint32_t TickPriority) {
   
-    static uint32_t ticker_inited=0;  
-    if(ticker_inited)return HAL_OK;
-    ticker_inited=1;
-  
     // Enable timer clock
     TIM_MST_RCC;