Browse Source

🐛 Fix M423 invocation (#24360)

Followup to #23745
ellensp 3 years ago
parent
commit
8c3ba69c98
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Marlin/src/gcode/gcode.cpp

+ 4
- 0
Marlin/src/gcode/gcode.cpp View File

848
         case 421: M421(); break;                                  // M421: Set a Mesh Bed Leveling Z coordinate
848
         case 421: M421(); break;                                  // M421: Set a Mesh Bed Leveling Z coordinate
849
       #endif
849
       #endif
850
 
850
 
851
+      #if ENABLED(X_AXIS_TWIST_COMPENSATION)
852
+        case 423: M423(); break;                                  // M423: Reset, modify, or report X-Twist Compensation data
853
+      #endif
854
+
851
       #if ENABLED(BACKLASH_GCODE)
855
       #if ENABLED(BACKLASH_GCODE)
852
         case 425: M425(); break;                                  // M425: Tune backlash compensation
856
         case 425: M425(); break;                                  // M425: Tune backlash compensation
853
       #endif
857
       #endif

Loading…
Cancel
Save