Quellcode durchsuchen

change to DWORD

Bob-the-Kuhn vor 8 Jahren
Ursprung
Commit
28d72f48f1
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      Marlin/configuration_store.cpp

+ 1
- 1
Marlin/configuration_store.cpp Datei anzeigen

@@ -1130,7 +1130,7 @@ void MarlinSettings::reset() {
1130 1130
   LOOP_XYZE_N(i) {
1131 1131
     planner.axis_steps_per_mm[i]          = pgm_read_float(&tmp1[i < COUNT(tmp1) ? i : COUNT(tmp1) - 1]);
1132 1132
     planner.max_feedrate_mm_s[i]          = pgm_read_float(&tmp2[i < COUNT(tmp2) ? i : COUNT(tmp2) - 1]);
1133
-    planner.max_acceleration_mm_per_s2[i] = pgm_read_float(&tmp3[i < COUNT(tmp3) ? i : COUNT(tmp3) - 1]);
1133
+    planner.max_acceleration_mm_per_s2[i] = pgm_read_dword_near(&tmp3[i < COUNT(tmp3) ? i : COUNT(tmp3) - 1]);
1134 1134
   }
1135 1135
 
1136 1136
   planner.acceleration = DEFAULT_ACCELERATION;

Laden…
Abbrechen
Speichern