From 9f48f26876d132de6a7f060c6fa85d82b674da8b Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Fri, 28 Jun 2019 10:50:49 +0100 Subject: [PATCH] Watchdog: fix timeout - use full range for watchdog --- drivers/Watchdog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/Watchdog.h b/drivers/Watchdog.h index 3693d6a6a8..fd7cb41d8a 100644 --- a/drivers/Watchdog.h +++ b/drivers/Watchdog.h @@ -51,7 +51,7 @@ namespace mbed { */ class Watchdog : private NonCopyable { public: - static const uint32_t watchdog_timeout = MBED_CONF_TARGET_WATCHDOG_TIMEOUT / 2; + static const uint32_t watchdog_timeout = MBED_CONF_TARGET_WATCHDOG_TIMEOUT; /** As Watchdog might not stop ever, there is just one instance - we use single instance. * This ensures we keep Watchdog alive. To operate watchdog, use start/stop methods.