0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-31 22:20:56 +00:00

🐛 Fix X2_HOME_TO_*

This commit is contained in:
Scott Lahteine 2022-01-05 11:44:22 -06:00
parent 4ceba981b1
commit 9140016e02
2 changed files with 6 additions and 5 deletions

View file

@ -935,11 +935,6 @@
#elif X_HOME_DIR < 0
#define X_HOME_TO_MIN 1
#endif
#if X2_HOME_DIR > 0
#define X2_HOME_TO_MAX 1
#elif X2_HOME_DIR < 0
#define X2_HOME_TO_MIN 1
#endif
#if Y_HOME_DIR > 0
#define Y_HOME_TO_MAX 1
#elif Y_HOME_DIR < 0

View file

@ -823,6 +823,12 @@
#define POLL_JOG
#endif
#if X2_HOME_DIR > 0
#define X2_HOME_TO_MAX 1
#elif X2_HOME_DIR < 0
#define X2_HOME_TO_MIN 1
#endif
#ifndef HOMING_BUMP_MM
#define HOMING_BUMP_MM { 0, 0, 0 }
#endif