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:
169:a7c7b631e539
Parent:
165:d1b4690b3f8b
Child:
170:e95d10626187
--- a/drivers/SerialWireOutput.h	Thu May 24 15:35:55 2018 +0100
+++ b/drivers/SerialWireOutput.h	Fri Jun 22 15:38:59 2018 +0100
@@ -19,8 +19,12 @@
 #include "hal/itm_api.h"
 #include "platform/FileHandle.h"
 
+namespace mbed {
+  
 class SerialWireOutput : public FileHandle {
+
 public:
+
     SerialWireOutput(void)
     {
         /* Initialize ITM using internal init function. */
@@ -67,5 +71,7 @@
         return 0;
     }
 };
+ 
+} // namespace mbed
 
 #endif