Skip to content

Commit

Permalink
Fehlerroutine Auskommentiert
Browse files Browse the repository at this point in the history
Das ist nötig um einen Fehler beim Kompilieren zu unterbinden, der entsteht, wenn eine Probe aktiviert, Z_SAFE_HOMING aber deaktiviert ist.
Es ist gewollt, dass Babystepps speicherbar sind -> dafür muss der Z-Offset aktiviert werden -> dafür wiederum eine Probe.

Z_SAFE_HOMING bewirkt aber, dass man Z nur noch nach X und Y homen kann und dies irgendwo an einer bestimmten Position im Bett passiert.
Das ist sehr sinnvoll, wenn man einen Probe-Sensor montiert hat.
Wir wollen allerdings nur den Z-Offset missbrauchen, darum muss diese Sicherheitsfunktion weichen, weil sie bei uns nicht das gewünschte Ergebnis bringt.
  • Loading branch information
Bodengriller authored Mar 5, 2020
1 parent 1c7707e commit 02e128d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/inc/SanityCheck.h
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,7 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
#endif

#if HOMING_Z_WITH_PROBE && IS_CARTESIAN && DISABLED(Z_SAFE_HOMING)
#error "Z_SAFE_HOMING is recommended when homing with a probe. Enable it or comment out this line to continue."
//#error "Z_SAFE_HOMING is recommended when homing with a probe. Enable it or comment out this line to continue."
#endif

#else
Expand Down

0 comments on commit 02e128d

Please sign in to comment.