Browse Source

Fix M428 width DELTA & SCARA

MagoKimbra 9 years ago
parent
commit
f499be084a
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      Marlin/Marlin_main.cpp

+ 5
- 1
Marlin/Marlin_main.cpp View File

6005
   }
6005
   }
6006
 
6006
 
6007
   if (!err) {
6007
   if (!err) {
6008
-    sync_plan_position();
6008
+    #if ENABLED(DELTA) && ENABLED(SCARA)
6009
+      sync_plan_position_delta();
6010
+    #else
6011
+      sync_plan_position();
6012
+    #endif
6009
     report_current_position();
6013
     report_current_position();
6010
     LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
6014
     LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
6011
     #if HAS_BUZZER
6015
     #if HAS_BUZZER

Loading…
Cancel
Save