Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-03-23 13:47:22 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-03-23 13:47:22 +0300
commitc565f35304b0d872d8671584dd6341ce13a82bbf (patch)
treed9d17a0179b474dd18447fa981c86faa46b2866f /src/Heating/LocalHeater.h
parentb51ef940738b4311d8b20700e0953140fc4f46e3 (diff)
Added M303 Y and F parameters
Diffstat (limited to 'src/Heating/LocalHeater.h')
-rw-r--r--src/Heating/LocalHeater.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Heating/LocalHeater.h b/src/Heating/LocalHeater.h
index 040b6ba6..d6ef0c99 100644
--- a/src/Heating/LocalHeater.h
+++ b/src/Heating/LocalHeater.h
@@ -52,8 +52,8 @@ protected:
GCodeResult UpdateModel(const StringRef& reply) noexcept override; // Called when the heater model has been changed
GCodeResult UpdateFaultDetectionParameters(const StringRef& reply) noexcept override { return GCodeResult::ok; }
GCodeResult UpdateHeaterMonitors(const StringRef& reply) noexcept override { return GCodeResult::ok; }
- GCodeResult StartAutoTune(const StringRef& reply, FansBitmap fans, float targetTemp, float pwm, bool seenA, float ambientTemp) noexcept override; // Start an auto tune cycle for this heater
-
+ GCodeResult StartAutoTune(const StringRef& reply, bool seenA, float ambientTemp) noexcept override;
+ // Start an auto tune cycle for this heater
private:
void SetHeater(float power) const noexcept; // Power is a fraction in [0,1]
TemperatureError ReadTemperature() noexcept; // Read and store the temperature of this heater