Matthew Lister / X_NUCLEO_IDB0XA1
Revision:
132:51056160fa4a
Parent:
131:e09947216ccb
Child:
133:1bb8df697f7f
--- a/source/platform/src/clock.c	Tue Oct 06 15:19:19 2015 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-
-#include "clock.h"
-#include "wait_api.h"
-#include "rtc_time.h"
-
-const uint32_t CLOCK_SECOND = 1000;
-
-/*---------------------------------------------------------------------------*/
-
-void Clock_Init(void)
-{
-  //Not Used
-}
-
-/*---------------------------------------------------------------------------*/
-
-tClockTime Clock_Time(void)
-{
-	return clock();
-}
-
-/*---------------------------------------------------------------------------*/
-/**
- * Wait for a multiple of 1 ms.
- *
- */
-void Clock_Wait(uint32_t i)
-{
-	wait_ms(i);
-}
-/*---------------------------------------------------------------------------*/
-
-
-