Browse Source

💥 More M306 M => M306 H (#24258)

Followup to #24253
tombrazier 3 years ago
parent
commit
ea7bebb568
No account linked to committer's email address
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/src/gcode/temp/M306.cpp
  2. 1
    1
      Marlin/src/module/temperature.h

+ 1
- 1
Marlin/src/gcode/temp/M306.cpp View File

@@ -74,7 +74,7 @@ void GcodeSuite::M306_report(const bool forReplay/*=true*/) {
74 74
     #if ENABLED(MPC_INCLUDE_FAN)
75 75
       SERIAL_ECHOPAIR_F(" F", constants.ambient_xfer_coeff_fan0 + constants.fan255_adjustment, 4);
76 76
     #endif
77
-    SERIAL_ECHOPAIR_F(" M", constants.filament_heat_capacity_permm, 4);
77
+    SERIAL_ECHOPAIR_F(" H", constants.filament_heat_capacity_permm, 4);
78 78
     SERIAL_EOL();
79 79
   }
80 80
 }

+ 1
- 1
Marlin/src/module/temperature.h View File

@@ -103,7 +103,7 @@ hotend_pid_t;
103 103
     #if ENABLED(MPC_INCLUDE_FAN)
104 104
       float fan255_adjustment;          // M306 F
105 105
     #endif
106
-    float filament_heat_capacity_permm; // M306 M
106
+    float filament_heat_capacity_permm; // M306 H
107 107
   } MPC_t;
108 108
 #endif
109 109
 

Loading…
Cancel
Save