From efe719f8989b534b3158b776f11ee361b2b9372f Mon Sep 17 00:00:00 2001 From: Blue-Marlin Date: Sun, 12 Jun 2016 00:34:31 +0200 Subject: [PATCH] Heal the watchgog --- Marlin/buzzer.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Marlin/buzzer.h b/Marlin/buzzer.h index 2e436259e4..c87fe849d7 100644 --- a/Marlin/buzzer.h +++ b/Marlin/buzzer.h @@ -24,8 +24,8 @@ #define __BUZZER_H__ #include "fastio.h" -#include "watchdog.h" #include "circularqueue.h" +#include "temperature.h" #define TONE_QUEUE_LENGTH 4 @@ -106,9 +106,7 @@ class Buzzer { while (buffer.isFull()) { delay(5); this->tick(); - #if ENABLED(USE_WATCHDOG) - watchdog_reset(); - #endif + thermalManager.manage_heater(); } this->buffer.enqueue((tone_t) { duration, frequency }); }