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>2021-09-13 21:26:39 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-09-13 21:26:39 +0300
commit28224f7ad2479c3a961f359f276eae9b7018f196 (patch)
treeaacace61c769867bd4f3b54470d388bbe78735bd /src/Platform
parent986fc9cddb82b8095fd97807d8f73d7b215ccd81 (diff)
Added M309 get/set heater feedforward
Also added M407 and removed nozzle diameter parameter from M404
Diffstat (limited to 'src/Platform')
-rw-r--r--src/Platform/Platform.cpp1
-rw-r--r--src/Platform/Platform.h13
2 files changed, 0 insertions, 14 deletions
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index cb3e761c..c4eaf5e6 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -828,7 +828,6 @@ void Platform::Init() noexcept
}
// Hotend configuration
- nozzleDiameter = NOZZLE_DIAMETER;
filamentWidth = FILAMENT_WIDTH;
#if HAS_CPU_TEMP_SENSOR
diff --git a/src/Platform/Platform.h b/src/Platform/Platform.h
index 7a660391..06a63b2c 100644
--- a/src/Platform/Platform.h
+++ b/src/Platform/Platform.h
@@ -542,8 +542,6 @@ public:
// Hotend configuration
float GetFilamentWidth() const noexcept;
void SetFilamentWidth(float width) noexcept;
- float GetNozzleDiameter() const noexcept;
- void SetNozzleDiameter(float diameter) noexcept;
// Fire the inkjet (if any) in the given pattern
// If there is no inkjet false is returned; if there is one this returns true
@@ -838,7 +836,6 @@ private:
// Hotend configuration
float filamentWidth;
- float nozzleDiameter;
// Power monitoring
#if HAS_VOLTAGE_MONITOR
@@ -1090,14 +1087,4 @@ inline void Platform::SetFilamentWidth(float width) noexcept
filamentWidth = width;
}
-inline float Platform::GetNozzleDiameter() const noexcept
-{
- return nozzleDiameter;
-}
-
-inline void Platform::SetNozzleDiameter(float diameter) noexcept
-{
- nozzleDiameter = diameter;
-}
-
#endif