We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91679d4 commit bb1cc32Copy full SHA for bb1cc32
drivers/Watchdog.cpp
@@ -17,7 +17,6 @@
17
#ifdef DEVICE_WATCHDOG
18
19
#include "Watchdog.h"
20
-#include "VirtualWatchdog.h"
21
22
#define MS_TO_US(x) ((x) * 1000) //macro to convert millisecond to microsecond
23
@@ -78,9 +77,6 @@ void Watchdog::kick()
78
77
{
79
core_util_critical_section_enter();
80
hal_watchdog_kick();
81
- // VirtualWatchdog will access the watchdog process method to verify
82
- // all registered users/threads in alive state */
83
- VirtualWatchdog::process(((elapsed_ms <= 0) ? 1 : elapsed_ms));
84
core_util_critical_section_exit();
85
}
86
0 commit comments