mbed library sources. Supersedes mbed-src. Fixed broken STM32F1xx RTC on rtc_api.c

Dependents:   Nucleo_F103RB_RTC_battery_bkup_pwr_off_okay

Fork of mbed-dev by mbed official

Revision:
160:d5399cc887bb
Parent:
150:02e0a0aed4ec
--- a/targets/TARGET_ublox/TARGET_HI2110/sleep.c	Tue Feb 28 17:13:35 2017 +0000
+++ b/targets/TARGET_ublox/TARGET_HI2110/sleep.c	Tue Mar 14 16:40:56 2017 +0000
@@ -40,14 +40,14 @@
  * MBED API CALLS
  * ----------------------------------------------------------------*/
 
-void sleep(void)
+void hal_sleep(void)
 {
     __DSB();
     __WFI();
     __ISB();
 }
 
-void deepsleep()
+void hal_deepsleep()
 {
-    sleep();
+    hal_sleep();
 }