Explorar el Código

Z babystepping for coreXY (PR#47)


only X and Y were not implemented
wurstnase hace 9 años
padre
commit
f3ab1dba54
Se han modificado 2 ficheros con 3 adiciones y 2 borrados
  1. 1
    0
      Marlin/Configuration_adv.h
  2. 2
    2
      Marlin/SanityCheck.h

+ 1
- 0
Marlin/Configuration_adv.h Ver fichero

@@ -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 Ver fichero

@@ -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…
Cancelar
Guardar