Merge pull request #4012 from Blue-Marlin/watchdoghealing

Heal the watchdog
This commit is contained in:
Scott Lahteine 2016-06-11 16:18:22 -07:00 committed by GitHub
commit c7eeb09e8f

View file

@ -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 });
}