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:
171:3a7713b1edbc
--- a/platform/PlatformMutex.h	Fri Jun 22 15:38:59 2018 +0100
+++ b/platform/PlatformMutex.h	Thu Sep 06 13:39:34 2018 +0100
@@ -33,19 +33,23 @@
 */
 class PlatformMutex : private mbed::NonCopyable<PlatformMutex> {
 public:
-    PlatformMutex() {
+    PlatformMutex()
+    {
         // Stub
 
     }
-    ~PlatformMutex() {
+    ~PlatformMutex()
+    {
         // Stub
     }
 
-    void lock() {
+    void lock()
+    {
         // Do nothing
     }
 
-    void unlock() {
+    void unlock()
+    {
         // Do nothing
     }
 };