3mdeb / Watchdog

Dependents:   IoT_W5500_MQTT stm32-sensor-base2 STM32F103C8T6_WIFI_Heating_system Santec ... more

Fork of Watchdog by Bernard Remond

Files at this revision

API Documentation at this revision

Comitter:
WiredHome
Date:
Sun Mar 20 23:24:36 2011 +0000
Parent:
0:7a316f14da9c
Child:
2:2873f068f325
Commit message:

Changed in this revision

Watchdog.h Show annotated file Show diff for this revision Revisions of this file
--- a/Watchdog.h	Sun Mar 20 23:22:50 2011 +0000
+++ b/Watchdog.h	Sun Mar 20 23:24:36 2011 +0000
@@ -29,7 +29,7 @@
 ///      
 ///    wd.Configure(30.0);      // sets the timeout interval
 ///    for (;;) {
-///         wd.Service;       // kick the dog before the timeout
+///         wd.Service();       // kick the dog before the timeout
 /// @endcode
 ///
 class Watchdog {
@@ -61,6 +61,10 @@
     
     /// Service the Watchdog so it does not cause a system reset
     ///
+    /// example:
+    /// @code
+    ///    wd.Service();
+    /// @endcode
     /// @returns none
     void Service();