Browse Source

🐛 Fix M852 report (#23660)

Maeyanie 3 years ago
parent
commit
b637617deb
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/calibrate/M852.cpp

+ 1
- 1
Marlin/src/gcode/calibrate/M852.cpp View File

@@ -93,7 +93,7 @@ void GcodeSuite::M852() {
93 93
 
94 94
 void GcodeSuite::M852_report(const bool forReplay/*=true*/) {
95 95
   report_heading_etc(forReplay, F(STR_SKEW_FACTOR));
96
-  SERIAL_ECHOPAIR_F("  M851 I", planner.skew_factor.xy, 6);
96
+  SERIAL_ECHOPAIR_F("  M852 I", planner.skew_factor.xy, 6);
97 97
   #if ENABLED(SKEW_CORRECTION_FOR_Z)
98 98
     SERIAL_ECHOPAIR_F(" J", planner.skew_factor.xz, 6);
99 99
     SERIAL_ECHOPAIR_F(" K", planner.skew_factor.yz, 6);

Loading…
Cancel
Save