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:
145:64910690c574
Parent:
138:093f2bd7b9eb
--- a/platform/FunctionPointer.h	Thu Jun 08 14:53:05 2017 +0100
+++ b/platform/FunctionPointer.h	Wed Jun 21 17:31:38 2017 +0100
@@ -23,11 +23,13 @@
 
 namespace mbed {
 /** \addtogroup platform */
-/** @{*/
 
 
 // Declarations for backwards compatibility
 // To be foward compatible, code should adopt the Callback class
+/**
+ * @ingroup platform
+ */
 template <typename R, typename A1>
 class FunctionPointerArg1 : public Callback<R(A1)> {
 public:
@@ -59,6 +61,9 @@
     }
 };
 
+/**
+ * @ingroup platform
+ */
 template <typename R>
 class FunctionPointerArg1<R, void> : public Callback<R()> {
 public:
@@ -96,5 +101,3 @@
 } // namespace mbed
 
 #endif
-
-/** @}*/