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>2018-04-10 18:43:04 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-04-10 18:43:21 +0300
commit3d28ae850b69dbb101c14b496a8b57276f1f6c3e (patch)
treeace858262c8623425afa91b16b342fa6f1371079 /src/ZProbe.h
parent81766be3d9a462cc420b2e1f35c23d189c7fb6f9 (diff)
Again more RTOS work
Use our own version of vsnprintf to save stack and avoid needing to stop scheduler during calls to it G0 now moves at maximum travel speed and ignores F parameters Fixed problem with doing G20 after loading or probing a height map with a significant Z offset Added chrishamm's spindle and fan map changes Added type 10 Z probe which uses Z motor stall detection Don't need to home any more before simulating a file Update user coordinates after G10 is used to change tool offsets Don't require both X and Y or both I and J parameters to be specified in G2/G3 commands
Diffstat (limited to 'src/ZProbe.h')
-rw-r--r--src/ZProbe.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ZProbe.h b/src/ZProbe.h
index 0ebea544..75c43f80 100644
--- a/src/ZProbe.h
+++ b/src/ZProbe.h
@@ -22,7 +22,8 @@ enum class ZProbeType : uint8_t
zSwitch = 7,
unfilteredDigital = 8,
blTouch = 9,
- numTypes = 10 // must be 1 higher than the last type
+ zMotorStall = 10,
+ numTypes = 11 // must be 1 higher than the last type
};
class ZProbe