Skip to content

Commit

Permalink
Z babystepping for coreXY (PR#47)
Browse files Browse the repository at this point in the history
only X and Y were not implemented
  • Loading branch information
Wurstnase authored and Wackerbarth committed Aug 5, 2015
1 parent 35afea1 commit f3ab1db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Marlin/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@
//#define BABYSTEPPING
#if ENABLED(BABYSTEPPING)
#define BABYSTEP_XY //not only z, but also XY in the menu. more clutter, more functions
//not implemented for CoreXY and deltabots!
#define BABYSTEP_INVERT_Z false //true for inverse movements in Z
#define BABYSTEP_Z_MULTIPLICATOR 2 //faster z movements
#endif
Expand Down
4 changes: 2 additions & 2 deletions Marlin/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
* Babystepping
*/
#if ENABLED(BABYSTEPPING)
#if ENABLED(COREXY)
#error BABYSTEPPING not implemented for COREXY yet.
#if ENABLED(COREXY) && ENABLED(BABYSTEP_XY)
#error BABYSTEPPING only implemented for Z axis on CoreXY.
#endif
#if ENABLED(SCARA)
#error BABYSTEPPING is not implemented for SCARA yet.
Expand Down

0 comments on commit f3ab1db

Please sign in to comment.