We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e2013f commit 36055a2Copy full SHA for 36055a2
cores/arduino/watchdog.cpp
@@ -30,7 +30,7 @@ void watchdogEnable (uint32_t timeout)
30
timeout = 1;
31
else if (timeout > 0xFFF)
32
timeout = 0xFFF;
33
- timeout = WDT_MR_WDRSTEN | WDT_MR_WDRPROC | WDT_MR_WDV(timeout) | WDT_MR_WDD(timeout);
+ timeout = WDT_MR_WDRSTEN | WDT_MR_WDV(timeout) | WDT_MR_WDD(timeout);
34
WDT_Enable (WDT, timeout);
35
}
36
0 commit comments