Skip to content

Commit 12efaa4

Browse files
tombrazierLCh-77
authored andcommitted
💥 More M306 M => M306 H (MarlinFirmware#24258)
Followup to MarlinFirmware#24253
1 parent fc52bb0 commit 12efaa4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Marlin/src/gcode/temp/M306.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void GcodeSuite::M306_report(const bool forReplay/*=true*/) {
7474
#if ENABLED(MPC_INCLUDE_FAN)
7575
SERIAL_ECHOPAIR_F(" F", constants.ambient_xfer_coeff_fan0 + constants.fan255_adjustment, 4);
7676
#endif
77-
SERIAL_ECHOPAIR_F(" M", constants.filament_heat_capacity_permm, 4);
77+
SERIAL_ECHOPAIR_F(" H", constants.filament_heat_capacity_permm, 4);
7878
SERIAL_EOL();
7979
}
8080
}

Marlin/src/module/temperature.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ hotend_pid_t;
103103
#if ENABLED(MPC_INCLUDE_FAN)
104104
float fan255_adjustment; // M306 F
105105
#endif
106-
float filament_heat_capacity_permm; // M306 M
106+
float filament_heat_capacity_permm; // M306 H
107107
} MPC_t;
108108
#endif
109109

0 commit comments

Comments
 (0)