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:
188:bcfe06ba3d64
--- a/drivers/InterruptIn.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/drivers/InterruptIn.h	Thu Sep 06 13:40:20 2018 +0100
@@ -106,9 +106,10 @@
      */
     template<typename T, typename M>
     MBED_DEPRECATED_SINCE("mbed-os-5.1",
-        "The rise function does not support cv-qualifiers. Replaced by "
-        "rise(callback(obj, method)).")
-    void rise(T *obj, M method) {
+                          "The rise function does not support cv-qualifiers. Replaced by "
+                          "rise(callback(obj, method)).")
+    void rise(T *obj, M method)
+    {
         core_util_critical_section_enter();
         rise(callback(obj, method));
         core_util_critical_section_exit();
@@ -130,9 +131,10 @@
      */
     template<typename T, typename M>
     MBED_DEPRECATED_SINCE("mbed-os-5.1",
-        "The fall function does not support cv-qualifiers. Replaced by "
-        "fall(callback(obj, method)).")
-    void fall(T *obj, M method) {
+                          "The fall function does not support cv-qualifiers. Replaced by "
+                          "fall(callback(obj, method)).")
+    void fall(T *obj, M method)
+    {
         core_util_critical_section_enter();
         fall(callback(obj, method));
         core_util_critical_section_exit();