mirror of https://github.com/ARMmbed/mbed-os.git
Watchdog: add docs update about intention one vs multiple Watchdogs
VirtualWatchdog - multiple timers in the system - most used watchdog Watchdog - simple driver for one system timer in the app - bootloader or similarpull/10857/head
parent
89c0ab793e
commit
dc2e8ab35e
|
@ -36,7 +36,10 @@ namespace mbed {
|
||||||
|
|
||||||
/** \addtogroup drivers */
|
/** \addtogroup drivers */
|
||||||
|
|
||||||
/** A system timer that will reset the system in the case of system failures or
|
/** VirtualWatchdog should be used for applications where you use multiple services requiring watchdog functionality.
|
||||||
|
* Use `Watchdog` driver for simple uses cases like bootloader.
|
||||||
|
*
|
||||||
|
* A system timer that will reset the system in the case of system failures or
|
||||||
* malfunctions.
|
* malfunctions.
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
|
|
|
@ -31,7 +31,7 @@ namespace mbed {
|
||||||
|
|
||||||
/** \addtogroup drivers */
|
/** \addtogroup drivers */
|
||||||
/** Hardware system timer that will reset the system in the case of system failures or
|
/** Hardware system timer that will reset the system in the case of system failures or
|
||||||
* malfunctions. There is only one instance in the system.
|
* malfunctions. There is only one instance in the system (for multiple system timers, see VirtualWatchdog driver).
|
||||||
*
|
*
|
||||||
* Example:
|
* Example:
|
||||||
* @code
|
* @code
|
||||||
|
|
Loading…
Reference in New Issue