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: TYBLE16_simple_data_logger TYBLE16_MP3_Air
Diff: drivers/Watchdog.h
- 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