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:
160:5571c4ff569f
Parent:
158:1c57384330a6
Child:
161:aa5281ff4a02
--- a/mbed.h	Thu Nov 23 11:44:04 2017 +0000
+++ b/mbed.h	Wed Jan 17 16:13:02 2018 +0000
@@ -16,13 +16,13 @@
 #ifndef MBED_H
 #define MBED_H
 
-#define MBED_LIBRARY_VERSION 156
+#define MBED_LIBRARY_VERSION 158
 
 #if MBED_CONF_RTOS_PRESENT
 // RTOS present, this is valid only for mbed OS 5
 #define MBED_MAJOR_VERSION 5
-#define MBED_MINOR_VERSION 6
-#define MBED_PATCH_VERSION 5
+#define MBED_MINOR_VERSION 7
+#define MBED_PATCH_VERSION 3
 
 #else
 // mbed 2
@@ -32,8 +32,7 @@
 #endif
 
 #define MBED_ENCODE_VERSION(major, minor, patch) ((major)*10000 + (minor)*100 + (patch))
-#define MBED_VERSION MBED_ENCODE_VERSION(MBED_MAJOR_VERSION, MBED_MINOR_VERSION, MBED_PATCH_VERSION)
-
+#define MBED_VERSION MBED_ENCODE_VERSION(MBED_MAJOR_VERSION, MBED_MINOR_VERSION, MBED_PATCH_VERSION)        
 #if MBED_CONF_RTOS_PRESENT
 #include "rtos/rtos.h"
 #endif