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
Child:
146:22da6e220af6
--- a/platform/CallChain.h	Thu Jun 08 14:53:05 2017 +0100
+++ b/platform/CallChain.h	Wed Jun 21 17:31:38 2017 +0100
@@ -22,13 +22,12 @@
 
 namespace mbed {
 /** \addtogroup platform */
-/** @{*/
 
 /** Group one or more functions in an instance of a CallChain, then call them in
  * sequence using CallChain::call(). Used mostly by the interrupt chaining code,
  * but can be used for other purposes.
  *
- * @Note Synchronization level: Not protected
+ * @note Synchronization level: Not protected
  *
  * Example:
  * @code
@@ -60,6 +59,7 @@
  *     chain.call();
  * }
  * @endcode
+ * @ingroup platform
  */
 
 typedef Callback<void()> *pFunctionPointer_t;
@@ -114,8 +114,8 @@
 
     /** Add a function at the beginning of the chain
      *
-     *  @param tptr pointer to the object to call the member function on
-     *  @param mptr pointer to the member function to be called
+     *  @param obj pointer to the object to call the member function on
+     *  @param method pointer to the member function to be called
      *
      *  @returns
      *  The function object created for 'tptr' and 'mptr'
@@ -189,4 +189,3 @@
 
 #endif
 
-/** @}*/