mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

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
-
-
-/** @}*/