1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-24 04:29:34 +00:00

💡 Add G28 L description (#22144)

This commit is contained in:
Katelyn Schiesser 2021-06-16 23:15:16 -07:00 committed by GitHub
parent dd9f91f0f0
commit d0df8bc3cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -195,9 +195,9 @@
* None Home to all axes with no parameters. * None Home to all axes with no parameters.
* With QUICK_HOME enabled XY will home together, then Z. * With QUICK_HOME enabled XY will home together, then Z.
* *
* O Home only if position is unknown * L<bool> Force leveling state ON (if possible) or OFF after homing (Requires RESTORE_LEVELING_AFTER_G28 or ENABLE_LEVELING_AFTER_G28)
* * O Home only if the position is not known and trusted
* Rn Raise by n mm/inches before homing * R<linear> Raise by n mm/inches before homing
* *
* Cartesian/SCARA parameters * Cartesian/SCARA parameters
* *
@ -229,7 +229,7 @@ void GcodeSuite::G28() {
#endif #endif
// Home (O)nly if position is unknown // Home (O)nly if position is unknown
if (!axes_should_home() && parser.boolval('O')) { if (!axes_should_home() && parser.seen_test('O')) {
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("> homing not needed, skip"); if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("> homing not needed, skip");
return; return;
} }