📅 Bring some up to date

This commit is contained in:
Scott Lahteine 2023-02-21 16:57:23 -06:00
parent b8ef003015
commit d57207b4ff
14 changed files with 105 additions and 83 deletions

View file

@ -2087,10 +2087,10 @@
//#define BABYSTEP_XY // Also enable X/Y Babystepping. Not supported on DELTA!
#define BABYSTEP_INVERT_Z false // Change if Z babysteps should go the other way
//#define BABYSTEP_MILLIMETER_UNITS // Specify BABYSTEP_MULTIPLICATOR_(XY|Z) in mm instead of micro-steps
#ifdef BLTOUCH
#define BABYSTEP_MULTIPLICATOR_Z 0.5 // (steps or mm) Steps or millimeter distance for each Z babystep
#if ENABLED(BLTOUCH)
#define BABYSTEP_MULTIPLICATOR_Z 0.5 // (steps or mm) Steps or millimeter distance for each Z babystep
#else
#define BABYSTEP_MULTIPLICATOR_Z 1 // (steps or mm) Steps or millimeter distance for each Z babystep
#define BABYSTEP_MULTIPLICATOR_Z 1 // (steps or mm) Steps or millimeter distance for each Z babystep
#endif
#define BABYSTEP_MULTIPLICATOR_XY 1 // (steps or mm) Steps or millimeter distance for each XY babystep
@ -2106,9 +2106,9 @@
//#define BABYSTEP_DISPLAY_TOTAL // Display total babysteps since last G28
#ifdef BLTOUCH
#define BABYSTEP_ZPROBE_OFFSET
#endif // Combine M851 Z and Babystepping
#if ENABLED(BLTOUCH)
#define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
#endif
//#define BABYSTEP_GLOBAL_Z // Combine M424 Z and Babystepping
#if EITHER(BABYSTEP_ZPROBE_OFFSET, BABYSTEP_GLOBAL_Z)