Merge pull request #3127 from thinkyhead/rc_core_babystepping

Implement BABYSTEPPING for COREXY and COREXZ
This commit is contained in:
Scott Lahteine
2016-03-18 23:25:26 -07:00
20 changed files with 60 additions and 29 deletions

View File

@@ -268,6 +268,17 @@
#define Y_MAX_LENGTH (Y_MAX_POS - (Y_MIN_POS))
#define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
/**
* CoreXY and CoreXZ
*/
#if ENABLED(COREXY)
#define CORE_AXIS_2 B_AXIS
#define CORE_AXIS_3 Z_AXIS
#elif ENABLED(COREXZ)
#define CORE_AXIS_2 C_AXIS
#define CORE_AXIS_3 Y_AXIS
#endif
/**
* SCARA
*/