No compromises for the manage_heater()

No compromises for the manage_heater(). manage_heater() will return immediately when there is nothing to do, but needs a constant detaT to work proper.
Calling idle() only every 200ms results in a display update every ~2 seconds - that should be enough.
For the other functionalities in idle() and manage_inactivity() 200ms is a lot but hopefully works.
This commit is contained in:
AnHardt
2016-05-19 20:52:11 +02:00
parent 0c4d885d5b
commit 2207001333
3 changed files with 8 additions and 7 deletions

View File

@ -7604,13 +7604,14 @@ void prepare_move() {
float feed_rate = feedrate * feedrate_multiplier / 60 / 100.0;
millis_t previous_ms = millis();
millis_t next_ping_ms = millis() + 200UL;
for (i = 1; i < segments; i++) { // Iterate (segments-1) times
thermalManager.manage_heater();
millis_t now = millis();
if (now - previous_ms > 200UL) {
previous_ms = now;
if (ELAPSED(now, next_ping_ms)) {
next_ping_ms = now + 200UL;
idle();
}