The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Revision:
170:e95d10626187
Parent:
158:1c57384330a6
Child:
172:65be27845400
--- a/platform/mbed_debug.h	Fri Jun 22 15:38:59 2018 +0100
+++ b/platform/mbed_debug.h	Thu Sep 06 13:39:34 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;