EDITABLE_STEPS_PER_UNIT (#26618)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
plampix 2024-01-10 07:33:54 +01:00 committed by GitHub
parent 1d46e67de2
commit 854f3315af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 723 additions and 619 deletions

View file

@ -669,7 +669,10 @@ void GcodeSuite::process_parsed_command(const bool no_ok/*=false*/) {
case 87: M87(); break; // M87: Cancel Hotend Idle Timeout
#endif
case 92: M92(); break; // M92: Set the steps-per-unit for one or more axes
#if ENABLED(EDITABLE_STEPS_PER_UNIT)
case 92: M92(); break; // M92: Set the steps-per-unit for one or more axes
#endif
case 114: M114(); break; // M114: Report current position
#if ENABLED(CAPABILITIES_REPORT)