2018-10-03 08:26:07 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-10-03 08:26:07 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2018-10-03 08:26:07 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-12-03 12:55:49 +00:00
|
|
|
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
|
2018-10-03 08:26:07 +00:00
|
|
|
|
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(USE_WATCHDOG)
|
|
|
|
|
|
|
|
#include "watchdog_STM32.h"
|
|
|
|
#include <IWatchdog.h>
|
|
|
|
|
|
|
|
void watchdog_init() { IWatchdog.begin(4000000); } // 4 sec timeout
|
|
|
|
|
2018-10-16 11:45:44 +00:00
|
|
|
void watchdog_reset() {
|
|
|
|
IWatchdog.reload();
|
2018-10-16 11:42:41 +00:00
|
|
|
#if PIN_EXISTS(LED)
|
2018-10-16 11:45:44 +00:00
|
|
|
TOGGLE(LED_PIN); // heartbeat indicator
|
2018-10-16 11:42:41 +00:00
|
|
|
#endif
|
|
|
|
}
|
2018-10-03 08:26:07 +00:00
|
|
|
|
|
|
|
#endif // USE_WATCHDOG
|
2019-06-29 04:04:33 +00:00
|
|
|
#endif // ARDUINO_ARCH_STM32 && !STM32GENERIC
|