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>2022-11-10 22:52:05 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-11-10 22:52:05 +0300
commit4645654907115df006716d2dd208936525579bd9 (patch)
tree8f0a3faeaa1a193321f7fb946e217222c2327374 /src/Movement/RawMove.h
parent785a7923e628f7a5699c2f52b277b3dbda8ed7f6 (diff)
Fixed G923.5-dev
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;