From 18ccfdacdd652db3ad1a91a156b43b3e18d62e33 Mon Sep 17 00:00:00 2001 From: David Crocker Date: Thu, 12 Nov 2020 18:12:06 +0000 Subject: Fixes and improvements to new heater model and tuning Heater model defaults to enabled when set up with default parameters M303 H parameter is optional (but checked) if T parameter is given --- src/Heating/LocalHeater.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Heating/LocalHeater.h') diff --git a/src/Heating/LocalHeater.h b/src/Heating/LocalHeater.h index b1ccdfcb..e21148c7 100644 --- a/src/Heating/LocalHeater.h +++ b/src/Heating/LocalHeater.h @@ -47,7 +47,7 @@ public: float GetTemperature() const noexcept override; // Get the current temperature float GetAveragePWM() const noexcept override; // Return the running average PWM to the heater. Answer is a fraction in [0, 1]. float GetAccumulator() const noexcept override; // Return the integral accumulator - GCodeResult StartAutoTune(GCodeBuffer& gb, const StringRef& reply) THROWS(GCodeException) override; // Start an auto tune cycle for this heater + GCodeResult StartAutoTune(GCodeBuffer& gb, const StringRef& reply, FansBitmap fans) THROWS(GCodeException) override; // Start an auto tune cycle for this heater void GetAutoTuneStatus(const StringRef& reply) const noexcept override; // Get the auto tune status or last result void Suspend(bool sus) noexcept override; // Suspend the heater to conserve power or while doing Z probing void PrintCoolingFanPwmChanged(float pwmChange) noexcept override; -- cgit v1.2.3