mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Revision:
187:0387e8f68319
Parent:
186:707f6e361f3e
Child:
189:f392fc9709a3
--- a/platform/mbed_wait_api.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/platform/mbed_wait_api.h	Thu Sep 06 13:40:20 2018 +0100
@@ -5,7 +5,7 @@
  * \defgroup platform_wait_api wait_api functions
  * @{
  */
- 
+
 /* mbed Microcontroller Library
  * Copyright (c) 2006-2013 ARM Limited
  *
@@ -53,10 +53,10 @@
  *  the accuracy of single precision floating point).
  *
  *  @param s number of seconds to wait
- * 
+ *
  *  @note
- *    If the RTOS is present, this function always spins to get the exact number of microseconds, 
- *    which potentially affects power (such as preventing deep sleep) and multithread performance. 
+ *    If the RTOS is present, this function always spins to get the exact number of microseconds,
+ *    which potentially affects power (such as preventing deep sleep) and multithread performance.
  *    You can avoid it by using Thread::wait().
  */
 void wait(float s);
@@ -64,10 +64,10 @@
 /** Waits a number of milliseconds.
  *
  *  @param ms the whole number of milliseconds to wait
- * 
+ *
  *  @note
- *    If the RTOS is present, this function always spins to get the exact number of microseconds, 
- *    which potentially affects power (such as preventing deep sleep) and multithread performance. 
+ *    If the RTOS is present, this function always spins to get the exact number of microseconds,
+ *    which potentially affects power (such as preventing deep sleep) and multithread performance.
  *    You can avoid it by using Thread::wait().
  */
 void wait_ms(int ms);
@@ -75,9 +75,9 @@
 /** Waits a number of microseconds.
  *
  *  @param us the whole number of microseconds to wait
- * 
+ *
  *  @note
- *    If the RTOS is present, this function always spins to get the exact number of microseconds, 
+ *    If the RTOS is present, this function always spins to get the exact number of microseconds,
  *    which potentially affects power (such as preventing deep sleep) and multithread performance.
  */
 void wait_us(int us);