Kenji Arai / mbed-os_TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Revision:
1:9db0e321a9f4
Parent:
0:5b88d5760320
--- a/drivers/Watchdog.h	Tue Dec 17 23:23:45 2019 +0000
+++ b/drivers/Watchdog.h	Tue Dec 31 06:02:27 2019 +0000
@@ -28,8 +28,12 @@
 #include <cstdio>
 
 namespace mbed {
+/**
+ * \defgroup drivers_Watchdog Watchdog class
+ * \ingroup drivers-public-api
+ * @{
+ */
 
-/** \addtogroup drivers */
 /** A hardware watchdog timer that resets the system in the case of system
  * failures or malfunctions. If you fail to refresh the Watchdog timer periodically,
  * it resets the system after a set period of time.
@@ -56,7 +60,6 @@
  * @endcode
  *
  * @note Synchronization level: Interrupt safe
- * @ingroup drivers
  */
 class Watchdog : private NonCopyable<Watchdog>  {
 public:
@@ -149,6 +152,8 @@
     bool _running;
 };
 
+/** @}*/
+
 } // namespace mbed
 
 #endif // DEVICE_WATCHDOG