Option to prevent (extra) Watchdog init on STM32 (#19693)

This commit is contained in:
Victor Oliveira
2020-10-11 21:31:21 -03:00
committed by GitHub
parent 18dd0d00a6
commit 639b0b8f50
3 changed files with 11 additions and 2 deletions

View File

@ -30,7 +30,11 @@
#include "watchdog.h"
#include <IWatchdog.h>
void watchdog_init() { IWatchdog.begin(4000000); } // 4 sec timeout
void watchdog_init() {
#if DISABLED(DISABLE_WATCHDOG_INIT)
IWatchdog.begin(4000000); // 4 sec timeout
#endif
}
void HAL_watchdog_refresh() {
IWatchdog.reload();