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>2020-11-11 15:42:20 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-11-11 15:42:20 +0300
commit56cc6e24532e74919c29f42cc9ae4e7c564cdb0f (patch)
tree847b9b7f419ec65d49efc5598470bdc90a6dd2b8 /src/Heating/LocalHeater.h
parentd2e3056950eef02a5614ef8f0e3d34c06140bdb3 (diff)
Implemented heater feedforward for fan RPM changes
Diffstat (limited to 'src/Heating/LocalHeater.h')
-rw-r--r--src/Heating/LocalHeater.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Heating/LocalHeater.h b/src/Heating/LocalHeater.h
index 8c32dc39..5cad973b 100644
--- a/src/Heating/LocalHeater.h
+++ b/src/Heating/LocalHeater.h
@@ -50,6 +50,7 @@ public:
GCodeResult StartAutoTune(GCodeBuffer& gb, const StringRef& reply) 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;
#if SUPPORT_CAN_EXPANSION
void UpdateRemoteStatus(CanAddress src, const CanHeaterReport& report) noexcept override { }