Browse Source

Z babystepping for coreXY (PR#47)


only X and Y were not implemented
wurstnase 9 years ago
parent
commit
f3ab1dba54
2 changed files with 3 additions and 2 deletions
  1. 1
    0
      Marlin/Configuration_adv.h
  2. 2
    2
      Marlin/SanityCheck.h

+ 1
- 0
Marlin/Configuration_adv.h View File

@@ -362,6 +362,7 @@
362 362
 //#define BABYSTEPPING
363 363
 #if ENABLED(BABYSTEPPING)
364 364
   #define BABYSTEP_XY  //not only z, but also XY in the menu. more clutter, more functions
365
+                       //not implemented for CoreXY and deltabots!
365 366
   #define BABYSTEP_INVERT_Z false  //true for inverse movements in Z
366 367
   #define BABYSTEP_Z_MULTIPLICATOR 2 //faster z movements
367 368
 #endif

+ 2
- 2
Marlin/SanityCheck.h View File

@@ -32,8 +32,8 @@
32 32
    * Babystepping
33 33
    */
34 34
   #if ENABLED(BABYSTEPPING)
35
-    #if ENABLED(COREXY)
36
-      #error BABYSTEPPING not implemented for COREXY yet.
35
+    #if ENABLED(COREXY) && ENABLED(BABYSTEP_XY)
36
+      #error BABYSTEPPING only implemented for Z axis on CoreXY.
37 37
     #endif
38 38
     #if ENABLED(SCARA)
39 39
       #error BABYSTEPPING is not implemented for SCARA yet.

Loading…
Cancel
Save