disable sled pin by default
This commit is contained in:
parent
fb44b53ae3
commit
27a3b1d895
2 changed files with 3 additions and 3 deletions
|
@ -2023,12 +2023,12 @@ inline void gcode_G28() {
|
||||||
|
|
||||||
if (home_all_axis || homeZ) {
|
if (home_all_axis || homeZ) {
|
||||||
|
|
||||||
#ifdef Z_SAFE_HOMING
|
#ifdef Z_SAFE_HOMING
|
||||||
|
|
||||||
if (home_all_axis) {
|
if (home_all_axis) {
|
||||||
|
|
||||||
current_position[Z_AXIS] = 0;
|
current_position[Z_AXIS] = 0;
|
||||||
sync_plan_position();
|
sync_plan_position();
|
||||||
|
|
||||||
//
|
//
|
||||||
// Set the probe (or just the nozzle) destination to the safe homing point
|
// Set the probe (or just the nozzle) destination to the safe homing point
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef Z_PROBE_SLED
|
#ifdef Z_PROBE_SLED
|
||||||
#define SLED_PIN 27
|
#define SLED_PIN -1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NUM_SERVOS
|
#ifdef NUM_SERVOS
|
||||||
|
|
Reference in a new issue