Skip to content

Commit 14a16a4

Browse files
committed
Disable watchdog for MKR GSM 1400.
1 parent e5a6256 commit 14a16a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/utility/watchdog/Watchdog.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,10 @@ static bool is_watchdog_enabled = false;
5151
#ifdef ARDUINO_ARCH_SAMD
5252
void samd_watchdog_enable()
5353
{
54+
#ifndef ARDUINO_SAMD_MKRGSM1400
5455
is_watchdog_enabled = true;
5556
Watchdog.enable(SAMD_WATCHDOG_MAX_TIME_ms);
57+
#endif /* ARDUINO_SAMD_MKRGSM1400 */
5658
}
5759

5860
void samd_watchdog_reset()

0 commit comments

Comments
 (0)