Forked.
Fork of mbed-dev by
Diff: platform/CallChain.h
- Revision:
- 167:e84263d55307
- Parent:
- 160:d5399cc887bb
- Child:
- 168:9672193075cf
diff -r c97ed07ec1a8 -r e84263d55307 platform/CallChain.h --- a/platform/CallChain.h Thu Jun 08 15:02:37 2017 +0100 +++ b/platform/CallChain.h Wed Jun 21 17:46:44 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 -/** @}*/