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-02-16 17:10:43 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-02-16 17:10:43 +0300
commit315f4f47613fe09e613b6c639a7ddc37af3516d2 (patch)
tree45133ce063bf3bb2c40f522471f0074038168149 /src/Endstops/ZProbe.h
parent9885ed7cc55cb19fde1be14c8adfd11dfa7f86cf (diff)
Replaced HeaterProtection instances by HeaterMonitors
Diffstat (limited to 'src/Endstops/ZProbe.h')
-rw-r--r--src/Endstops/ZProbe.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/ZProbe.h b/src/Endstops/ZProbe.h
index 13bb807b..bbc129bc 100644
--- a/src/Endstops/ZProbe.h
+++ b/src/Endstops/ZProbe.h
@@ -16,7 +16,7 @@ class ZProbe : public EndstopOrZProbe
public:
ZProbe(unsigned int num, ZProbeType p_type) noexcept;
- virtual void SetIREmitter(bool on) const noexcept = 0;
+ virtual void SetIREmitter(bool on) const noexcept = 0; // Caution, this is called from within the tick ISR
virtual uint16_t GetRawReading() const noexcept = 0;
virtual void SetProbing(bool isProbing) const noexcept = 0;
virtual GCodeResult AppendPinNames(const StringRef& str) const noexcept = 0;