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-04-07 17:14:32 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-04-07 17:14:32 +0300
commitab5685b306a681915d6b842c2f1bd71afbc8d2ee (patch)
tree3ae594807645de639bb405100210b4b333eea5e0 /src/Endstops/ZProbe.h
parentf545b211949a0993491d45e9eef16509b3d40e0f (diff)
Increment move.seq when speed or extrusion factor is changed
Speed factor is on longer live in object model Rationalised exception specifications
Diffstat (limited to 'src/Endstops/ZProbe.h')
-rw-r--r--src/Endstops/ZProbe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Endstops/ZProbe.h b/src/Endstops/ZProbe.h
index 363ac91e..b667cf40 100644
--- a/src/Endstops/ZProbe.h
+++ b/src/Endstops/ZProbe.h
@@ -20,7 +20,7 @@ public:
virtual uint16_t GetRawReading() const noexcept = 0;
virtual void SetProbing(bool isProbing) noexcept = 0;
virtual GCodeResult AppendPinNames(const StringRef& str) noexcept = 0; // not const because it may update the state too
- virtual GCodeResult Configure(GCodeBuffer& gb, const StringRef& reply, bool& seen) THROWS_GCODE_EXCEPTION; // 'seen' is an in-out parameter
+ virtual GCodeResult Configure(GCodeBuffer& gb, const StringRef& reply, bool& seen) THROWS(GCodeException); // 'seen' is an in-out parameter
virtual GCodeResult SendProgram(const uint32_t zProbeProgram[], size_t len, const StringRef& reply) noexcept;
#if SUPPORT_CAN_EXPANSION
@@ -54,7 +54,7 @@ public:
bool IsDeployedByUser() const noexcept { return isDeployedByUser; }
void SetProbingAway(const bool probingAway) noexcept { misc.parts.probingAway = probingAway; }
- GCodeResult HandleG31(GCodeBuffer& gb, const StringRef& reply) THROWS_GCODE_EXCEPTION;
+ GCodeResult HandleG31(GCodeBuffer& gb, const StringRef& reply) THROWS(GCodeException);
void SetTriggerHeight(float height) noexcept { triggerHeight = height; }
void SetSaveToConfigOverride() noexcept { misc.parts.saveToConfigOverride = true; }
void SetDeployedByUser(bool b) noexcept { isDeployedByUser = b; }