You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This enhances the code to work on cases like:
watchdog(5);
sleep 4;
watchdog(10);
sleep 8;
Prior to this commit, you had to explicitly cancel an existing watchdog
before setting a new one.
As a result of this commit, all possible wathdog variables get undef'd
early. This makes later undef calls redundant, so they are removed.
Suggested by Tony Cook
0 commit comments