1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-28 14:24:34 +00:00

🩹 Polargraph followup

Fix issue from #24847
This commit is contained in:
Scott Lahteine 2022-10-19 00:45:35 -05:00
parent 6aa536c08f
commit e49c3dc088

View File

@ -319,7 +319,7 @@ typedef struct SettingsDataStruct {
#endif #endif
// //
// Kinematic Settings // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
// //
#if IS_KINEMATIC #if IS_KINEMATIC
float segments_per_second; // M665 S float segments_per_second; // M665 S
@ -992,7 +992,7 @@ void MarlinSettings::postprocess() {
} }
// //
// Kinematic Settings // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
// //
#if IS_KINEMATIC #if IS_KINEMATIC
{ {
@ -1444,14 +1444,6 @@ void MarlinSettings::postprocess() {
_FIELD_TEST(planner_skew_factor); _FIELD_TEST(planner_skew_factor);
EEPROM_WRITE(planner.skew_factor); 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 // Advanced Pause filament load & unload lengths
// //
@ -1940,7 +1932,7 @@ void MarlinSettings::postprocess() {
} }
// //
// Kinematic Segments-per-second // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
// //
#if IS_KINEMATIC #if IS_KINEMATIC
{ {
@ -3001,7 +2993,7 @@ void MarlinSettings::reset() {
#endif #endif
// //
// Kinematic settings // Kinematic Settings (Delta, SCARA, TPARA, Polargraph...)
// //
#if IS_KINEMATIC #if IS_KINEMATIC