From 5c486f716eae3dd5332d07a7754520709c89ea21 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Fri, 28 Jun 2019 11:02:15 +0100 Subject: [PATCH] VirtualWatchdog: fix default timeout value (1ms is unreal) --- drivers/VirtualWatchdog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/VirtualWatchdog.h b/drivers/VirtualWatchdog.h index 3bd3ca3090..ce93b9b540 100644 --- a/drivers/VirtualWatchdog.h +++ b/drivers/VirtualWatchdog.h @@ -59,7 +59,7 @@ public: * MBED_CONF_TARGET_WATCHDOG_TIMEOUT. * */ - VirtualWatchdog(uint32_t timeout = 1, const char *const str = NULL); + VirtualWatchdog(uint32_t timeout = 1000, const char *const str = NULL); ~VirtualWatchdog(); public: