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:
Diffstat (limited to 'src/Movement/RawMove.h')
-rw-r--r--src/Movement/RawMove.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Movement/RawMove.h b/src/Movement/RawMove.h
index fee725d0..9ac05b36 100644
--- a/src/Movement/RawMove.h
+++ b/src/Movement/RawMove.h
@@ -92,6 +92,8 @@ public:
void ReleaseAxesAndExtruders(AxesBitmap axesToRelease) noexcept;
void ReleaseAxisLetter(char letter) noexcept; // stop claiming that we own an axis letter (if we do) but don't release the associated axis
void SaveOwnAxisCoordinates() noexcept; // fetch and save the coordinates of axes we own to lastKnownMachinePositions
+ void OwnedAxisCoordinatesUpdated(AxesBitmap axesIncluded) noexcept; // update changed coordinates of some owned axes - called after G92
+ void OwnedAxisCoordinateUpdated(size_t axis) noexcept; // update the machine coordinate of an axis we own - called after Z probing
#endif
unsigned int GetMsNumber() const noexcept { return msNumber; }
@@ -102,7 +104,6 @@ public:
void ClearMove() noexcept;
void SavePosition(unsigned int restorePointNumber, size_t numAxes, float p_feedRate, FilePosition p_filePos) noexcept
pre(restorePointNumber < NumTotalRestorePoints);
- void UpdateOwnedAxisCoordinate(size_t axis, float coordinate) noexcept; // update the machine coordinate of an axis we own - called after Z probing
// Tool management
void SelectTool(int toolNumber, bool simulating) noexcept;