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.
Dependents: Nucleo_BLE_HeartRate Nucleo_BLE_UART Nucleo_BLE_UART
clock.c
00001 00002 #include "clock.h" 00003 #include "wait_api.h" 00004 #include "rtc_time.h" 00005 00006 const uint32_t CLOCK_SECOND = 1000; 00007 00008 /*---------------------------------------------------------------------------*/ 00009 00010 void Clock_Init(void) 00011 { 00012 //Not Used 00013 } 00014 00015 /*---------------------------------------------------------------------------*/ 00016 00017 tClockTime Clock_Time(void) 00018 { 00019 return clock(); 00020 } 00021 00022 /*---------------------------------------------------------------------------*/ 00023 /** 00024 * Wait for a multiple of 1 ms. 00025 * 00026 */ 00027 void Clock_Wait(int i) 00028 { 00029 wait_ms(i); 00030 } 00031 /*---------------------------------------------------------------------------*/ 00032 00033 00034
Generated on Wed Jul 13 2022 04:47:13 by
1.7.2