t
Fork of mbed-dev by
Diff: drivers/InterruptManager.h
- Revision:
- 167:e84263d55307
- Parent:
- 149:156823d33999
- Child:
- 168:9672193075cf
diff -r c97ed07ec1a8 -r e84263d55307 drivers/InterruptManager.h --- a/drivers/InterruptManager.h Thu Jun 08 15:02:37 2017 +0100 +++ b/drivers/InterruptManager.h Wed Jun 21 17:46:44 2017 +0100 @@ -23,11 +23,10 @@ namespace mbed { /** \addtogroup drivers */ -/** @{*/ /** Use this singleton if you need to chain interrupt handlers. * - * @Note Synchronization level: Thread safe + * @note Synchronization level: Thread safe * * Example (for LPC1768): * @code @@ -52,10 +51,13 @@ * InterruptManager::get()->add_handler(handler, TIMER3_IRQn); * } * @endcode + * @ingroup drivers */ class InterruptManager { public: - /** Return the only instance of this class + /** Get the instance of InterruptManager Class + * + * @return the only instance of this class */ static InterruptManager* get(); @@ -170,6 +172,3 @@ } // namespace mbed #endif - - -/** @}*/