Browse Source

Merge pull request #3752 from AnHardt/fix-FIX_MOUNTED_PROBE

G29 missing FIX_MOUNTED_PROBE condition
Scott Lahteine 9 years ago
parent
commit
3cfea3ff12
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -3238,7 +3238,7 @@ inline void gcode_G28() {
3238 3238
 
3239 3239
     #if ENABLED(Z_PROBE_SLED)
3240 3240
       dock_sled(false); // engage (un-dock) the Z probe
3241
-    #elif ENABLED(MECHANICAL_PROBE) || (ENABLED(DELTA) && SERVO_LEVELING)
3241
+    #elif ENABLED(MECHANICAL_PROBE) || ENABLED(FIX_MOUNTED_PROBE) || (ENABLED(DELTA) && SERVO_LEVELING)
3242 3242
       deploy_z_probe();
3243 3243
     #endif
3244 3244
 

Loading…
Cancel
Save