mbed library sources. Supersedes mbed-src.
Dependents: Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more
Diff: targets/TARGET_ublox/TARGET_HI2110/sleep.c
- 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(); }