Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed HC_SR04_Ultrasonic_Library
Diff: BlueNRG_F4_BSP/src/clock.c
- Revision:
- 1:bdbf36f8408d
- Parent:
- 0:3d641e170a74
- Child:
- 2:b5166e24c7a6
--- a/BlueNRG_F4_BSP/src/clock.c Tue May 19 16:43:59 2015 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-#include "cube_hal.h"
-#include "clock.h"
-
-
-const tHalUint32 CLOCK_SECOND = 1000;
-
-/*---------------------------------------------------------------------------*/
-
-void Clock_Init(void)
-{
- // FIXME: as long as Cube HAL is initialized this is OK
- // Cube HAL default is one clock each 1 ms
-}
-
-/*---------------------------------------------------------------------------*/
-
-tClockTime Clock_Time(void)
-{
- return HAL_GetTick();
-}
-
-/*---------------------------------------------------------------------------*/
-/**
- * Wait for a multiple of 1 ms.
- *
- */
-void Clock_Wait(int i)
-{
- HAL_Delay(i);
-}
-/*---------------------------------------------------------------------------*/
-