mbed library sources. Supersedes mbed-src.

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

Revision:
187:0387e8f68319
Parent:
178:79309dc6340a
Child:
189:f392fc9709a3
--- a/platform/mbed_debug.h	Fri Jun 22 16:45:37 2018 +0100
+++ b/platform/mbed_debug.h	Thu Sep 06 13:40:20 2018 +0100
@@ -5,7 +5,7 @@
  * \defgroup platform_debug Debug functions
  * @{
  */
- 
+
 /* mbed Microcontroller Library
  * Copyright (c) 2006-2013 ARM Limited
  *
@@ -37,7 +37,8 @@
  *
  * @param format printf-style format string, followed by variables
  */
-static inline void debug(const char *format, ...) {
+static inline void debug(const char *format, ...)
+{
 #if DEVICE_STDIO_MESSAGES && !defined(NDEBUG)
     va_list args;
     va_start(args, format);
@@ -55,7 +56,8 @@
  * @param condition output only if condition is true (!= 0)
  * @param format printf-style format string, followed by variables
  */
-static inline void debug_if(int condition, const char *format, ...) {
+static inline void debug_if(int condition, const char *format, ...)
+{
 #if DEVICE_STDIO_MESSAGES && !defined(NDEBUG)
     if (condition) {
         va_list args;