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/Move.h')
-rw-r--r--src/Movement/Move.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Movement/Move.h b/src/Movement/Move.h
index 8d4e560e..1eafa9b9 100644
--- a/src/Movement/Move.h
+++ b/src/Movement/Move.h
@@ -147,15 +147,11 @@ public:
HeightMap& AccessHeightMap() noexcept { return heightMap; } // Access the bed probing grid
const GridDefinition& GetGrid() const noexcept { return heightMap.GetGrid(); } // Get the grid definition
-#if HAS_MASS_STORAGE
+#if HAS_MASS_STORAGE || HAS_SBC_INTERFACE
bool LoadHeightMapFromFile(FileStore *f, const char *fname, const StringRef& r) noexcept; // Load the height map from a file returning true if an error occurred
bool SaveHeightMapToFile(FileStore *f, const char *fname) noexcept; // Save the height map to a file returning true if an error occurred
#endif
-#if HAS_SBC_INTERFACE
- void SaveHeightMapToArray(float *arr) const noexcept; // Save the height map Z coordinates to an array
-#endif
-
const RandomProbePointSet& GetProbePoints() const noexcept { return probePoints; } // Return the probe point set constructed from G30 commands
DDARing& GetMainDDARing() noexcept { return mainDDARing; }