SD for DISCO_F746NG basic demo

Dependencies:   BSP_DISCO_F746NG

Revision:
2:522456118ea2
Parent:
0:99e26e18b424
Child:
3:33086de19b14
--- a/main.cpp	Mon Mar 21 13:30:54 2016 +0000
+++ b/main.cpp	Mon Dec 12 13:28:59 2016 +0000
@@ -116,19 +116,3 @@
   return 0;
 }
 
-/**
-  * @brief This function provides accurate delay (in milliseconds) based 
-  *        on variable incremented.
-  * @note In the default implementation , SysTick timer is the source of time base.
-  *       It is used to generate interrupts at regular time intervals where uwTick
-  *       is incremented.
-  * @note This function is the modified version of the __weak version contained in 
-  *       stm32f4xx_hal.c
-  * @param Delay: specifies the delay time length, in milliseconds.
-  * @retval None
-  */
-void HAL_Delay(__IO uint32_t Delay)
-{
-    wait_ms((int)Delay);
-}
-