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
     #if ENABLED(MPC_INCLUDE_FAN)
74
     #if ENABLED(MPC_INCLUDE_FAN)
75
       SERIAL_ECHOPAIR_F(" F", constants.ambient_xfer_coeff_fan0 + constants.fan255_adjustment, 4);
75
       SERIAL_ECHOPAIR_F(" F", constants.ambient_xfer_coeff_fan0 + constants.fan255_adjustment, 4);
76
     #endif
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
     SERIAL_EOL();
78
     SERIAL_EOL();
79
   }
79
   }
80
 }
80
 }

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

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

Loading…
Cancel
Save