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-07-20 15:20:42 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-07-20 15:20:42 +0300
commitb2b00b36ffe92a4e74b9fc4d302ee63da94b3c92 (patch)
tree5157c62789f5f71fd6ce0d8f61c1afbb7a85e20f /src/Heating/LocalHeater.h
parentf6b97a8facd3663964654fa0ac938c45748ebc09 (diff)
Fixed assertion error when tick ISR tries to turn off all heaters
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 db6db03d..c107c2d3 100644
--- a/src/Heating/LocalHeater.h
+++ b/src/Heating/LocalHeater.h
@@ -41,6 +41,7 @@ public:
void FeedForwardAdjustment(float fanPwmChange, float extrusionChange) noexcept override;
#if SUPPORT_CAN_EXPANSION
+ bool IsLocal() const noexcept override { return true; }
void UpdateRemoteStatus(CanAddress src, const CanHeaterReport& report) noexcept override { }
void UpdateHeaterTuning(CanAddress src, const CanMessageHeaterTuningReport& msg) noexcept override { }
#endif