Implement BABYSTEPPING for COREXY and COREXZ

This commit is contained in:
Scott Lahteine
2016-03-10 21:35:44 -08:00
parent 7d25c107a8
commit e5fd43f343
20 changed files with 58 additions and 30 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
*/