Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MarlinFirmware/Marlin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Lahteine <thinkyhead@users.noreply.github.com>2022-10-19 08:45:35 +0300
committerScott Lahteine <thinkyhead@users.noreply.github.com>2022-10-19 08:45:35 +0300
commite49c3dc0889f1a6b597701ceb69624bdf4365445 (patch)
tree99150ebc7c16097a9a155a4e67dd714b477fe45a
parent6aa536c08f444daaf7e3aad125ab9ff225515e2b (diff)
🩹 Polargraph followup
Fix issue from #24847
-rw-r--r--Marlin/src/module/settings.cpp16
1 files changed, 4 insertions, 12 deletions
diff --git a/Marlin/src/module/settings.cpp b/Marlin/src/module/settings.cpp
index 95836a5f3a..cb8fe217e9 100644
--- a/Marlin/src/module/settings.cpp
+++ b/Marlin/src/module/settings.cpp
@@ -319,7 +319,7 @@ typedef struct SettingsDataStruct {
#endif
//
- // Kinematic Settings
+ // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
//
#if IS_KINEMATIC
float segments_per_second; // M665 S
@@ -992,7 +992,7 @@ void MarlinSettings::postprocess() {
}
//
- // Kinematic Settings
+ // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
//
#if IS_KINEMATIC
{
@@ -1445,14 +1445,6 @@ void MarlinSettings::postprocess() {
EEPROM_WRITE(planner.skew_factor);
//
- // POLARGRAPH
- //
- #if ENABLED(POLARGRAPH)
- _FIELD_TEST(polargraph_max_belt_len);
- EEPROM_WRITE(polargraph_max_belt_len);
- #endif
-
- //
// Advanced Pause filament load & unload lengths
//
#if HAS_EXTRUDERS
@@ -1940,7 +1932,7 @@ void MarlinSettings::postprocess() {
}
//
- // Kinematic Segments-per-second
+ // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
//
#if IS_KINEMATIC
{
@@ -3001,7 +2993,7 @@ void MarlinSettings::reset() {
#endif
//
- // Kinematic settings
+ // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
//
#if IS_KINEMATIC