Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: STM32L452_Nucleo_ticker
Fork of mbed-dev by
Diff: drivers/InterruptManager.h
- Revision:
- 167:e84263d55307
- Parent:
- 149:156823d33999
- Child:
- 168:9672193075cf
--- 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 - - -/** @}*/