Browse Source

Merge pull request #3955 from MagoKimbra/RCBugFix

Fix M428 width DELTA & SCARA
Scott Lahteine 9 years ago
parent
commit
4e13cd3f35
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      Marlin/Marlin_main.cpp

+ 5
- 1
Marlin/Marlin_main.cpp View File

6019
   }
6019
   }
6020
 
6020
 
6021
   if (!err) {
6021
   if (!err) {
6022
-    sync_plan_position();
6022
+    #if ENABLED(DELTA) && ENABLED(SCARA)
6023
+      sync_plan_position_delta();
6024
+    #else
6025
+      sync_plan_position();
6026
+    #endif
6023
     report_current_position();
6027
     report_current_position();
6024
     LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
6028
     LCD_MESSAGEPGM(MSG_HOME_OFFSETS_APPLIED);
6025
     #if HAS_BUZZER
6029
     #if HAS_BUZZER

Loading…
Cancel
Save